@keyframes blink {
	0%,to {
		opacity: 0;
	}

	50% {
		opacity: .5;
	}
}

@keyframes jelly {
	0%,to {
		transform: scale(1,1);
	}

	30% {
		transform: scale(1.25,.75);
	}

	40% {
		transform: scale(.75,1.25);
	}

	50% {
		transform: scale(1.15,.85);
	}

	65% {
		transform: scale(.95,1.05);
	}

	75% {
		transform: scale(1.05,.95);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0;
	}

	30% {
		transform: scale(1.2);
		opacity: .5;
	}

	to {
		transform: scale(1.5);
		opacity: 0;
	}
}

@keyframes move-forever {
	0% {
		transform: translate3d(-90px,0,0);
	}

	to {
		transform: translate3d(85px,0,0);
	}
}

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

@keyframes spinner-dash {
	0% {
		stroke-dasharray: 1,150;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90,150;
		stroke-dashoffset: -35;
	}

	to {
		stroke-dasharray: 90,150;
		stroke-dashoffset: -124;
	}
}

@keyframes highlight {
	0% {
		transform: scale3d(0,0,0);
	}

	20% {
		transform: scale3d(1.05,1.05,1.05);
	}

	40% {
		transform: scale3d(.97,.97,.97);
	}

	60%,to {
		transform: scaleX(1);
	}

	80% {
		transform: scale3d(.99,.99,.99);
	}
}

@keyframes sk-bouncedelay {
	0%,80%,to {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

@keyframes ink {
	to {
		opacity: 0;
		transform: scale(4);
	}
}

@keyframes animateHeartOut {
	0% {
		transform: scale(1.4);
	}

	to {
		transform: scale(1);
	}
}

@keyframes animateHeart {
	0% {
		transform: scale(.2);
	}

	40% {
		transform: scale(1.2);
	}

	to {
		transform: scale(1);
	}
}

@keyframes animateCircle {
	40% {
		transform: scale(10);
		opacity: 1;
		fill: #fa0;
	}

	55% {
		transform: scale(11);
		opacity: 1;
		fill: #fa0;
	}

	65% {
		transform: scale(12);
		opacity: 1;
		fill: #fa0;
	}

	75% {
		transform: scale(13);
		opacity: 1;
		fill: transparent;
		stroke: #fa0;
		stroke-width: .5;
	}

	85% {
		transform: scale(17);
		opacity: 1;
		fill: transparent;
		stroke: #fa0;
		stroke-width: .2;
	}

	95% {
		transform: scale(18);
		opacity: 1;
		fill: transparent;
		stroke: #fa0;
		stroke-width: .1;
	}

	to {
		transform: scale(19);
		opacity: 1;
		fill: transparent;
		stroke: #fa0;
		stroke-width: 0;
	}
}

@keyframes ripple {
	0% {
		opacity: 0;
	}

	25% {
		opacity: 1;
	}

	to {
		width: 200%;
		padding-bottom: 200%;
		opacity: 0;
	}
}

@keyframes shine {
	to {
		left: 200%;
	}
}

@keyframes scale-in {
	50% {
		transform: scale(1.2);
	}

	to {
		transform: scale(1);
	}
}

@keyframes slide-in-right {
	0% {
		transform: translateX(50px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

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

	50% {
		opacity: 0;
	}
}

@keyframes feedback-pulse {
	50% {
		opacity: 1;
		transform: scale(1) rotate(0);
	}

	to {
		transform: scale(2,2);
		opacity: 0;
	}
}

@keyframes feedback-grow {
	0% {
		opacity: 0;
		transform: scale(0) rotate(-120deg);
	}

	70% {
		opacity: 1;
		transform: scale(1) rotate(0);
	}

	to {
		opacity: 1;
		transform: scale(.85) rotate(0);
	}
}

@keyframes feedback-bottom-open {
	0% {
		opacity: 0;
		transform: translate(0,20px);
	}

	to {
		opacity: 1;
		transform: translate(0,0);
	}
}

@keyframes horizontal-marquee {
	0% {
		transform: translate(calc(var(--_gap)*-1));
	}

	to {
		transform: translate(calc(-100% - var(--_gap)*2));
	}
}

@keyframes vertical-marquee {
	0% {
		transform: translateY(calc(var(--_vGap)*-1));
	}

	to {
		transform: translateY(calc(-100% - var(--_vGap)*2));
	}
}

.air-datepicker {
	--adp-font-size: 14px;
	--adp-width: 246px;
	--adp-z-index: 100;
	--adp-padding: 4px;
	--adp-grid-areas: 'nav' 'body' 'timepicker' 'buttons';
	--adp-transition-duration: 0.3s;
	--adp-transition-ease: ease-out;
	--adp-transition-offset: 8px;
	--adp-nav-height: 32px;
	--adp-nav-action-size: 32px;
	--adp-day-cell-width: 1fr;
	--adp-day-cell-height: 32px;
	--adp-month-cell-height: 42px;
	--adp-year-cell-height: 56px;
	--adp-pointer-size: 10px;
	--adp-poiner-border-radius: 2px;
	--adp-pointer-offset: 14px;
	--adp-cell-border-radius: 4px;
	--adp-btn-height: 32px;
	--adp-time-track-height: 1px;
	--adp-time-thumb-size: 12px;
	--adp-time-padding-inner: 10px;
	--adp-mobile-font-size: 16px;
	--adp-mobile-nav-height: 40px;
	--adp-mobile-width: 320px;
	--adp-mobile-day-cell-height: 38px;
	--adp-mobile-month-cell-height: 48px;
	--adp-mobile-year-cell-height: 64px;
}

.air-datepicker-overlay {
	--adp-overlay-background-color: hsl(0, 0%, 66%);
	--adp-overlay-transition-duration: 0.3s;
	--adp-overlay-transition-ease: ease-out;
	--adp-overlay-z-index: 99;
}

.air-datepicker-time {
	display: grid;
	grid-template-columns: max-content 1fr;
	grid-column-gap: 12px;
	align-items: center;
	position: relative;
	padding: 0 var(--adp-time-padding-inner);
}

.-only-timepicker- .air-datepicker-time {
	border-top: none;
}

.air-datepicker-time--current {
	display: flex;
	align-items: center;
	flex: 1;
	font-size: 14px;
	text-align: center;
}

.air-datepicker-time--current-colon {
	margin: 0 2px 3px;
	line-height: 1;
}

.air-datepicker-time--current-hours,.air-datepicker-time--current-minutes {
	line-height: 1;
	font-size: 19px;
	font-family: 'Century Gothic',CenturyGothic,AppleGothic,sans-serif;
	position: relative;
	z-index: 1;
}

.air-datepicker-time--current-hours:after,.air-datepicker-time--current-minutes:after {
	content: '';
	background: hsl(var(--ah),var(--as),var(--al));
	border-radius: var(--border-radius-small);
	position: absolute;
	left: -2px;
	top: -3px;
	right: -2px;
	bottom: -2px;
	z-index: -1;
	opacity: 0;
}

.air-datepicker-time--current-hours.-focus-:after,.air-datepicker-time--current-minutes.-focus-:after,.banner__image-wrapper.is-link:hover .banner__image-container::after {
	opacity: 1;
}

.air-datepicker-time--current-ampm {
	text-transform: uppercase;
	align-self: flex-end;
	color: #a8a8a8;
	margin-left: 6px;
	font-size: 11px;
	margin-bottom: 1px;
}

.air-datepicker-time--row {
	display: flex;
	align-items: center;
	font-size: 11px;
	height: 17px;
	background: linear-gradient(to right,hsl(var(--ah),var(--as),var(--al)),hsl(var(--ah),var(--as),var(--al))) left .5% var(--adp-time-track-height) no-repeat;
}

.air-datepicker-time--row:first-child {
	margin-bottom: 4px;
}

.air-datepicker-time--row input[type=range] {
	background: 0 0;
	cursor: pointer;
	flex: 1;
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	-webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]:focus {
	outline: 0;
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
	border: 0;
	height: var(--adp-time-track-height);
	cursor: pointer;
	color: transparent;
	background: #a8a8a8;
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
	border: 0;
	height: var(--adp-time-track-height);
	cursor: pointer;
	color: transparent;
	background: #a8a8a8;
}

.air-datepicker-time--row input[type=range]::-ms-track {
	border: 0;
	height: var(--adp-time-track-height);
	cursor: pointer;
	color: transparent;
	background: #a8a8a8;
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower,.air-datepicker-time--row input[type=range]::-ms-fill-upper {
	background: 0 0;
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
	display: none;
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
	background: hsl(var(--ph),var(--ps),var(--pl));
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
	background: hsl(var(--ph),var(--ps),var(--pl));
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
	background: hsl(var(--ph),var(--ps),var(--pl));
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
	box-sizing: border-box;
	height: 12px;
	width: 12px;
	border-radius: 3px;
	border: 1px solid #a8a8a8;
	background: hsl(var(--bh),var(--bs),var(--bl));
	cursor: pointer;
	transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
	box-sizing: border-box;
	height: 12px;
	width: 12px;
	border-radius: 3px;
	border: 1px solid #a8a8a8;
	background: hsl(var(--bh),var(--bs),var(--bl));
	cursor: pointer;
	transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
	box-sizing: border-box;
	height: 12px;
	width: 12px;
	border-radius: 3px;
	border: 1px solid #a8a8a8;
	background: hsl(var(--bh),var(--bs),var(--bl));
	cursor: pointer;
	transition: background var(--adp-transition-duration);
	margin-top: calc(var(--adp-time-thumb-size)/2*-1);
}

.air-datepicker-nav {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	min-height: var(--adp-nav-height);
	padding: var(--adp-padding);
	box-sizing: content-box;
}

.-only-timepicker- .air-datepicker-nav {
	display: none;
}

.air-datepicker-nav--action,.air-datepicker-nav--title {
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.air-datepicker-nav--action {
	width: var(--adp-nav-action-size);
	border-radius: var(--border-radius-small);
	user-select: none;
}

.air-datepicker-nav--action:hover {
	background: hsl(var(--ah),var(--as),var(--al));
}

.air-datepicker-nav--action:active {
	background: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.air-datepicker-nav--action.-disabled- {
	visibility: hidden;
}

.air-datepicker-nav--action svg {
	width: 32px;
	height: 32px;
}

.air-datepicker-nav--action path {
	fill: none;
	stroke: #a8a8a8;
	stroke-width: 2px;
}

.air-datepicker-nav--title {
	border-radius: var(--border-radius-small);
	padding: 0 8px;
}

.air-datepicker-nav--title i {
	font-style: normal;
	color: #a8a8a8;
	margin-left: .3em;
}

.air-datepicker-nav--title:hover {
	background: hsl(var(--ah),var(--as),var(--al));
}

.air-datepicker-nav--title:active {
	background: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.air-datepicker-nav--title.-disabled- {
	cursor: default;
	background: 0 0;
}

.air-datepicker-cell {
	border-radius: var(--adp-cell-border-radius);
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.air-datepicker-cell.-focus- {
	background: hsl(var(--ah),var(--as),var(--al));
}

.air-datepicker-cell.-current-.-focus- {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.air-datepicker-cell.-current-,.air-datepicker-cell.-current-.-in-range- {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-cell.-disabled- {
	cursor: default;
}

.air-datepicker-cell.-disabled-,.air-datepicker-cell.-disabled-.-current-.-focus-,.air-datepicker-cell.-disabled-.-focus- {
	color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.air-datepicker-cell.-disabled-.-in-range- {
	color: #a8a8a8;
}

.air-datepicker-cell.-in-range- {
	background: hsla(var(--ph),var(--ps),var(--pl),.1);
	border-radius: 0;
}

.air-datepicker-cell.-in-range-.-focus-,.air-datepicker-cell.-in-range-:hover {
	background: hsla(var(--ph),var(--ps),var(--pl),.15);
}

.air-datepicker-cell.-range-from-,.air-datepicker-cell.-range-to- {
	border: 1px solid hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
	border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}

.air-datepicker-cell.-range-to- {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.15);
	border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}

.air-datepicker-cell.-range-to-.-range-from- {
	border-radius: var(--adp-cell-border-radius);
}

.air-datepicker-cell.-selected- {
	border: 0;
}

.air-datepicker-cell.-selected-,.air-datepicker-cell.-selected-.-current- {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.air-datepicker-cell.-selected-,.air-datepicker-cell.-selected-.-current-,.air-datepicker-cell.-selected-.-focus- {
	background: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-buttons {
	display: grid;
	grid-auto-columns: 1fr;
	grid-auto-flow: column;
}

.air-datepicker-button {
	display: inline-flex;
	color: hsl(var(--ph),var(--ps),var(--pl));
	border-radius: var(--border-radius-small);
	cursor: pointer;
	height: var(--adp-btn-height);
	border: 0;
	background: 0 0;
}

.air-datepicker-button:hover {
	color: hsl(var(--th),var(--ts),var(--tl));
	background: hsl(var(--ah),var(--as),var(--al));
}

.air-datepicker-button:focus {
	color: hsl(var(--th),var(--ts),var(--tl));
	background: hsl(var(--ah),var(--as),var(--al));
	outline: 0;
}

.air-datepicker-button:active {
	background: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.air-datepicker-button span {
	outline: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.air-datepicker-body {
	transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}

.air-datepicker-body.-hidden- {
	display: none;
}

.air-datepicker-body--day-names {
	display: grid;
	grid-template-columns: repeat(7,var(--adp-day-cell-width));
	margin: 8px 0 3px;
}

.air-datepicker-body--day-name {
	color: #fa0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	text-align: center;
	text-transform: uppercase;
	font-size: .8em;
}

.air-datepicker-body--day-name.-clickable- {
	cursor: pointer;
}

.air-datepicker-body--day-name.-clickable-:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-body--cells {
	display: grid;
}

.air-datepicker-body--cells.-days- {
	grid-template-columns: repeat(7,var(--adp-day-cell-width));
	grid-auto-rows: var(--adp-day-cell-height);
}

.air-datepicker-body--cells.-months- {
	grid-template-columns: repeat(3,1fr);
	grid-auto-rows: var(--adp-month-cell-height);
}

.air-datepicker-body--cells.-years- {
	grid-template-columns: repeat(4,1fr);
	grid-auto-rows: var(--adp-year-cell-height);
}

.air-datepicker {
	background: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid #a8a8a8;
	border-radius: var(--border-radius-small);
	box-sizing: content-box;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(4,max-content);
	grid-template-areas: var(--adp-grid-areas);
	font-size: var(--adp-font-size);
	color: hsl(var(--th),var(--ts),var(--tl));
	width: var(--adp-width);
	position: absolute;
	transition: opacity var(--adp-transition-duration) var(--adp-transition-ease),transform var(--adp-transition-duration) var(--adp-transition-ease);
	z-index: var(--adp-z-index);
}

.air-datepicker:not(.-custom-position-) {
	opacity: 0;
}

.air-datepicker.-from-top- {
	transform: translateY(calc(var(--adp-transition-offset)*-1));
}

.air-datepicker.-from-right- {
	transform: translateX(var(--adp-transition-offset));
}

.air-datepicker.-from-bottom- {
	transform: translateY(var(--adp-transition-offset));
}

.air-datepicker.-from-left- {
	transform: translateX(calc(var(--adp-transition-offset)*-1));
}

.air-datepicker.-active-:not(.-custom-position-) {
	transform: translate(0,0);
	opacity: 1;
}

.air-datepicker.-active-.-custom-position- {
	transition: none;
}

.air-datepicker.-inline- {
	border-color: hsl(var(--ah),var(--as),var(--al));
	box-shadow: none;
	position: static;
	left: auto;
	right: auto;
	opacity: 1;
	transform: none;
}

.air-datepicker.-inline- .air-datepicker--pointer,.air-datepicker.-is-mobile- .air-datepicker--pointer {
	display: none;
}

.air-datepicker.-is-mobile- {
	--adp-font-size: var(--adp-mobile-font-size);
	--adp-day-cell-height: var(--adp-mobile-day-cell-height);
	--adp-month-cell-height: var(--adp-mobile-month-cell-height);
	--adp-year-cell-height: var(--adp-mobile-year-cell-height);
	--adp-nav-height: var(--adp-mobile-nav-height);
	--adp-nav-action-size: var(--adp-mobile-nav-height);
	position: fixed;
	width: var(--adp-mobile-width);
	border: 0;
}

.air-datepicker.-is-mobile- * {
	-webkit-tap-highlight-color: transparent;
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
	transform: translate(-50%,calc(-50% + var(--adp-transition-offset)));
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
	transform: translate(-50%,-50%);
}

.air-datepicker.-custom-position- {
	transition: none;
}

.air-datepicker-global-container {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 250;
}

.air-datepicker--pointer,.air-datepicker--pointer:after {
	position: absolute;
	width: var(--adp-pointer-size);
	height: var(--adp-pointer-size);
}

.air-datepicker--pointer {
	--pointer-half-size: calc(var(--adp-pointer-size) / 2);
	z-index: -1;
}

.air-datepicker--pointer:after {
	content: '';
	background: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #a8a8a8;
	border-right: 1px solid #a8a8a8;
	border-top-right-radius: var(--adp-poiner-border-radius);
	box-sizing: border-box;
}

.-top-center- .air-datepicker--pointer,.-top-left- .air-datepicker--pointer,.-top-right- .air-datepicker--pointer,[data-popper-placement^=top] .air-datepicker--pointer {
	top: calc(100% - var(--pointer-half-size) + 1px);
}

.-top-center- .air-datepicker--pointer:after,.-top-left- .air-datepicker--pointer:after,.-top-right- .air-datepicker--pointer:after,[data-popper-placement^=top] .air-datepicker--pointer:after {
	transform: rotate(135deg);
}

.-right-bottom- .air-datepicker--pointer,.-right-center- .air-datepicker--pointer,.-right-top- .air-datepicker--pointer,[data-popper-placement^=right] .air-datepicker--pointer {
	right: calc(100% - var(--pointer-half-size) + 1px);
}

.-right-bottom- .air-datepicker--pointer:after,.-right-center- .air-datepicker--pointer:after,.-right-top- .air-datepicker--pointer:after,[data-popper-placement^=right] .air-datepicker--pointer:after {
	transform: rotate(225deg);
}

.-bottom-center- .air-datepicker--pointer,.-bottom-left- .air-datepicker--pointer,.-bottom-right- .air-datepicker--pointer,[data-popper-placement^=bottom] .air-datepicker--pointer {
	bottom: calc(100% - var(--pointer-half-size) + 1px);
}

.-bottom-center- .air-datepicker--pointer:after,.-bottom-left- .air-datepicker--pointer:after,.-bottom-right- .air-datepicker--pointer:after,[data-popper-placement^=bottom] .air-datepicker--pointer:after {
	transform: rotate(315deg);
}

.-left-bottom- .air-datepicker--pointer,.-left-center- .air-datepicker--pointer,.-left-top- .air-datepicker--pointer,[data-popper-placement^=left] .air-datepicker--pointer {
	left: calc(100% - var(--pointer-half-size) + 1px);
}

.-left-bottom- .air-datepicker--pointer:after,.-left-center- .air-datepicker--pointer:after,.-left-top- .air-datepicker--pointer:after,[data-popper-placement^=left] .air-datepicker--pointer:after {
	transform: rotate(45deg);
}

.-bottom-left- .air-datepicker--pointer,.-top-left- .air-datepicker--pointer {
	left: var(--adp-pointer-offset);
}

.-bottom-right- .air-datepicker--pointer,.-top-right- .air-datepicker--pointer {
	right: var(--adp-pointer-offset);
}

.-bottom-center- .air-datepicker--pointer,.-top-center- .air-datepicker--pointer {
	left: calc(50% - var(--adp-pointer-size)/2);
}

.-left-top- .air-datepicker--pointer,.-right-top- .air-datepicker--pointer {
	top: var(--adp-pointer-offset);
}

.-left-bottom- .air-datepicker--pointer,.-right-bottom- .air-datepicker--pointer {
	bottom: var(--adp-pointer-offset);
}

.-left-center- .air-datepicker--pointer,.-right-center- .air-datepicker--pointer {
	top: calc(50% - var(--adp-pointer-size)/2);
}

.air-datepicker--navigation {
	grid-area: nav;
}

.air-datepicker--content {
	box-sizing: content-box;
	padding: var(--adp-padding);
	grid-area: body;
}

.-only-timepicker- .air-datepicker--content {
	display: none;
}

.air-datepicker--time {
	grid-area: timepicker;
}

.air-datepicker--buttons {
	grid-area: buttons;
}

.air-datepicker--buttons,.air-datepicker--time {
	padding: var(--adp-padding);
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.air-datepicker-overlay {
	position: fixed;
	background: var(--adp-overlay-background-color);
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	opacity: 0;
	transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),left 0s,height 0s,width 0s;
	transition-delay: 0s,var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration);
	z-index: var(--adp-overlay-z-index);
}

.air-datepicker-overlay.-active- {
	opacity: 1;
	width: 100%;
	height: 100%;
	transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),height 0s,width 0s;
}

.air-datepicker-cell.-day-.-other-month-,.air-datepicker-cell.-day-.-other-month-.-disabled-.-focus-,.air-datepicker-cell.-year-.-other-decade- {
	color: hsl(var(--ah),var(--as),calc(var(--al) - 16%));
}

.air-datepicker-cell.-day-.-other-month-:hover {
	color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.air-datepicker-cell.-day-.-other-month-.-selected- {
	color: hsl(var(--bh),var(--bs),var(--bl));
	background: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-cell.-day-.-other-month-.-selected-.-focus- {
	background: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-cell.-day-.-other-month-.-in-range- {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
	color: hsl(var(--th),var(--ts),var(--tl));
}

.air-datepicker-cell.-day-.-other-month-.-in-range-.-focus- {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.15);
}

.air-datepicker-cell.-day-.-other-month-:empty {
	background: 0 0;
	border: 0;
}

.air-datepicker-cell.-year-.-other-decade-:hover {
	color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.air-datepicker-cell.-year-.-other-decade-.-disabled-.-focus- {
	color: hsl(var(--ah),var(--as),calc(var(--al) - 16%));
}

.air-datepicker-cell.-year-.-other-decade-.-selected- {
	color: hsl(var(--bh),var(--bs),var(--bl));
	background: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-cell.-year-.-other-decade-.-selected-.-focus- {
	background: hsl(var(--ph),var(--ps),var(--pl));
}

.air-datepicker-cell.-year-.-other-decade-.-in-range- {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
	color: hsl(var(--th),var(--ts),var(--tl));
}

.air-datepicker-cell.-year-.-other-decade-.-in-range-.-focus- {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.15);
}

.air-datepicker-cell.-year-.-other-decade-:empty {
	background: 0 0;
	border: 0;
}

[data-animate=typing-chars]::after {
	content: '';
	display: inline-block;
	width: .4em;
	height: .1em;
	margin-left: .1em;
	border-radius: 2px;
	background-color: currentColor;
	animation: blink 1.2s ease-in-out infinite;
}

[style*='--aspect-ratio'],body.locked {
	overflow: hidden;
}

[style*='--aspect-ratio']>img {
	height: auto;
}

@supports (--custom:property) {
	[style*='--aspect-ratio'] {
		position: relative;
	}

	[style*='--aspect-ratio']::before {
		content: '';
		display: block;
		padding-bottom: calc(100%/(var(--aspect-ratio)));
	}

	[style*='--aspect-ratio']>img {
		position: absolute;
		top: 0;
		left: 0;
	}
}

.font--sfpro {
	font-family: 'sfpro',sans-serif;
}

.font--open-sans {
	font-family: 'open-sans',sans-serif;
}

.font--gilroy {
	font-family: 'gilroy',sans-serif;
}

.font--raleway {
	font-family: 'raleway',sans-serif;
}

.font--mulish {
	font-family: 'mulish',sans-serif;
}

.glightbox-open {
	overflow: visible;
}

.glightbox-open .glightbox-mobile .goverlay,.glightbox-open .goverlay {
	background-color: var(--dim-muted);
}

.glightbox-open .gbtn {
	position: absolute;
	width: 36px;
	height: 36px;
}

.glightbox-open .gbtn svg {
	width: 1.45em;
}

.glightbox-open .gbtn.gnext,.glightbox-open .gbtn.gprev {
	display: flex!important;
	top: calc(50% - 18px);
	background-color: transparent;
}

.glightbox-open .gbtn.gnext {
	right: 1em;
}

.glightbox-open .gbtn.gprev {
	left: 1em;
	transform: rotate(180deg);
}

.glightbox-open .gbtn.gclose {
	top: 1rem;
	right: 1rem;
	appearance: none;
	border: unset;
	cursor: pointer;
	background-color: transparent;
}

.glightbox-open .gbtn.gclose::after,.glightbox-open .gbtn.gclose::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 17px;
	height: 20px;
	width: 3px;
	border-radius: 2px;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.glightbox-open .gbtn.gclose::before {
	transform: rotate(45deg);
}

.glightbox-open .gbtn.gclose::after {
	transform: rotate(-45deg);
}

.glightbox-open .gclose svg,.glightbox-open .gnext svg,.glightbox-open .gprev svg {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.glightbox-open .gslide-description {
	padding-top: 1rem;
	box-sizing: border-box;
	background: unset!important;
	color: hsl(var(--bh),var(--bs),var(--bl));
	font-size: .95em;
	line-height: 1.45em;
}

.glightbox-open .gslide-image {
	border-radius: var(--border-radius-small);
	overflow: hidden;
}

@media (min-width:1200px) {
	.glightbox-open .gslide-media {
		padding: var(--gap-small);
		border-radius: var(--border-radius-small);
		background-color: hsl(var(--bh),var(--bs),var(--bl));
	}

	.glightbox-open .gslide-image img {
		max-height: 87vh;
	}
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

article,aside,details,figcaption,figure,footer,header,menu,nav,section {
	display: block;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
}

body::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

body::-webkit-scrollbar-track {
	-webkit-box-shadow: 5px 5px 5px -5px rgba(34,60,80,.2) inset;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

body::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

header {
	position: relative;
	z-index: 10;
}

header.is-line {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

header.is-shadow {
	box-shadow: var(--shadow-moderate);
}

@media (min-width:992px) {
	header.is-overlay {
		position: absolute;
		width: 100%;
		border-bottom: 1px solid hsla(var(--bh),var(--bs),var(--bl),.3)!important;
		box-shadow: unset!important;
	}
}

li,ol,ul {
	list-style: none;
}

.overlay-modal {
	box-sizing: border-box;
}

.ink {
	display: block;
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	transform: scale(0);
	background: hsl(var(--bh),var(--bs),var(--bl));
	opacity: .25;
}

.ink.is-animated {
	animation: ink 1.2s linear;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%!important;
	height: 100%!important;
	border-width: 0;
	outline-width: 0;
}

.is-marked {
	display: inline-block;
	padding: 0 .4em;
	border-radius: var(--border-radius-small);
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
}

.horizontal-marquee {
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
	gap: var(--_gap);
	max-width: 100%;
}

.horizontal-marquee.smooth {
	mask: linear-gradient(90deg,transparent,#fff 20%,#fff 80%,transparent);
}

.horizontal-marquee.paused .horizontal-marquee-inner {
	animation-play-state: paused;
}

.horizontal-marquee.full .horizontal-marquee-inner {
	min-width: 100%;
}

.horizontal-marquee-inner {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: nowrap;
	gap: var(--_gap);
	white-space: nowrap;
}

[data-animate=true] .horizontal-marquee-inner {
	animation: horizontal-marquee var(--_speed) linear infinite var(--_direction);
}

.vertical-marquee {
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
	margin-bottom: var(--_gap);
	max-height: 100%;
	flex-direction: column;
	height: calc(calc(var(--_containerSize) - var(--_vGap))/1.2);
}

.vertical-marquee.smooth {
	mask: linear-gradient(180deg,transparent,#fff 20%,#fff 80%,transparent);
}

.vertical-marquee.paused .vertical-marquee-inner {
	animation-play-state: paused;
}

.vertical-marquee-inner {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: nowrap;
	margin-bottom: var(--_vGap);
}

[data-animate=true] .vertical-marquee-inner {
	animation: vertical-marquee var(--_speed) linear infinite var(--_direction);
}

.vertical-marquee-inner>:not(:last-child) {
	margin-right: var(--_hGap);
}

:root {
	--vh: 100vh;
	--top-bar-height: 0px;
	--headline-font-size: 42px;
	--title-font-size: 28px;
	--subtitle-font-size: 19px;
	--name-font-size: 17px;
	--border-radius-small: 6px;
	--border-radius-large: 14px;
	--gap-small: 10px;
	--gap: 20px;
	--gap-extended: 30px;
	--frame-padding-mobile: 40px;
	--header-height-mobile: 60px;
	--dim: hsla(0, 0%, 6%, 0.3);
	--dim-intense: hsla(0, 0%, 6%, 0.15);
	--dim-muted: hsla(0, 0%, 6%, 0.7);
	--dim-gradient: linear-gradient(180deg, hsla(0, 0%, 6%, 0) 0, hsla(0, 0%, 6%, 0.4) 100%);
	--shadow-light: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	--shadow-medium: 0 0px 4px 0 rgba(0, 0, 0, 0.1);
	--shadow-moderate: 0 6px 24px rgba(0, 0, 0, 0.04), 0 2px 2px rgba(0, 0, 0, 0.08);
	--shadow-high: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08);
	--shadow-card: 0 25px 34px hsla(0, 0%, 0%, 0.08);
	--shadow-header: 0 4px 10px rgba(0, 0, 0, 0.1);
	--shadow-modal: 0 8px 16px 0 rgba(0, 0, 0, 0.1), 0 0 3px 0 rgba(0, 0, 0, 0.08);
	--shadow-spread: 0 0 20px rgba(0, 0, 0, 0.07);
}

@media (min-width:992px) {
	:root {
		--headline-font-size: 48px;
		--title-font-size: 36px;
		--subtitle-font-size: 20px;
		--name-font-size: 18px;
	}
}

.banner__image-wrapper,.banner__mobile-wrapper {
	position: relative;
	display: block;
	overflow: hidden;
	isolation: isolate;
}

.banner__image-wrapper {
	display: none;
}

.banner__image-wrapper.is-link .banner__image {
	transform: scale(1.02);
}

.banner__image-wrapper.is-link:hover .banner__image {
	transform: scale(1);
}

.banner__image-wrapper:hover .banner__pop {
	transform: translateY(0);
}

.banner__image-wrapper.is-primary,.banner__image-wrapper.is-primary .banner__pop {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.banner__image-wrapper.is-primary .banner__pop .icon-corner {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.banner__image-wrapper.is-secondary,.banner__image-wrapper.is-secondary .banner__pop {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.banner__image-wrapper.is-secondary .banner__pop .icon-corner {
	fill: hsl(var(--ah),var(--as),var(--al));
}

.banner__image-wrapper.is-semitone,.banner__image-wrapper.is-semitone .banner__pop {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.banner__image-wrapper.is-semitone .banner__pop .icon-corner {
	fill: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.banner__image-container {
	display: flex;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	isolation: isolate;
}

.banner__image-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dim);
	opacity: 0;
	z-index: 0;
}

.banner__image,.banner__image-container::after,.banner__pop {
	transition: all 1s cubic-bezier(.22,1,.36,1);
}

.banner__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	object-fit: cover;
}

.banner__pop {
	position: absolute;
	bottom: -1px;
	right: -1px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: var(--border-radius-normal) 0 0 0;
	transform: translateY(100%);
	z-index: 1;
}

.banner__pop .icon-arrow-top-right {
	width: 32px;
	height: 32px;
}

.banner__pop .icon-corner {
	position: absolute;
	display: flex;
	width: 48px;
	height: 48px;
	transform: rotate(270deg);
}

.banner__pop .icon-corner:nth-of-type(1) {
	top: -39px;
	right: -8px;
}

.banner__pop .icon-corner:nth-of-type(2) {
	bottom: -8px;
	left: -39px;
}

.banner__sticker {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 1;
}

@media (min-width:768px) {
	.banner__image-wrapper {
		display: block;
	}

	.banner__mobile-wrapper {
		display: none;
	}
}

.banners__wrapper {
	position: relative;
}

.banners__button {
	position: absolute;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
	display: flex;
}

.banners__button:hover {
	border-radius: var(--border-radius-large);
}

.banners__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.banners__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.banners__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.banners__button.is-next {
	right: 1rem;
}

.banners__button.is-prev {
	left: 1rem;
}

@media (min-width:992px) {
	.banners__button.is-next {
		right: -20px;
	}

	.banners__button.is-prev {
		left: -20px;
	}
}

.benefits__list {
	display: grid;
	grid-gap: 1rem;
	max-width: 400px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width:768px) {
	.benefits__list {
		grid-template-columns: repeat(2,1fr);
		max-width: 800px;
	}
}

@media (min-width:1200px) {
	.benefits__list {
		grid-template-columns: repeat(3,1fr);
		max-width: unset;
	}
}

@media (min-width:1400px) {
	.benefits__list {
		grid-template-columns: repeat(4,1fr);
	}
}

.cards__header {
	display: grid;
	align-items: flex-start;
}

.cards__link,.cards__list {
	margin-right: auto;
}

.cards__list {
	display: grid;
	grid-gap: 1.5rem;
	max-width: 400px;
	margin-left: auto;
}

.cards__list:not(:first-of-type) {
	margin-top: 2rem;
}

@media (min-width:768px) {
	.cards__list {
		grid-template-columns: repeat(2,1fr);
		max-width: 800px;
	}
}

@media (min-width:992px) {
	.cards__header {
		grid-template-columns: 1fr 250px;
	}

	.cards__link {
		margin-right: unset;
		margin-left: auto;
	}
}

@media (min-width:1200px) {
	.cards__list {
		grid-template-columns: repeat(3,1fr);
		max-width: unset;
	}
}

@media (min-width:1400px) {
	.cards__list {
		grid-template-columns: repeat(4,1fr);
	}
}

.carousel .swiper-wrapper {
	transition-timing-function: linear;
}

.carousel__swiper:not(:first-child),.catalog__list:not(:first-of-type) {
	margin-top: 2rem;
}

.carousel__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--border-radius-small);
	overflow: hidden;
}

.carousel__error {
	text-align: center;
}

.catalog__list {
	display: grid;
	justify-content: center;
	grid-template-columns: minmax(260px,350px);
	grid-gap: 15px;
}

.catalog__item {
	position: relative;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-radius: var(--border-radius-normal);
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: .2s ease;
}

.catalog__item:hover {
	box-shadow: var(--shadow-card);
}

.catalog__item.is-primary {
	border-color: hsl(var(--ah),var(--as),var(--al));
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.catalog__item.is-primary:hover {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.catalog__item.is-secondary {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.catalog__item.is-secondary:hover {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.catalog__item.is-semitone {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.catalog__item.is-semitone:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.catalog__item::before {
	content: '';
	display: block;
	padding-bottom: 100%;
}

.catalog__image,.catalog__item-content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.catalog__item-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	flex-direction: column;
	padding: 1.5rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	text-align: center;
	overflow: hidden;
}

.catalog__image {
	margin-bottom: 1rem;
}

.catalog__image>img {
	display: block;
	max-height: 110px;
	min-height: 110px;
	height: auto;
	font-size: 0;
	object-fit: cover;
}

.catalog__item-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	font-weight: 600;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.catalog__error {
	text-align: center;
}

@media (min-width:580px) {
	.catalog__list {
		grid-template-columns: repeat(2,minmax(260px,350px));
		grid-gap: var(--gap-small);
	}
}

@media (min-width:768px) {
	.catalog__list {
		grid-gap: 15px;
	}
}

@media (min-width:1000px) {
	.catalog__list {
		grid-template-columns: repeat(3,minmax(260px,350px));
		grid-gap: var(--gap-small);
	}
}

@media (min-width:1200px) {
	.catalog__list {
		grid-template-columns: repeat(4,1fr);
		grid-gap: 15px;
	}
}

@media (min-width:1400px) {
	.catalog__list {
		grid-template-columns: repeat(5,1fr);
		grid-gap: var(--gap-small);
	}
}

@media (min-width:1550px) {
	.catalog__list {
		grid-gap: 15px;
	}
}

.collection__header {
	display: grid;
	align-items: flex-start;
}

.collection__link {
	margin-right: auto;
}

.collection__wrapper {
	position: relative;
}

.collection__wrapper:not(:first-of-type) {
	margin-top: 2rem;
}

.collection__button {
	position: absolute;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
	display: flex;
	opacity: 0;
}

.collection__button:hover {
	border-radius: var(--border-radius-large);
}

.collection__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.collection__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.collection__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.collection__button.is-next {
	right: 1rem;
}

.collection__button.is-prev {
	left: 1rem;
}

.collection__button:not(.swiper-button-disabled) {
	opacity: 1;
}

.collection__error {
	text-align: center;
}

@media (min-width:992px) {
	.collection__header {
		grid-template-columns: 1fr 250px;
	}

	.collection__link {
		margin-right: unset;
		margin-left: auto;
	}

	.collection__button.is-next {
		right: -20px;
	}

	.collection__button.is-prev {
		left: -20px;
	}
}

.contacts__wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: var(--gap);
	align-items: center;
}

.contacts__content>:not(:last-child) {
	margin-bottom: var(--gap);
}

.contacts__columns {
	display: grid;
	grid-gap: var(--gap);
}

.contacts__links {
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1*var(--gap-small));
	margin-right: calc(-.5*var(--gap-small));
	margin-left: calc(-.5*var(--gap-small));
}

.contacts__link {
	flex: 0 0 auto;
	padding-right: calc(var(--gap-small)*.5);
	padding-left: calc(var(--gap-small)*.5);
	margin-top: var(--gap-small);
	box-sizing: border-box;
}

.contacts__map-wrapper {
	position: relative;
}

.contacts__map-wrapper.is-fullscreen {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin-top: unset;
	height: 100vh;
	width: 100vw;
	z-index: 160;
}

.contacts__map-wrapper.is-fullscreen .contacts__map {
	height: 100%!important;
	border-radius: unset;
}

.contacts__map {
	border-radius: var(--border-radius-normal);
	filter: grayscale(.5);
}

.contacts__expand {
	position: absolute;
	top: 0;
	right: 0;
}

@media (min-width:768px) {
	.contacts__columns {
		grid-template-columns: repeat(2,1fr);
	}
}

@media (min-width:1200px) {
	.contacts__wrapper {
		grid-template-columns: 1fr 1fr;
		grid-gap: 4rem;
	}
}

.cta__wrapper {
	display: grid;
	grid-gap: 1rem;
	padding: 1rem;
	border-radius: var(--border-radius-large);
}

.cta__wrapper.is-primary {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.cta__wrapper.is-secondary,.cta__wrapper.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

@media (min-width:768px) {
	.cta__wrapper {
		padding: 2rem;
	}
}

@media (min-width:992px) {
	.cta__wrapper {
		grid-template-columns: 1fr auto;
		grid-gap: 2rem;
	}
}

@media (min-width:1200px) {
	.cta__wrapper {
		padding: 2rem 3rem;
	}
}

.description__wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: var(--gap);
	align-items: center;
}

.description__wrapper.is-reverse>div:nth-of-type(1) {
	order: 2;
}

.description__wrapper.is-reverse>div:nth-of-type(2) {
	order: 1;
}

.description__image-wrapper {
	max-width: 500px;
}

.description__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	object-fit: cover;
}

@media (min-width:1200px) {
	.description__wrapper {
		grid-template-columns: 500px 1fr;
		grid-gap: 4rem;
	}

	.description__wrapper.is-reverse {
		grid-template-columns: 1fr 500px;
	}
}

.details__list {
	display: grid;
	grid-gap: 15px;
	max-width: 650px;
	margin: 0 auto;
}

.details__list:not(:first-of-type) {
	margin-top: 2rem;
}

.details__item:last-child {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

@media (min-width:992px) {
	.details__list {
		grid-template-columns: 1fr 1fr;
		max-width: unset;
	}

	.details__item:first-child {
		grid-column: span 2;
	}
}

.faq__list:not(:first-child) {
	margin-top: var(--gap-extended);
}

.faq__list>:not(:last-child) {
	margin-bottom: var(--gap);
}

.hotspot__wrapper {
	position: relative;
}

.hotspot__wrapper:not(:first-child) {
	margin-top: var(--gap-extended);
}

.hotspot__swiper {
	overflow-x: clip;
	overflow-y: visible;
}

.hotspot__slide.swiper-slide-active {
	z-index: 1;
}

.hotspot__button {
	position: absolute;
	top: 50%;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
	display: none;
	opacity: 0;
}

.hotspot__button:hover {
	border-radius: var(--border-radius-large);
}

.hotspot__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.hotspot__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.hotspot__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.hotspot__button.is-next {
	right: 1rem;
}

.hotspot__button.is-prev {
	left: 1rem;
}

.hotspot__button:not(.swiper-button-disabled),.links__swiper:hover .links__button.is-hover:not(.swiper-button-disabled) {
	opacity: 1;
}

@media (min-width:992px) {
	.hotspot__button {
		display: flex;
	}

	.hotspot__button.is-next {
		right: -20px;
	}

	.hotspot__button.is-prev {
		left: -20px;
	}
}

.info__page {
	padding: 1.6rem;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.info__page.is-list:not(:last-of-type) {
	margin-bottom: var(--gap);
}

.info__page.is-tabs {
	display: none;
	margin-top: var(--gap);
}

.info__page.is-tabs.is-active {
	display: block;
}

.info__subtitle,.info__title {
	display: block;
	line-height: 1.45em;
}

.info__title {
	font-size: var(--subtitle-font-size);
	font-weight: 600;
}

.info__subtitle {
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.info__description {
	margin-top: var(--gap);
}

.info__more {
	display: inline-flex;
	align-items: center;
	margin-top: 1rem;
	padding: 8px 16px 5px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: 15px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: .2s ease;
	cursor: pointer;
}

.info__more .icon-reload {
	display: block;
	width: 13px;
	height: 13px;
	margin-left: 10px;
	margin-top: -2px;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.info__more:hover {
	box-shadow: 0 0 0 3px hsl(var(--ah),var(--as),var(--al));
}

@media (max-width:767px) {
	.info__page#features {
		border: unset;
		padding: unset;
		background-color: transparent;
	}

	.info__collapsed::after {
		background: linear-gradient(180deg,transparent 0,hsl(var(--ah),var(--as),calc(var(--al) + 2%)))!important;
	}
}

@media (min-width:992px) {
	.info__page.is-list:not(:last-of-type) {
		margin-bottom: var(--gap-extended);
	}
}

@media (min-width:1200px) {
	.info__page {
		padding: 2rem;
	}
}

.links__button {
	position: absolute;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
}

.links__button:hover {
	border-radius: var(--border-radius-large);
}

.links__button.is-next {
	right: 1.4rem;
}

.links__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.links__button.is-prev {
	left: 1.4rem;
}

.links__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.links__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.links__button.is-hover,.links__button.swiper-button-disabled {
	opacity: 0;
}

@media (min-width:992px) {
	.links__button {
		display: flex;
	}
}

.mainscreen__controls {
	position: absolute;
	bottom: 1rem;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	max-width: var(--frame-width);
	padding-right: 1rem;
	padding-left: 1rem;
	margin: 0 auto;
	pointer-events: none;
	z-index: 1;
}

.mainscreen__controls>:not(:last-child) {
	margin-right: var(--gap-extended);
}

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

.mainscreen__buttons>:not(:last-child) {
	margin-right: var(--gap-small);
}

.mainscreen__button,.mainscreen__pagination {
	display: flex;
	align-items: center;
	pointer-events: auto;
}

.mainscreen__button {
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid hsla(var(--bh),var(--bs),var(--bl),.25);
	background-color: hsla(var(--th),var(--ts),var(--tl),.25);
	backdrop-filter: blur(10px);
	transition: background-color .3s ease-in-out,border-radius .3s ease;
	user-select: none;
	cursor: pointer;
}

.mainscreen__button:hover {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.mainscreen__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.mainscreen__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.mainscreen__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.mainscreen__pagination {
	position: static!important;
	width: unset!important;
}

.mainscreen__pagination>.swiper-pagination-bullet {
	position: relative;
	width: 8px;
	height: 8px;
	background-color: hsla(var(--th),var(--ts),var(--tl),.25);
	border: 1px solid hsla(var(--bh),var(--bs),var(--bl),.25);
	backdrop-filter: blur(10px);
	opacity: 1;
}

.mainscreen__pagination>.swiper-pagination-bullet.is-active {
	width: 40px;
	height: 3px;
	border-radius: 3px;
}

.mainscreen__pagination .is-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	appearance: none;
	background-color: transparent;
	accent-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: unset;
	border: unset;
	box-shadow: unset;
	z-index: 1;
}

.mainscreen__pagination .is-progress::-webkit-progress-bar {
	background-color: transparent;
}

.mainscreen__pagination .is-progress::-webkit-progress-value {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.mainscreen__pagination .is-progress::-moz-progress-bar {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

@media (min-width:768px) {
	.mainscreen__controls {
		bottom: 2rem;
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

.offers__list {
	display: grid;
	justify-content: center;
}

.offers__list:not(:first-child) {
	margin-top: 2rem;
}

.offers__list:not(.is-mobile-grid) {
	grid-template-columns: minmax(260px,350px);
	grid-gap: 15px;
}

.offers__list.is-mobile-grid {
	grid-template-columns: repeat(2,1fr);
	grid-gap: var(--gap-small);
}

.offers__error {
	text-align: center;
}

@media (min-width:580px) {
	.offers__list.is-mobile-grid,.offers__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(2,minmax(260px,350px));
		grid-gap: var(--gap-small);
	}
}

@media (min-width:768px) {
	.offers__list.is-mobile-grid,.offers__list:not(.is-mobile-grid) {
		grid-gap: 15px;
	}
}

@media (min-width:1000px) {
	.offers__list.is-mobile-grid,.offers__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(3,minmax(260px,350px));
		grid-gap: var(--gap-small);
	}
}

@media (min-width:1200px) {
	.offers__list.is-mobile-grid,.offers__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(4,1fr);
		grid-gap: 15px;
	}
}

@media (min-width:1400px) {
	.offers__list.is-mobile-grid,.offers__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(5,1fr);
		grid-gap: var(--gap-small);
	}
}

@media (min-width:1550px) {
	.offers__list.is-mobile-grid,.offers__list:not(.is-mobile-grid) {
		grid-gap: 15px;
	}
}

.layout-my-order__table td a,.options__swiper.is-primary-color {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.options__swiper.is-secondary-color {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.payments__grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1rem;
}

@media (min-width:992px) {
	.payments__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width:1200px) {
	.payments__grid {
		grid-template-columns: 1fr 2fr;
	}
}

.posts__error {
	text-align: center;
}

.posts__header {
	display: grid;
	align-items: flex-start;
	grid-gap: var(--gap-small);
}

.posts__link {
	margin-right: auto;
}

.posts__wrapper {
	position: relative;
}

.posts__wrapper:not(:first-child) {
	margin-top: 2rem;
}

.posts__wrapper:hover .posts__button.is-hover {
	opacity: 1;
}

.posts__button {
	position: absolute;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
}

.posts__button:hover {
	border-radius: var(--border-radius-large);
}

.posts__button.is-next {
	right: 1.4rem;
}

.posts__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.posts__button.is-prev {
	left: 1.4rem;
}

.posts__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.posts__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.posts__button.is-hover {
	opacity: 0;
}

@media (min-width:992px) {
	.posts__button {
		display: flex;
	}

	.posts__header {
		grid-template-columns: 1fr 250px;
	}

	.posts__link {
		margin-right: unset;
		margin-left: auto;
	}
}

.product__grid {
	display: grid;
	grid-gap: var(--gap);
	margin-top: var(--gap);
	isolation: isolate;
}

.product__card,.product__cart {
	min-width: 0;
}

.product__card {
	align-self: start;
}

.product__card-info {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.product__card-info:not(:empty) {
	margin-top: var(--gap-small);
}

.product__card-info>:not(:last-child) {
	margin-right: var(--gap);
}

.product__card-footer {
	display: none;
}

.product__advantage {
	display: block;
	margin-top: var(--gap);
	box-sizing: border-box;
}

.product__advantage-name {
	display: block;
	margin-top: auto;
	font-weight: 600;
	font-size: var(--name-font-size);
	line-height: 1.45em;
	color: #2b8128;
}

.product__advantage-text {
	display: block;
	margin-top: 5px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	line-height: 1.45em;
	font-size: .95em;
}

.product__code li {
	text-align: right;
}

.product__share {
	font-size: .95em;
}

.product__cart-header {
	display: flex;
	align-items: center;
	min-height: 22px;
}

.product__cart-header>:not(:first-child) {
	margin-left: var(--gap);
}

.product__rating {
	margin-right: auto;
	cursor: pointer;
}

.product__price-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: -10px;
}

.product__price-wrapper>* {
	margin-top: 10px;
}

/* Цена */

.product__price-wrapper>:not(:last-child) {
	margin-right: var(--gap);
	display: none;
}

.product__form>:not(:last-child) {
	margin-bottom: var(--gap);
}

.product__form.is-active .product__quantity {
	display: flex;
}

.product__form.is-active .product__submit {
	background-color: hsl(var(--ah),var(--as),var(--al));
	width: auto;
}

.product__form.is-active .product__submit:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.product__form.is-active .product__submit>svg {
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.product__form[data-price='0'] .product__buttons {
	display: none;
}

.product__form:not([data-price='0']) .product__request {
	display: none;
}

.product__buttons,.product__request {
	max-width: 280px;
}

.product__buttons>:not(:last-child),.product__request>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.product__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: -10px;
}

.product__links>* {
	margin-top: 10px;
}

.product__links>:not(:last-child) {
	padding-right: var(--gap);
}

.product__link {
	display: inline-flex;
	align-items: center;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-decoration: none;
	transition: .2s ease;
}

.product__link:hover {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.product__link:nth-of-type(2) {
	margin-right: auto;
}

.product__link>svg {
	display: block;
	width: 12px;
	height: 12px;
	padding-left: 10px;
	fill: currentColor;
}

.product__purchase {
	display: flex;
	align-items: flex-start;
}

.product__quantity {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-right: 1rem;
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),var(--al));
	border-radius: var(--border-radius-small);
	user-select: none;
}

.product__quantity-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: unset;
	border: unset;
	background-color: transparent;
	font-size: 1.45em;
	cursor: pointer;
}

.product__quantity-button.is-loading {
	opacity: .2;
}

.layout-checkout__plugin-wrapper button:active,.layout-checkout__plugin-wrapper button:focus,.layout-checkout__plugin-wrapper button:hover,.layout-checkout__plugin-wrapper input[type=submit]:active,.layout-checkout__plugin-wrapper input[type=submit]:focus,.layout-checkout__plugin-wrapper input[type=submit]:hover,.product__quantity-button:focus {
	outline: 0;
}

.product__quantity-value {
	display: block;
	width: 50px;
	text-align: center;
	font-size: .95em;
}

.product__submit {
	overflow: hidden;
	position: relative;
	min-width: 42px;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.product__submit:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) - 10%));
}

.product__submit[disabled] {
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: auto;
}

.product__submit>svg {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.product__submit.is-rounded {
	border-radius: 25px;
}

.product__one-click,.product__request-button,.product__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	box-sizing: border-box;
	border: unset;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
	transition: background-color .25s ease;
	cursor: pointer;
}

/* Кнопка купить */
.product__request-button {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	display: none;
}

.product__request-button:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) - 10%));
}

.product__request-button.is-rounded {
	border-radius: 25px;
}

.product__one-click {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.product__one-click:hover {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.15);
}

.product__one-click[disabled] {
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: auto;
}

.product__one-click.is-rounded {
	border-radius: 25px;
}

.product__one-click .icon-buy1click {
	display: block;
	margin-right: var(--gap-small);
}

.product__one-click .icon-buy1click__tile-0 {
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.product__one-click .icon-buy1click__tile-1 {
	fill: hsl(var(--sh),var(--ss),var(--sl));
}

.product__one-click .icon-buy1click__tile-2 {
	fill: hsl(var(--sh),var(--ss),calc(var(--sl) + 10%));
}

.product__advantage,.product__features,.product__summary {
	padding: 1rem;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.product__features-link,.product__summary-text {
	line-height: 1.45em;
	font-size: .95em;
}

.product__features-link {
	margin-top: 1rem;
}

.product__subtitle {
	display: block;
	margin-right: 65px;
	margin-bottom: var(--gap-small);
	font-weight: 600;
	line-height: 1.45em;
}

.product__cross-wrapper {
	position: relative;
}

.product__cross-slide {
	user-select: none;
}

.product__slider-buttons {
	position: absolute;
	right: 0;
	bottom: calc(100% + var(--gap-small));
	display: none;
	align-items: center;
}

.product__slider-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),var(--al));
	transition: background-color .25s ease;
	outline: 0;
	user-select: none;
	cursor: pointer;
}

.product__slider-button.swiper-button-lock {
	display: none;
}

.product__slider-button:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.product__slider-button.is-next .icon-arrow,.product__submit>svg {
	transform: rotate(-90deg);
}

.product__slider-button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.product__slider-button .icon-arrow {
	display: block;
	width: 10px;
	height: 10px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.product__slider-button:not(:last-child) {
	margin-right: 8px;
}

.product__frame {
	padding: 1rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

@media (max-width:579px) {
	.product__compare::after,.product__favorite {
		display: none!important;
	}
}

@media (min-width:768px) {
	.product__advantage,.product__features,.product__frame,.product__summary {
		padding: 1rem 1.5rem;
	}
}

@media (min-width:1200px) {
	.product__grid {
		grid-template-columns: 1fr 1fr;
		grid-gap: 2rem;
		margin-top: 2.5rem;
	}

	.product__form>:not(:first-child).product__cross,.product__form>:not(:first-child).product__engage,.product__form>:not(:first-child).product__features {
		margin-top: var(--gap-extended);
	}

	.product__slider-buttons {
		display: flex;
	}

	.product__card {
		position: sticky;
		top: 1rem;
	}

	.product__card-info:not(:empty) {
		margin-top: var(--gap);
	}

	.product__card-footer {
		display: block;
	}
}

@media (min-width:1400px) {
	.product__grid {
		grid-template-columns: 1fr 1fr;
		grid-gap: 3rem;
	}

	.product__grid:not(.is-gallery) {
		grid-template-columns: 4fr 5fr;
		grid-gap: 4rem;
	}

	.product__card-footer.is-gallery {
		margin-left: calc(94px + 1rem);
	}
}

.products__error {
	text-align: center;
}

.products__content-item {
	display: none;
}

.products__content-item.is-active {
	display: block;
}

.products__list {
	display: grid;
	justify-content: center;
	margin-top: 2rem;
}

.products__list:not(.is-mobile-grid) {
	grid-template-columns: minmax(260px,350px);
	grid-gap: 15px;
}

.products__list.is-mobile-grid {
	grid-template-columns: repeat(2,1fr);
	grid-gap: var(--gap-small);
}

@media (min-width:580px) {
	.products__list.is-mobile-grid,.products__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(2,minmax(260px,350px));
		grid-gap: var(--gap-small);
	}
}

@media (min-width:768px) {
	.products__list.is-mobile-grid,.products__list:not(.is-mobile-grid) {
		grid-gap: 15px;
	}
}

@media (min-width:1000px) {
	.products__list.is-mobile-grid,.products__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(3,minmax(260px,350px));
		grid-gap: var(--gap-small);
	}
}

@media (min-width:1200px) {
	.products__list.is-mobile-grid,.products__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(4,1fr);
		grid-gap: 15px;
	}
}

@media (min-width:1400px) {
	.products__list.is-mobile-grid,.products__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(5,1fr);
		grid-gap: var(--gap-small);
	}
}

@media (min-width:1550px) {
	.products__list.is-mobile-grid,.products__list:not(.is-mobile-grid) {
		grid-gap: 15px;
	}
}

.promotions__list {
	display: grid;
	grid-gap: 1rem;
	max-width: 550px;
	margin: 0 auto;
}

.promotions__list:not(:first-child),.reviews__list:not(:first-child) {
	margin-top: var(--gap-extended);
}

.promotions__error {
	text-align: center;
}

@media (min-width:768px) {
	.promotions__list {
		grid-template-columns: repeat(2,1fr);
		max-width: unset;
	}
}

@media (min-width:1200px) {
	.promotions__list {
		grid-template-columns: repeat(3,1fr);
	}
}

.reviews__header {
	display: grid;
	align-items: flex-start;
	margin-top: -10px;
}

.reviews__header>* {
	margin-top: 10px;
}

.reviews__link {
	margin-right: auto;
}

.reviews__list {
	position: relative;
}

.reviews__button {
	position: absolute;
	top: 50%;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
	display: none;
	opacity: 0;
}

.reviews__button:hover {
	border-radius: var(--border-radius-large);
}

.reviews__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.reviews__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.reviews__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.reviews__button.is-next {
	right: 1rem;
}

.reviews__button.is-prev {
	left: 1rem;
}

.reviews__button:not(.swiper-button-disabled) {
	opacity: 1;
}

.reviews__error {
	text-align: center;
}

@media (min-width:992px) {
	.reviews__header {
		grid-template-columns: 1fr 250px;
	}

	.reviews__link {
		margin-right: unset;
		margin-left: auto;
	}

	.reviews__button {
		display: flex;
	}

	.reviews__button.is-next {
		right: -20px;
	}

	.reviews__button.is-prev {
		left: -20px;
	}
}

.rows__list {
	display: grid;
	grid-gap: 1rem;
	max-width: 650px;
	margin: 0 auto;
}

@media (min-width:992px) {
	.rows__list {
		grid-template-columns: 1fr 1fr;
		max-width: unset;
	}
}

.selection__list {
	display: grid;
	justify-content: center;
}

.selection__list:not(:first-child) {
	margin-top: 2rem;
}

.selection__list:not(.is-mobile-grid) {
	grid-template-columns: minmax(260px,350px);
	grid-gap: 15px;
}

.selection__list.is-mobile-grid {
	grid-template-columns: repeat(2,1fr);
	grid-gap: var(--gap-small);
}

.selection__error {
	text-align: center;
}

@media (min-width:580px) {
	.selection__list.is-mobile-grid,.selection__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(2,minmax(260px,350px));
		grid-gap: var(--gap-small);
	}
}

@media (min-width:768px) {
	.selection__list.is-mobile-grid,.selection__list:not(.is-mobile-grid) {
		grid-gap: 15px;
	}
}

@media (min-width:1000px) {
	.selection__list.is-mobile-grid,.selection__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(3,minmax(260px,350px));
		grid-gap: var(--gap-small);
	}
}

@media (min-width:1200px) {
	.selection__list.is-mobile-grid,.selection__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(4,1fr);
		grid-gap: 15px;
	}
}

@media (min-width:1400px) {
	.selection__list.is-mobile-grid,.selection__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(5,1fr);
		grid-gap: var(--gap-small);
	}
}

@media (min-width:1550px) {
	.selection__list.is-mobile-grid,.selection__list:not(.is-mobile-grid) {
		grid-gap: 15px;
	}
}

.showcase__header {
	display: grid;
	align-items: flex-start;
}

.showcase__link {
	margin-right: auto;
}

.showcase__list {
	display: none;
}

.showcase__wrapper {
	position: relative;
}

.showcase__button {
	position: absolute;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
	display: flex;
	opacity: 0;
}

.showcase__button:hover {
	border-radius: var(--border-radius-large);
}

.showcase__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.showcase__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.showcase__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.showcase__button.is-next {
	right: 1rem;
}

.showcase__button.is-prev {
	left: 1rem;
}

.showcase__button:not(.swiper-button-disabled) {
	opacity: 1;
}

@media (min-width:768px) {
	.showcase__list {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-gap: 1.5rem;
		max-width: 800px;
		margin-right: auto;
		margin-left: auto;
	}

	.showcase__list:not(:first-of-type) {
		margin-top: 2rem;
	}

	.showcase__wrapper {
		display: none;
	}
}

@media (min-width:992px) {
	.showcase__header {
		grid-template-columns: 1fr 250px;
	}

	.showcase__link {
		margin-right: unset;
		margin-left: auto;
	}
}

@media (min-width:1200px) {
	.showcase__list {
		grid-template-columns: repeat(3,1fr);
		max-width: unset;
	}
}

@media (min-width:1400px) {
	.showcase__list {
		grid-template-columns: repeat(4,1fr);
	}
}

.layout-auth__close:hover>svg,.slider__swiper:hover .slider__button.is-hover {
	opacity: 1;
}

.slider__button {
	position: absolute;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
}

.slider__button:hover {
	border-radius: var(--border-radius-large);
}

.slider__button.is-next {
	right: 1.4rem;
}

.slider__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.slider__button.is-prev {
	left: 1.4rem;
}

.slider__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.slider__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.slider__button.is-hover {
	opacity: 0;
}

.slider__pagination {
	bottom: 1rem!important;
}

.slider__pagination>.swiper-pagination-bullet {
	position: relative;
	width: 12px;
	height: 12px;
	background: rgba(0,0,0,.1);
	opacity: 1;
}

.slider__pagination>.swiper-pagination-bullet::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -4px;
	width: 8px;
	height: 8px;
	background: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 50%;
	transition: .3s ease;
}

.slider__pagination>.swiper-pagination-bullet.is-active::before {
	transform: scale(1.5);
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

@media (max-width:767px) {
	.slider__slide {
		border-radius: unset!important;
	}
}

@media (min-width:992px) {
	.slider__button {
		display: flex;
	}
}

.tiles__list {
	display: grid;
	grid-gap: 1.5rem;
	max-width: 400px;
	margin-right: auto;
	margin-left: auto;
}

.tiles__list:not(:first-of-type) {
	margin-top: 2rem;
}

@media (min-width:768px) {
	.tiles__list {
		grid-template-columns: repeat(2,1fr);
		max-width: 800px;
	}
}

@media (min-width:992px) {
	.tiles__link {
		margin-right: unset;
		margin-left: auto;
	}
}

@media (min-width:1200px) {
	.tiles__list {
		grid-template-columns: repeat(3,1fr);
		max-width: unset;
	}
}

.upselling__list {
	display: grid;
	justify-content: center;
	margin-top: 2rem;
}

.upselling__list:not(.is-mobile-grid) {
	grid-template-columns: minmax(260px,350px);
	grid-gap: 1rem;
}

.upselling__list.is-mobile-grid {
	grid-template-columns: repeat(2,1fr);
	grid-gap: .5rem;
}

@media (min-width:580px) {
	.upselling__list.is-mobile-grid,.upselling__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(2,minmax(260px,350px));
		grid-gap: .5rem;
	}
}

@media (min-width:768px) {
	.upselling__list.is-mobile-grid,.upselling__list:not(.is-mobile-grid) {
		grid-gap: 1rem;
	}
}

@media (min-width:1000px) {
	.upselling__list.is-mobile-grid,.upselling__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(3,minmax(260px,350px));
		grid-gap: .5rem;
	}
}

@media (min-width:1200px) {
	.upselling__list.is-mobile-grid,.upselling__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(4,1fr);
		grid-gap: 1rem;
	}
}

@media (min-width:1400px) {
	.upselling__list.is-mobile-grid,.upselling__list:not(.is-mobile-grid) {
		grid-template-columns: repeat(5,1fr);
		grid-gap: .5rem;
	}
}

.videos__list {
	display: grid;
	grid-gap: 1rem;
	max-width: 550px;
	margin: 0 auto;
}

.videos__list:not(:first-child) {
	margin-top: var(--gap-extended);
}

@media (min-width:768px) {
	.videos__list {
		grid-template-columns: repeat(2,1fr);
		max-width: unset;
	}
}

@media (min-width:1200px) {
	.videos__list {
		grid-template-columns: repeat(3,1fr);
	}
}

.welcome__frame {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.welcome__highlight {
	cursor: pointer;
	text-decoration: underline;
}

.welcome__image {
	width: 100%;
}

.icon-shop-welcome {
	display: block;
	width: 100%;
	max-width: 200px;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}

.icon-shop-welcome__tile-0 {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.icon-shop-welcome__tile-1,.layout-auth__close>svg {
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.icon-shop-welcome__tile-2 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 10%));
}

.icon-shop-welcome__tile-3 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 28%));
}

@media (min-width:768px) {
	.icon-shop-welcome {
		max-width: 260px;
	}
}

.layout-auth__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.layout-auth__wrapper {
	position: relative;
	width: 100%;
	max-width: 540px;
	padding: 2.25rem 0 2rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-auth__close {
	position: absolute;
	top: -8px;
	right: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: hsl(var(--bh),var(--bs),var(--bl));
	border: 4px solid hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	padding: 8px;
	cursor: pointer;
}

.layout-auth__close>svg {
	width: 12px;
	height: 12px;
	opacity: .5;
	transition: .2s ease;
}

.layout-auth.is-active .layout-auth__close {
	display: flex;
}

.layout-auth__content {
	height: 100%;
	max-height: 600px;
	box-sizing: border-box;
	overflow-y: auto;
}

.layout-auth__content::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: transparent;
}

.layout-auth__content::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: 4px;
	margin-left: 5px;
}

.layout-auth__container {
	margin: 0 auto;
	max-width: 360px;
	box-sizing: border-box;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.layout-auth__adapters {
	display: flex;
	flex-direction: column;
}

.layout-auth.is-active .layout-auth__adapters,.layout-auth__form-wrapper {
	display: none;
}

.layout-auth.is-active .layout-auth__form-wrapper {
	display: block;
}

.layout-auth__subtitle,.layout-auth__title {
	display: block;
	text-align: center;
	line-height: 1.45em;
}

.layout-auth__title {
	margin-bottom: var(--gap);
	font-size: var(--subtitle-font-size);
	font-weight: 600;
}

.layout-auth__subtitle {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	font-size: .95em;
}

.layout-auth__separator {
	display: flex;
	align-items: center;
	margin: 1rem auto;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 35%));
}

.layout-auth__separator::after,.layout-auth__separator::before {
	content: '';
	display: block;
	width: 100px;
	height: 1px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.layout-auth__separator::before {
	margin-right: 5px;
}

.layout-auth__separator::after {
	margin-left: 5px;
}

.layout-auth__login {
	position: relative;
	display: grid;
	align-items: center;
	padding: .5rem 2.5rem;
	min-height: 46px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),var(--al));
	text-decoration: none;
	text-align: center;
	color: inherit;
	font-weight: 600;
	font-size: .95em;
	line-height: 1.45em;
	transition: background-color .25s ease;
}

.layout-auth__login:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.layout-auth__login.is-rounded {
	border-radius: 25px;
}

.layout-auth__login>svg {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
}

.layout-auth__footer {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 1rem;
	margin-top: 1rem;
}

.layout-auth__back,.layout-auth__signup>a {
	text-decoration: none;
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.layout-auth__back {
	display: flex;
	align-items: center;
	justify-content: center;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.layout-auth__back>svg {
	display: block;
	width: 13px;
	height: 13px;
	margin-right: var(--gap-small);
	fill: #a8a8a8;
}

.layout-auth.is-active .layout-auth__back {
	display: none;
}

@media (min-width:768px) {
	.layout-auth {
		background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	}

	.layout-auth__center {
		min-height: 100vh;
	}

	.layout-auth__wrapper {
		padding: 2.25rem .75rem 2rem;
		box-shadow: var(--shadow-light);
	}
}

.layout-brand__wrapper {
	display: grid;
	grid-template-columns: 1fr;
	margin: unset;
}

.layout-brand__brand {
	width: auto;
	height: 100%;
}

.layout-brand__search {
	margin-bottom: var(--gap);
}

.layout-brand__search-wrapper {
	position: relative;
	margin-bottom: var(--gap);
}

.layout-brand__search-input {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	padding: .6rem 2rem .6rem 1rem;
}

.layout-brand__search-input:hover:not(:disabled):not(:focus) {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-brand__search-input:focus,.layout-brand__search-input:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.layout-brand__search-input:focus {
	outline: 0;
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-brand__search-input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-brand__search-input.error,.layout-brand__search-input.error:focus,.layout-brand__search-input.error:hover,.layout-brand__search-input.is-error,.layout-brand__search-input.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.layout-brand__review-input::-webkit-input-placeholder,.layout-brand__search-input::-webkit-input-placeholder,.layout-my-order__pin input::-webkit-input-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.layout-brand__search-input:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.layout-brand__search-clear {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	height: 42px;
	min-width: 42px;
	cursor: pointer;
}

.layout-brand__search-clear .core-cross {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	fill: currentColor;
	transform: translate(-50%,-50%);
	pointer-events: none;
}

.layout-brand__letters-header {
	margin-bottom: var(--gap-small);
}

.layout-brand__letters-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-top: -5px;
}

.layout-brand__letters-list:not(:last-child) {
	margin-bottom: 5px;
}

.layout-brand__letters-list>li {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 35px;
	height: 35px;
	padding: 5px;
	margin-left: 5px;
	margin-top: 5px;
	box-sizing: border-box;
	border: 1px solid hsl(var(--ah),var(--as),var(--al));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: .95em;
	white-space: nowrap;
	transition: .2s ease;
	cursor: pointer;
}

.layout-brand__letters-list>li:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.layout-brand__letters-list>li.is-active {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
}

.layout-brand__description:not(:empty) {
	margin-bottom: var(--gap);
}

.layout-brand__subpages-wrapper {
	margin-bottom: var(--gap-extended);
}

.layout-brand__subpages {
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1*var(--gap-small));
	margin-right: calc(-.5*var(--gap-small));
	margin-left: calc(-.5*var(--gap-small));
}

.layout-brand__subpage {
	flex: 0 0 auto;
	padding-right: calc(var(--gap-small)*.5);
	padding-left: calc(var(--gap-small)*.5);
	margin-top: var(--gap-small);
	box-sizing: border-box;
}

.layout-brand__subpage-link {
	display: flex;
	align-items: center;
	height: 42px;
	padding: .4rem 1rem;
	margin: 1px;
	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: .2s ease;
	outline: 0;
}

.layout-brand__subpage-link:not(.is-active) {
	cursor: pointer;
}

.layout-brand__subpage-link.is-active,.layout-brand__subpage-link:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	box-shadow: 0 0 1px 1px hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.layout-brand__subpage-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.layout-brand__review {
	padding: 1rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	margin-bottom: var(--gap);
}

.layout-brand__review-name {
	margin-bottom: 5px;
	line-height: 1.45em;
	font-weight: 600;
}

.layout-brand__review-name>a,.layout-checkout__success-text a {
	color: inherit;
}

.layout-brand__review-contact,.layout-brand__review-title {
	margin-bottom: 5px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	font-size: .95em;
	line-height: 1.45em;
}

.layout-brand__review-title {
	margin-top: 5px;
}

.layout-brand__rating {
	padding-bottom: 5px;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.layout-brand__review-text {
	line-height: 1.45em;
}

.layout-brand__review-time {
	margin-top: 5px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	font-size: .95em;
	line-height: 1.45em;
}

.layout-brand__form-wrapper {
	max-width: 600px;
}

.layout-brand__review-block {
	margin-bottom: 15px;
}

.layout-brand__review-block.is-hidden {
	display: none;
}

.layout-brand__review-label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: 600;
}

.layout-brand__review-label.is-required::after {
	content: ' *';
	color: #fd6363;
}

.layout-brand__review-input {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	overflow-y: hidden;
	resize: none;
}

.layout-brand__review-input:hover:not(:disabled):not(:focus),.layout-my-order__pin input:hover:not(:disabled):not(:focus) {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.layout-brand__review-input:focus,.layout-brand__review-input:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.layout-brand__review-input:focus {
	outline: 0;
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-brand__review-input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-brand__review-input.error,.layout-brand__review-input.error:focus,.layout-brand__review-input.error:hover,.layout-brand__review-input.is-error,.layout-brand__review-input.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.layout-brand__review-input:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.layout-brand__stars {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.layout-brand__stars.is-locked {
	pointer-events: none;
	opacity: .5;
}

.layout-brand__stars>:not(:last-child) {
	margin-right: 15px;
}

.layout-brand__rating-icon {
	cursor: pointer;
	margin-top: 2px;
}

.layout-brand__rating-icon svg {
	width: 22px;
	height: 22px;
	transition: .1s linear;
}

.layout-brand__rating-icon.is-empty svg {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.layout-brand__rating-icon.is-filled svg {
	fill: #fa0;
}

.layout-brand__error {
	display: block;
	margin-top: 5px;
	font-style: normal;
	font-size: 16px;
	line-height: 1.45em;
	color: #fd6363;
}

.layout-brand__review-result {
	margin-top: var(--gap);
	line-height: 1.45em;
}

@media (max-width:479px) {
	.layout-brand__subpage {
		width: 100%;
	}
}

@media (min-width:480px) {
	.layout-brand__wrapper {
		grid-template-columns: repeat(2,1fr);
	}

	.layout-brand__subpage-link {
		max-width: 340px;
	}
}

@media (min-width:850px) {
	.layout-brand__wrapper {
		grid-template-columns: repeat(3,1fr);
	}
}

@media (min-width:1100px) {
	.layout-brand__wrapper {
		grid-template-columns: repeat(4,1fr);
	}
}

.layout-cart__error {
	padding: 1rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	text-align: center;
}

@media (min-width:768px) {
	.layout-cart__error {
		padding: 3.5rem 1.5rem;
	}
}

.layout-category__header {
	display: inline-flex;
	flex-wrap: wrap;
	margin-bottom: var(--gap-extended);
}

.layout-category__header>:not(:last-child) {
	margin-right: var(--gap-small);
}

.layout-category__count {
	margin-top: .5em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.layout-category__description {
	margin-bottom: var(--gap-extended);
}

.layout-category__additional-description {
	margin-top: var(--gap);
}

.layout-category__collapsed {
	position: relative;
	max-height: 140px;
	overflow: hidden;
}

.layout-category__collapsed::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(180deg,transparent 0,hsl(var(--ah),var(--as),calc(var(--al) + 2%)));
	z-index: 1;
}

.layout-category__collapsed.is-triggered::after {
	display: none;
}

.layout-category__more {
	display: inline-flex;
	align-items: center;
	margin-top: var(--gap);
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
	cursor: pointer;
}

.layout-category__more span {
	border-bottom: 1px dotted #a8a8a8;
}

.layout-category__more .icon-arrow {
	display: block;
	width: 9px;
	height: 9px;
	margin-left: 5px;
	fill: #a8a8a8;
	transition: transform .2s ease;
}

.layout-category__more.is-active .icon-arrow {
	transform: rotate(180deg);
}

.layout-category__subcategories {
	margin-bottom: var(--gap-extended);
}

.layout-category__content,.layout-category__sidebar {
	min-width: 0;
}

.layout-category__content.is-loading {
	opacity: .5;
	pointer-events: none;
}

.layout-category__sidebar {
	display: none;
}

.layout-category__sidebar>:not(:last-child) {
	margin-bottom: var(--gap-extended);
}

.layout-category__filters {
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.layout-category__controls {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: var(--gap-small);
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 1rem;
}

.layout-category__controls>:last-child {
	margin-left: auto;
}

.layout-category .product-view {
	display: none;
}

@media (min-width:480px) {
	.layout-category__controls {
		display: flex;
	}
}

@media (min-width:992px) {
	.layout-category__sidebar {
		display: block;
	}

	.layout-category__grid.has-sidebar {
		display: grid;
		grid-template-columns: 360px 1fr;
		grid-gap: 1rem;
	}

	.layout-category .product-view {
		display: grid;
	}

	.layout-category__filters-button.is-hidden {
		display: none;
	}
}

.layout-checkout__error {
	padding: 1rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	text-align: center;
}

.layout-checkout__success {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 0;
}

.layout-checkout__success-title {
	margin-bottom: var(--gap-small);
}

.layout-checkout__success-text {
	display: block;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap-extended);
	text-align: center;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-checkout__success-image {
	display: flex;
	justify-content: center;
	margin-bottom: var(--gap);
}

.layout-checkout__success-image .icon-shopping-cart {
	width: 180px;
	height: auto;
}

.layout-checkout__success-image .icon-shopping-cart .is-primary {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 20%));
}

.layout-checkout__success-image .icon-shopping-cart .is-secondary {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 40%));
}

.layout-checkout__success-image .icon-shopping-cart .is-main {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.layout-checkout__plugin-wrapper:not(:empty) {
	margin-bottom: var(--gap-small);
}

.layout-checkout__plugin-wrapper button,.layout-checkout__plugin-wrapper input[type=submit] {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	min-height: 36px;
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	line-height: 1.45em;
	font-family: inherit;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	transition: background-color .1s ease;
	overflow: hidden;
	cursor: pointer;
	color: hsl(var(--bh),var(--bs),var(--bl));
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	border: unset;
	margin: 0 auto;
}

.layout-checkout__plugin-wrapper button:hover,.layout-checkout__plugin-wrapper input[type=submit]:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 6%));
}

@media (min-width:768px) {
	.layout-checkout__error {
		padding: 3.5rem 1.5rem;
	}

	.layout-checkout__plugin-wrapper button,.layout-checkout__plugin-wrapper input[type=submit] {
		min-height: 40px;
	}
}

.layout-compare.is-loading {
	opacity: .5;
	pointer-events: none;
}

.layout-compare__container {
	position: relative;
}

.layout-compare__products {
	position: sticky;
	top: 0;
	display: grid;
	grid-gap: 1rem;
	padding: var(--gap-small) 0 var(--gap);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	transition: box-shadow .3s ease;
	z-index: 2;
}

.layout-compare__header {
	display: none;
	flex-direction: column;
	margin-bottom: var(--gap-extended);
}

.layout-compare__header>:not(:last-child) {
	margin-bottom: var(--gap-extended);
}

.layout-compare__radio {
	display: flex;
	flex-direction: column;
}

.layout-compare__radio>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.layout-compare__reset {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: var(--gap-small);
	align-items: center;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: pointer;
}

.layout-compare__reset:hover .layout-compare__reset-icon .core-cross {
	fill: #8f8f8f;
}

.layout-compare__reset-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	cursor: pointer;
}

.layout-compare__reset-icon .core-cross {
	display: block;
	width: 8px;
	height: 8px;
	fill: hsl(var(--th),var(--ts),var(--tl));
	transition: fill .25s ease;
}

.layout-compare__cards {
	min-width: 0;
}

.layout-compare__card {
	position: relative;
}

.layout-compare__slider-buttons {
	display: none;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.layout-compare__slider-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),var(--al));
	transition: background-color .25s ease;
	outline: 0;
	user-select: none;
	cursor: pointer;
}

.layout-compare__slider-button.swiper-button-lock {
	display: none;
}

.layout-compare__slider-button:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.layout-compare__slider-button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.layout-compare__slider-button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.layout-compare__slider-button .icon-arrow {
	display: block;
	width: 10px;
	height: 10px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.layout-compare__slider-button:not(:last-child) {
	margin-right: var(--gap-small);
}

.layout-compare__table {
	margin-top: var(--gap);
}

.layout-compare__feature {
	display: grid;
	grid-gap: 1rem;
	min-height: 1em;
	padding: .8rem 1.2rem;
	line-height: 1.45em;
	border-radius: var(--border-radius-small);
	transition: background-color .25s;
}

.layout-compare__feature.is-odd {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-compare__feature.is-even,.layout-profile__tabs>li.is-active>a,.layout-profile__tabs>li:hover>a {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.layout-compare__feature-header,.layout-compare__feature.is-same.is-hidden {
	display: none;
}

.layout-compare__feature.is-active .layout-compare__feature-item {
	-webkit-line-clamp: unset;
}

.layout-compare__feature-mobile-header {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .9em;
	font-weight: 600;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.layout-compare__feature-values {
	min-width: 0;
}

.layout-compare__feature-item {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.layout-compare__divider-header {
	display: flex;
	align-items: center;
	padding: .8rem 1.2rem;
	margin-top: var(--gap-extended);
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
	border-radius: var(--border-radius-small);
	cursor: pointer;
}

.layout-compare__divider-header.is-opened .layout-compare__divider-icon {
	transform: rotate(0);
}

.layout-compare__divider-name {
	font-weight: 600;
	font-size: .95em;
}

.layout-compare__divider-icon {
	margin-right: 1rem;
	transition: .2s ease;
	transform: rotate(-90deg);
}

.layout-compare__divider-icon .icon-arrow {
	display: block;
	width: 10px;
	height: 10px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.layout-compare__divider-content {
	display: none;
}

.layout-compare__divider-content.is-opened {
	display: block;
}

@media (min-width:768px) {
	.layout-compare__features {
		padding: 2rem;
	}
}

@media (min-width:992px) {
	.layout-compare__header {
		display: flex;
	}

	.layout-compare__feature-mobile-header,.layout-compare__mobile-header {
		display: none;
	}

	.layout-compare__feature-header {
		display: block;
	}

	.layout-compare__slider-buttons {
		display: flex;
	}

	.layout-compare__divider-name {
		font-size: 1em;
	}

	.layout-compare__feature,.layout-compare__products {
		grid-template-columns: 2fr 5fr;
	}

	.layout-compare__divider-header,.layout-compare__feature {
		padding: .8rem 1.6rem;
	}
}

@media (min-width:1100px) {
	.layout-compare__feature,.layout-compare__products {
		grid-template-columns: 1fr 3fr;
	}
}

.layout-error__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.layout-error__code {
	margin-bottom: var(--gap);
	font-size: var(--title-font-size);
	line-height: calc(1em + 12px);
	font-weight: 600;
}

.layout-error .icon-404 {
	width: 300px;
	height: 112px;
	margin-bottom: var(--gap);
}

.layout-error .icon-404__tile-0 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.layout-error .icon-404__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.layout-error .icon-404__tile-2 {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

@media (min-width:768px) {
	.layout-error .icon-404 {
		width: 500px;
		height: 187px;
	}
}

@media (min-width:992px) {
	.layout-error__code.is-bold {
		font-weight: 700;
	}
}

.layout-main {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-main__grid {
	display: grid;
	align-items: start;
}

.layout-main__grid.has-sidebar {
	grid-gap: 2rem;
}

.layout-main__content,.layout-main__sidebar {
	min-width: 0;
}

.layout-main__header {
	margin-bottom: var(--gap-extended);
	padding-bottom: 2rem;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.layout-main__header>:not(:last-child) {
	margin-bottom: var(--gap);
}

.layout-main__title {
	display: block;
	max-width: 800px;
	font-size: 26px;
	line-height: 1.45em;
	font-weight: 600;
}

.layout-main__subpages-wrapper {
	margin-bottom: var(--gap-extended);
}

.layout-main__subpages {
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1*var(--gap-small));
	margin-right: calc(-.5*var(--gap-small));
	margin-left: calc(-.5*var(--gap-small));
}

.layout-main__subpage {
	flex: 0 0 auto;
	padding-right: calc(var(--gap-small)*.5);
	padding-left: calc(var(--gap-small)*.5);
	margin-top: var(--gap-small);
	box-sizing: border-box;
}

.layout-main__subpage-link,.layout-my-order__pin input {
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.layout-main__subpage-link {
	display: flex;
	align-items: center;
	height: 42px;
	padding: .4rem 1rem;
	margin: 1px;
	border: 1px solid transparent;
	border-radius: var(--border-radius-normal);
	text-decoration: none;
	transition: .2s ease;
	outline: 0;
	cursor: pointer;
}

.layout-main__subpage-link:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	box-shadow: 0 0 1px 1px hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.layout-main__subpage-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

@media (max-width:479px) {
	.layout-main__subpage {
		width: 100%;
	}
}

@media (min-width:480px) {
	.layout-main__subpage-link {
		max-width: 340px;
	}
}

@media (min-width:768px) {
	.layout-main__title {
		font-size: 28px;
	}
}

@media (min-width:992px) {
	.layout-main__header {
		padding-bottom: unset;
		border-bottom: unset;
	}

	.layout-main__title {
		font-size: 30px;
	}

	.layout-main__title.is-bold {
		font-weight: 700;
	}

	.layout-main__grid.has-sidebar.is-left {
		grid-template-columns: 340px 1fr;
	}

	.layout-main__grid.has-sidebar.is-left .layout-main__sidebar {
		order: 1;
	}

	.layout-main__grid.has-sidebar.is-left .layout-main__content {
		order: 2;
	}

	.layout-main__grid.has-sidebar.is-right {
		grid-template-columns: 1fr 340px;
	}
}

@media (min-width:1300px) {
	.layout-main__title {
		font-size: 32px;
	}

	.layout-main__grid.has-sidebar {
		grid-gap: 3rem;
	}
}

.layout-maintain__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.layout-maintain .icon-maintain {
	width: 220px;
	height: 220px;
	margin-bottom: var(--gap);
}

.layout-maintain .icon-maintain__tile-0 {
	fill: hsla(var(--ah),var(--as),calc(var(--al) - 15%),.15);
}

.layout-maintain .icon-maintain__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 35%));
}

.layout-maintain .icon-maintain__tile-2 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.author-one.is-primary .author-one__image>svg,.layout-maintain .icon-maintain__tile-3 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 25%));
}

.layout-maintain .icon-maintain__tile-4 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

@media (min-width:768px) {
	.layout-maintain .icon-maintain {
		width: 280px;
		height: 280px;
	}
}

.layout-my-order__breadcrumbs {
	margin-bottom: var(--gap);
}

.layout-my-order__title {
	margin-bottom: var(--gap-extended);
}

.layout-my-order__pin-text {
	display: block;
	margin-bottom: var(--gap);
	line-height: 1.45em;
}

.layout-my-order__pin input {
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	display: block;
	max-width: 300px;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-my-order__pin input:focus,.layout-my-order__pin input:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.layout-my-order__pin input:focus {
	outline: 0;
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-my-order__pin input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-my-order__pin input.error,.layout-my-order__pin input.error:focus,.layout-my-order__pin input.error:hover,.layout-my-order__pin input.is-error,.layout-my-order__pin input.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.layout-my-order__pin input:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.layout-my-order__pin button {
	margin-top: var(--gap-small);
}

.layout-my-order__pin-error {
	display: block;
	margin-top: var(--gap-small);
	font-style: normal;
	font-size: 16px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-my-order__header.element {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: var(--gap);
	margin-top: -10px;
}

.layout-my-order__header.element>:not(:last-child) {
	margin-right: 10px;
}

.layout-my-order__header.element>* {
	margin-top: 10px;
}

.layout-my-order__badge,.layout-my-order__date {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 400;
}

.layout-my-order__date {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.layout-my-order__badge {
	padding: 6px 14px;
	border-radius: var(--border-radius-small);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-my-order__subtitle {
	margin-bottom: var(--gap);
	font-weight: 600;
}

.layout-my-order__body {
	line-height: 1.45em;
}

.layout-my-order__text {
	margin-bottom: var(--gap);
}

.layout-my-order__plugin>* {
	margin-bottom: var(--gap-small);
}

.layout-my-order__plugin button,.layout-my-order__plugin input[type=submit] {
	display: block;
	align-items: baseline;
	padding: 8px 16px;
	box-sizing: border-box;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: .2s ease;
	cursor: pointer;
}

.layout-my-order__plugin button:hover,.layout-my-order__plugin input[type=submit]:hover {
	box-shadow: 0 0 0 3px hsl(var(--ah),var(--as),var(--al));
}

.layout-my-order__container {
	overflow: auto;
	position: relative;
	padding-bottom: 10px;
}

.layout-my-order__container::-webkit-scrollbar {
	height: 8px;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.layout-my-order__container::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.layout-my-order__table {
	border-collapse: collapse;
	vertical-align: top;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.layout-my-order__table thead th {
	min-height: 1em;
	padding: .4rem 1.2rem;
	text-align: left;
	font-weight: 600;
	line-height: 1.45em;
	font-size: .95em;
}

.layout-my-order__table td,.product-affiliate__table td {
	min-height: 1em;
	padding: .4rem 1.2rem;
	box-sizing: border-box;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	line-height: 1.45em;
	font-size: .95em;
}

.layout-my-order__table td:first-of-type {
	min-width: 400px;
}

.layout-my-order__table td:not(:first-of-type) {
	white-space: nowrap;
}

.layout-my-order__table td.is-right {
	text-align: right;
}

.layout-my-order__table td.is-service {
	padding-left: var(--gap-extended);
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-my-order__table td strong {
	font-weight: 600;
}

@media (min-width:768px) {
	.layout-my-order {
		background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	}

	.layout-my-order__body {
		padding: 2rem;
		border-radius: var(--border-radius-normal);
		box-shadow: var(--shadow-light);
	}

	.layout-my-order__pin input {
		min-height: 46px;
	}

	.layout-my-order__body,.layout-my-order__plugin button,.layout-my-order__plugin input[type=submit] {
		background-color: hsl(var(--bh),var(--bs),var(--bl));
	}
}

.layout-order {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.layout-order__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 0;
}

.layout-order__empty-title {
	margin-bottom: var(--gap-small);
}

.layout-order__empty-text {
	display: block;
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap-extended);
	text-align: center;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-order__empty-image {
	display: flex;
	justify-content: center;
	margin-bottom: var(--gap-extended);
}

.layout-order__empty-image .icon-shopping-cart {
	width: 180px;
	height: auto;
}

.layout-order__empty-image .icon-shopping-cart .is-primary {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 20%));
}

.layout-order__empty-image .icon-shopping-cart .is-secondary {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 40%));
}

.layout-order__empty-image .icon-shopping-cart .is-main {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.layout-order__page {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1rem;
	align-items: start;
	isolation: isolate;
}

.layout-order__column {
	min-width: 0;
}

.layout-order__section-header {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 1rem;
	align-items: center;
	padding-bottom: var(--gap-small);
	margin-bottom: var(--gap);
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.layout-order__subtitle {
	display: block;
	font-size: var(--subtitle-font-size);
	font-weight: 600;
	line-height: 1.45em;
}

.layout-order__clear {
	display: grid;
	grid-template-columns: auto auto;
	grid-gap: 5px;
	align-items: center;
	font-size: .95em;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
	cursor: pointer;
}

.layout-order__back .icon-minus-alter,.layout-order__clear .icon-cross-alter {
	display: block;
	width: 25px;
	height: 25px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
	transition: .2s ease;
}

.layout-order__back:hover .icon-minus-alter,.layout-order__clear:hover .icon-cross-alter {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 18%));
}

.layout-order__section-footer {
	display: flex;
	flex-direction: column;
	padding-top: var(--gap);
	margin-top: var(--gap);
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.layout-order__back {
	display: flex;
	align-items: center;
	margin-left: auto;
	text-decoration: none;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
	cursor: pointer;
}

.layout-order__back .icon-minus-alter {
	margin-right: 5px;
}

.layout-order__phones {
	padding: 1rem;
	margin-top: var(--gap);
	border-radius: var(--border-radius-normal);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.layout-order__phones-title {
	display: block;
	margin-bottom: var(--gap-small);
	line-height: 1.45em;
	font-weight: 600;
}

.layout-order__contact {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 5px;
	font-size: .95em;
}

.layout-order__contact>.icon-phone-alter {
	display: block;
	width: 20px;
	height: 20px;
	margin-right: var(--gap-small);
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-order__phone {
	display: block;
	margin-right: var(--gap-small);
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.layout-order__phone-text {
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-order__cross {
	margin-top: var(--gap);
}

.layout-order__cross-wrapper {
	position: relative;
	margin-top: var(--gap-small);
}

.layout-order__cross-slide {
	user-select: none;
}

.layout-order__slider-buttons {
	position: absolute;
	right: 0;
	bottom: calc(100% + var(--gap-small));
	display: none;
	align-items: center;
}

.layout-order__slider-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),var(--al));
	transition: background-color .25s ease;
	outline: 0;
	user-select: none;
	cursor: pointer;
}

.layout-order__slider-button.swiper-button-lock {
	display: none;
}

.layout-order__slider-button:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.layout-order__slider-button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.layout-order__slider-button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.layout-order__slider-button .icon-arrow {
	display: block;
	width: 10px;
	height: 10px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.layout-order__slider-button:not(:last-child) {
	margin-right: 8px;
}

@media (min-width:1200px) {
	.layout-order {
		background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
		border-top: unset;
	}

	.layout-order__page {
		grid-template-columns: 1fr 1fr;
	}

	.layout-order__section {
		padding: 1rem;
		border-radius: var(--border-radius-normal);
		border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
		background-color: hsl(var(--bh),var(--bs),var(--bl));
		transition: box-shadow .3s ease;
	}

	.layout-order__section:hover {
		box-shadow: var(--shadow-card);
		border-color: hsl(var(--bh),var(--bs),var(--bl));
	}

	.layout-order__slider-buttons {
		display: flex;
	}
}

.layout-page {
	padding: 1rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	text-align: center;
}

@media (min-width:768px) {
	.layout-page {
		padding: 3.5rem 1.5rem;
	}
}

.layout-product-page__navigation {
	margin-bottom: var(--gap-extended);
}

.layout-profile__breadcrumbs {
	margin-bottom: var(--gap);
}

.layout-profile__title {
	margin-bottom: var(--gap-extended);
}

.layout-profile__grid {
	display: grid;
	grid-gap: var(--gap);
	align-items: flex-start;
}

.layout-profile__tabs {
	order: 1;
	padding: var(--gap-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-normal);
}

.layout-profile__tabs>:not(:last-child) {
	margin-bottom: 2px;
}

.layout-profile__tabs>li {
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.layout-profile__tabs>li>a {
	display: block;
	width: 100%;
	padding: .6rem 1.2rem;
	text-decoration: none;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: background-color .1s ease;
	border-radius: var(--border-radius-small);
}

.layout-profile__container,.layout-profile__content {
	order: 2;
	min-width: 0;
}

.layout-profile__header {
	display: grid;
	grid-gap: var(--gap);
	align-items: flex-start;
	margin-bottom: var(--gap);
}

.layout-profile__user.is-grid {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-gap: 1rem;
	align-items: center;
}

.layout-profile__user-name {
	font-weight: 600;
	font-size: var(--name-font-size);
	line-height: 1.45em;
}

.layout-profile__logout {
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.layout-profile__buttons {
	display: flex;
	align-items: center;
	margin-top: var(--gap-extended);
}

.layout-profile__buttons>:not(:last-child) {
	margin-right: var(--gap-small);
}

.layout-profile__button {
	display: block;
	align-items: baseline;
	padding: 8px 16px;
	box-sizing: border-box;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: .2s ease;
	cursor: pointer;
}

.layout-profile__button:hover {
	box-shadow: 0 0 0 3px hsl(var(--ah),var(--as),var(--al));
}

.layout-profile__hint {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	margin-bottom: var(--gap-extended);
	border-radius: var(--border-radius-normal);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.layout-profile__close {
	position: relative;
	border: unset;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
	cursor: pointer;
	width: 26px;
	height: 26px;
}

.layout-profile__close:after,.layout-profile__close:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 2px;
	background-color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .3;
	transition: opacity .3s ease;
	appearance: none;
}

.layout-profile__close:before {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.layout-profile__close:after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.layout-profile__close:focus::after,.layout-profile__close:focus::before,.layout-profile__close:hover::after,.layout-profile__close:hover::before {
	opacity: 1;
}

.layout-profile__data.is-hidden,.layout-profile__form.is-hidden {
	display: none;
}

.layout-profile__list {
	margin-bottom: var(--gap-extended);
}

.layout-profile__item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-gap: 10px;
	align-items: flex-start;
	font-size: .95em;
	line-height: 1.45em;
}

.layout-profile__adapters>:not(:last-child),.layout-profile__item:not(:last-of-type) {
	margin-bottom: 1rem;
}

.layout-profile__image img,.layout-profile__image svg {
	display: block;
	width: 100%;
	max-width: 80px;
	height: auto;
	overflow: hidden;
	border-radius: 50%;
}

.layout-profile__image svg {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.layout-profile__line {
	height: 1px;
	min-width: 50px;
	margin-top: 12px;
	background: linear-gradient(90deg,hsl(var(--ah),var(--as),calc(var(--al) - 15%)) 33%,#0000 0) repeat-x bottom;
	background-size: 6px 1px;
}

.layout-profile__value {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
	text-align: right;
}

.layout-profile__link,.layout-profile__value a {
	text-decoration: underline;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.layout-profile__value em {
	font-style: normal;
	color: #37a834;
}

.layout-profile__link {
	font-size: .95em;
	cursor: pointer;
}

.layout-profile__adapters {
	margin-top: var(--gap-extended);
}

.layout-profile__adapters-text {
	display: block;
	line-height: 1.45em;
}

.layout-profile__connected-adapters,.layout-profile__other-adapters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: -10px;
}

.layout-profile__adapters-item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	margin-top: 10px;
}

.layout-profile__adapters-item>svg {
	display: block;
	width: 33px;
	height: 33px;
}

.layout-profile__orders>:not(:last-child) {
	margin-bottom: var(--gap);
}

@media (min-width:768px) {
	.layout-profile {
		background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	}

	.layout-profile__content,.layout-profile__tabs {
		background-color: hsl(var(--bh),var(--bs),var(--bl));
		box-shadow: var(--shadow-light);
	}

	.layout-profile__tabs {
		border: unset;
	}

	.layout-profile__content {
		padding: 2rem;
		border-radius: var(--border-radius-normal);
	}

	.layout-profile__header {
		grid-template-columns: 1fr auto;
		grid-gap: 2rem;
		margin-bottom: var(--gap-extended);
	}

	.layout-profile__button {
		background-color: transparent;
	}
}

@media (min-width:1200px) {
	.layout-profile__grid {
		grid-template-columns: 1fr 350px;
	}

	.layout-profile__tabs {
		order: 2;
	}

	.layout-profile__container,.layout-profile__content {
		order: 1;
	}
}

.layout-reviews__navigation {
	margin-bottom: var(--gap-extended);
}

.layout-reviews__grid {
	display: grid;
	align-items: start;
	grid-gap: 1rem;
}

@media (min-width:992px) {
	.layout-reviews {
		background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	}

	.layout-reviews__content {
		padding: 2rem;
		border-radius: var(--border-radius-normal);
		background-color: hsl(var(--bh),var(--bs),var(--bl));
	}
}

@media (min-width:1400px) {
	.layout-reviews__grid {
		grid-template-columns: 1fr 350px;
	}

	.layout-reviews__content {
		padding: 2.6rem;
	}
}

.layout-search.is-loading {
	opacity: .5;
	pointer-events: none;
}

.layout-search__header {
	display: inline-flex;
	flex-wrap: wrap;
	margin-bottom: var(--gap-extended);
}

.layout-search__header>:not(:last-child) {
	margin-right: var(--gap-small);
}

.layout-search__count {
	margin-top: .5em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.layout-search__reset-wrapper {
	margin-bottom: var(--gap);
}

.layout-search__reset {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	grid-gap: var(--gap-small);
	align-items: center;
	margin-right: auto;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: pointer;
}

.layout-search__reset:hover .layout-search__reset-icon .core-cross {
	fill: #8f8f8f;
}

.layout-search__reset-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	cursor: pointer;
}

.layout-search__reset-icon .core-cross {
	display: block;
	width: 8px;
	height: 8px;
	fill: hsl(var(--th),var(--ts),var(--tl));
	transition: fill .25s ease;
}

.layout-thumbs {
	display: grid;
}

.layout-thumbs__thumbs {
	display: grid;
	grid-gap: 1rem;
}

.layout-thumbs__thumbs:not(.is-mobile-grid) {
	grid-template-columns: minmax(240px,350px);
}

.layout-thumbs__thumbs.is-mobile-grid {
	grid-template-columns: repeat(2,1fr);
}

.layout-thumbs__thumbs.is-mobile-grid .layout-thumbs__separator {
	grid-column: span 2;
}

.layout-thumbs__thumbs.is-list,.layout-thumbs__thumbs.is-table,.layout-thumbs__thumbs.is-thumbs {
	margin: 0 auto;
}

.layout-thumbs__separator {
	grid-column: span 1;
	position: relative;
	padding: 1rem 0;
	text-align: center;
}

.layout-thumbs__separator::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	margin: auto 0;
	background: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.layout-thumbs__separator span {
	position: relative;
	padding: 0 1rem;
	background: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
	font-size: 15px;
}

.layout-thumbs__reset {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: var(--gap-small) auto 0;
	font-size: .95em;
	line-height: 1.45em;
	cursor: pointer;
}

.layout-thumbs__reset .icon-reload {
	display: block;
	width: 15px;
	height: 15px;
	margin-right: 5px;
	fill: #fd6363;
}

@media (min-width:580px) {
	.layout-thumbs__thumbs.is-list,.layout-thumbs__thumbs.is-table {
		margin: unset;
	}

	.layout-thumbs__thumbs.is-thumbs.has-sidebar,.layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) {
		grid-template-columns: repeat(2,minmax(240px,350px));
	}

	.layout-thumbs__thumbs.is-thumbs.has-sidebar .layout-thumbs__separator,.layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) .layout-thumbs__separator {
		grid-column: span 2;
	}

	.layout-thumbs__thumbs.is-list.has-sidebar,.layout-thumbs__thumbs.is-list:not(.has-sidebar),.layout-thumbs__thumbs.is-table.has-sidebar,.layout-thumbs__thumbs.is-table:not(.has-sidebar) {
		grid-template-columns: repeat(1,1fr);
	}

	.layout-thumbs__thumbs.is-list.has-sidebar .layout-thumbs__separator,.layout-thumbs__thumbs.is-list:not(.has-sidebar) .layout-thumbs__separator,.layout-thumbs__thumbs.is-table.has-sidebar .layout-thumbs__separator,.layout-thumbs__thumbs.is-table:not(.has-sidebar) .layout-thumbs__separator {
		grid-column: span 1;
	}
}

@media (min-width:900px) {
	.layout-thumbs__thumbs.is-thumbs.has-sidebar,.layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) {
		grid-template-columns: repeat(3,minmax(240px,350px));
	}

	.layout-thumbs__thumbs.is-thumbs.has-sidebar .layout-thumbs__separator,.layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) .layout-thumbs__separator {
		grid-column: span 3;
	}
}

@media (min-width:992px) {
	.layout-thumbs__thumbs.is-thumbs.has-sidebar {
		grid-template-columns: repeat(2,minmax(240px,350px));
	}

	.layout-thumbs__thumbs.is-thumbs.has-sidebar .layout-thumbs__separator {
		grid-column: span 2;
	}
}

@media (min-width:1350px) {
	.layout-thumbs__thumbs.is-thumbs.has-sidebar {
		grid-template-columns: repeat(3,minmax(240px,350px));
	}

	.layout-thumbs__thumbs.is-thumbs.has-sidebar .layout-thumbs__separator {
		grid-column: span 3;
	}

	.layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) {
		grid-template-columns: repeat(4,minmax(240px,350px));
	}

	.layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) .layout-thumbs__separator {
		grid-column: span 4;
	}
}

@media (min-width:1500px) {
	.layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) {
		grid-template-columns: repeat(5,minmax(240px,350px));
	}

	.layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) .layout-thumbs__separator {
		grid-column: span 5;
	}
}

.plugin-search-pro__field {
	width: 100%;
}

.plugin-search-pro__field-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 12%));
	background: hsl(var(--bh),var(--bs),var(--bl));
	transition: border-color .25s ease,box-shadow .25s ease;
	z-index: 140;
}

.plugin-search-pro__field-container.js-searchpro__field-container--focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.plugin-search-pro__field-container.js-searchpro__field-container--focus .plugin-search-pro__field-button {
	background: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.plugin-search-pro__field-container.js-searchpro__field-container--loading .plugin-search-pro__loader {
	display: flex;
}

.plugin-search-pro__loader {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 100%;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.plugin-search-pro__field-input-container {
	flex-grow: 1;
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.plugin-search-pro__field-input {
	padding: 0 50px 0 20px;
	height: 100%;
	width: 100%;
	border: 0;
	background: 0 0;
	box-shadow: none;
	font-size: .95em;
	font-family: inherit;
	outline: 0;
}

.plugin-search-pro__field-input::placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.plugin-search-pro__field-clear-button {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 100%;
	margin: auto;
	cursor: pointer;
}

.plugin-search-pro__field-clear-button .core-cross {
	display: block;
	width: 10px;
	height: 10px;
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.plugin-search-pro__field-categories-container {
	position: relative;
	display: none;
	height: 100%;
	user-select: none;
}

.plugin-search-pro__field-categories-label {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 160px;
	height: 100%;
	padding: 0 20px;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	transition: background-color .3s;
	cursor: pointer;
}

.plugin-search-pro__field-categories-label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	height: 70%;
	margin: auto;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	transition: background-color .25s ease,height .25s ease;
}

.plugin-search-pro__field-categories-label:hover {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.plugin-search-pro__field-categories-label:hover::before {
	height: 100%;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.plugin-search-pro__field-categories-label span {
	display: block;
	max-width: 150px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.plugin-search-pro__field-categories-label .icon-more {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	fill: #a8a8a8;
}

.plugin-search-pro__field-categories-list {
	position: absolute;
	right: 0;
	display: none;
	width: 280px;
	max-height: 400px;
	margin: 7px 0 0;
	padding: 0;
	border-radius: var(--border-radius-small);
	background: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	overflow-y: auto;
	z-index: 30;
}

.plugin-search-pro__field-category,.plugin-search-pro__field-subcategory {
	padding: 7px 20px;
	text-overflow: ellipsis;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	white-space: nowrap;
	transition: color .25s ease;
	overflow: hidden;
	cursor: pointer;
}

.plugin-search-pro__field-category.selected,.plugin-search-pro__field-subcategory.selected {
	font-weight: 500;
}

.plugin-search-pro__field-category:hover,.plugin-search-pro__field-subcategory:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.plugin-search-pro__field-category span,.plugin-search-pro__field-subcategory span {
	text-overflow: ellipsis;
	overflow: hidden;
}

.plugin-search-pro__field-category-all {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.plugin-search-pro__field-category:first-child {
	padding-top: 20px;
}

.plugin-search-pro__field-category:last-child,.plugin-search-pro__field-subcategories-list:last-child {
	padding-bottom: 20px;
}

.plugin-search-pro__field-subcategories-list {
	margin: 0;
	padding: 0;
}

.plugin-search-pro__field-subcategory {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 30px;
}

.plugin-search-pro__field-subcategory::before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.plugin-search-pro__field-subcategory:hover::before {
	background-color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.plugin-search-pro__field-subcategory span {
	padding-left: 15px;
}

.plugin-search-pro__field-button-container {
	height: 100%;
}

.plugin-search-pro__field-button {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 20px;
	background: hsl(var(--ah),var(--as),calc(var(--al) - 6%));
	font-size: .95em;
	transition: background-color .25s ease,color .25s ease;
	user-select: none;
	cursor: pointer;
	z-index: 1;
}

.plugin-search-pro__dropdown {
	position: relative;
	margin-top: 5px;
	max-height: 600px;
	background: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	border-radius: var(--border-radius-small);
	overflow-y: auto;
	z-index: 30;
}

.plugin-search-pro__dropdown-group-title {
	padding: 10px 20px;
	text-transform: uppercase;
	font-size: 12px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.plugin-search-pro__dropdown-entity {
	display: block;
	padding: 7px 20px;
	text-overflow: ellipsis;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .25s ease,color .25s ease;
	overflow: hidden;
}

.plugin-search-pro__dropdown-entity.js-searchpro__dropdown-entity--active,.plugin-search-pro__dropdown-entity:hover {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.card-four:hover .card-four__image-container::after,.card-one__image-wrapper:hover .card-one__image-container::after,.card-seven__image-wrapper:hover .card-seven__image-container::after,.plugin-search-pro__dropdown-entity.js-searchpro__dropdown-entity--active .plugin-search-pro__dropdown-entity_delete-button,.plugin-search-pro__dropdown-entity:hover .plugin-search-pro__dropdown-entity_delete-button {
	opacity: 1;
}

.plugin-search-pro__dropdown-entity_subname {
	margin-left: 10px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	font-size: 12px;
}

.plugin-search-pro__dropdown-entity_delete-button {
	float: right;
	margin-top: 3px;
	font-size: 12px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	transition: opacity .25s ease,color .25s ease;
	opacity: 0;
}

.plugin-search-pro__dropdown-entity_delete-button:hover,.plugin-search-pro__page-description a:hover {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.plugin-search-pro__highlighted {
	font-weight: 500;
}

.plugin-search-pro__dropdown-entity_image-container {
	float: left;
	margin-right: 10px;
}

.plugin-search-pro__dropdown-entity_image,.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-image-section img {
	border-radius: var(--border-radius-small);
}

.plugin-search-pro__dropdown-entity_name {
	font-size: .95em;
	text-overflow: ellipsis;
	overflow: hidden;
}

.plugin-search-pro__dropdown-entity_price-container {
	margin-top: 5px;
}

.plugin-search-pro__dropdown-entity_price {
	font-size: .95em;
	font-weight: 500;
}

.plugin-search-pro__dropdown-entity_compare-price {
	margin-left: 5px;
	font-size: .8em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	text-decoration: line-through;
}

.plugin-search-pro__dropdown-view-all {
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.plugin-search-pro__dropdown-view-all-link {
	display: block;
	padding: 15px 0;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	font-size: .95em;
	text-align: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: background-color .25s ease;
}

.plugin-search-pro__dropdown-view-all-link:hover {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.plugin-search-pro__dropdown-view-all-count {
	margin-left: 5px;
}

.plugin-search-pro__center {
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: var(--frame-padding-mobile);
	box-sizing: border-box;
}

.plugin-search-pro__page-description {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	line-height: 1.45em;
}

.plugin-search-pro__page-description:not(:empty) {
	margin-top: 5px;
}

.plugin-search-pro__page-description a {
	text-decoration: none;
	color: hsl(var(--ph),var(--ps),var(--pl));
	transition: color .25s ease;
}

.plugin-search-pro__categories {
	margin-top: var(--gap);
}

.plugin-search-pro__controls {
	display: flex;
	gap: var(--gap-small);
	justify-content: flex-start;
	align-items: center;
	margin-top: var(--gap);
}

.plugin-search-pro__form {
	padding-bottom: 110px;
}

.plugin-search-pro__filter-controls {
	position: fixed;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 1rem 1.2rem;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: 0 -1px 7px rgba(0,0,0,.1);
	z-index: 1;
}

.plugin-search-pro__filter-controls .plugin-search-pro__submit.is-wide {
	width: 100%;
	max-width: unset;
}

.plugin-search-pro__reset {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: var(--gap-small) auto 0;
	font-size: .95em;
	line-height: 1.45em;
	cursor: pointer;
}

.plugin-search-pro__reset .icon-reload {
	display: block;
	width: 15px;
	height: 15px;
	margin-right: 5px;
	fill: #fd6363;
}

@media (min-width:768px) {
	.plugin-search-pro__field-categories-container {
		display: block;
	}

	.plugin-search-pro__center {
		padding-top: var(--frame-padding);
	}

	.plugin-search-pro__field-container {
		height: 42px;
	}

	.plugin-search-pro__field-button {
		font-size: 1em;
	}
}

.adapters {
	max-width: 360px;
}

.adapters--gap {
	margin-bottom: var(--gap);
}

.adapters__list>:not(:last-child) {
	margin-bottom: 1rem;
}

.adapters__link {
	position: relative;
	display: grid;
	align-items: center;
	padding: .5rem 2.5rem;
	min-height: 46px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),var(--al));
	text-decoration: none;
	text-align: center;
	color: inherit;
	font-weight: 600;
	font-size: .95em;
	line-height: 1.45em;
	transition: background-color .25s ease;
}

.adapters__link:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.adapters__link.is-rounded {
	border-radius: 25px;
}

.adapters__link>svg {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
}

.address-one {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.address-one--gap {
	margin-bottom: var(--gap);
}

.address-one .icon-direction {
	display: block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	fill: currentColor;
	opacity: .5;
}

.address-one__map-wrapper {
	position: relative;
}

.address-one__map {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	border: 1px solid hsl(var(--ah),var(--as),var(--al));
	filter: grayscale(.5);
}

.address-one__map.is-active {
	height: 100vh;
}

.address-one__container {
	position: relative;
	display: grid;
	grid-gap: var(--gap-small);
}

.address-one__city {
	line-height: 1.45em;
	font-size: .95em;
}

.address-one__text {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 10px;
	padding: 3px 10px;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-light);
	line-height: 1.45em;
	font-size: 15px;
}

.address-one__expand {
	position: absolute;
	top: 0;
	right: 0;
}

.address-one__button {
	position: absolute;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: calc(0px - 40px/2);
	border-radius: 50%;
	transition: opacity .3s ease-in-out,border-radius .3s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	user-select: none;
	cursor: pointer;
	z-index: 10;
	display: flex;
}

.address-one__button:hover {
	border-radius: var(--border-radius-large);
}

.address-one__button.is-next {
	right: 1.4rem;
}

.address-one__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.address-one__button.is-prev {
	left: 1.4rem;
}

.address-one__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.address-one__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.address-one__button.is-active {
	display: none;
}

.address-one__button.is-next {
	right: var(--gap-small);
}

.address-one__button.is-prev {
	left: var(--gap-small);
}

.affiliate {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.affiliate--gap {
	margin-bottom: var(--gap);
}

.affiliate.is-hidden {
	display: none;
}

.affiliate__text {
	font-size: 15px;
}

.affiliate .icon-bonus {
	display: block;
	width: 14px;
	height: 14px;
	margin-right: 10px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.affiliate__rate {
	display: inline-block;
	margin: 0 3px;
}

.author-one {
	display: flex;
	align-items: center;
	max-width: 500px;
}

.author-one--gap {
	margin-bottom: var(--gap);
}

.author-one.is-primary .author-one__image {
	border-color: hsl(var(--ah),var(--as),var(--al));
}

.author-one.is-secondary {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.author-one.is-secondary .author-one__image {
	border-color: hsl(var(--ih),var(--is),calc(var(--il) + 25%));
}

.author-one.is-secondary .author-one__image>svg {
	fill: hsl(var(--ih),var(--is),calc(var(--il) + 15%));
}

.author-one.is-small .author-one__image {
	border-width: 2px;
}

.author-one.is-small .author-one__image>img,.author-one.is-small .author-one__image>svg {
	width: 24px;
	height: 24px;
}

.author-one.is-small .author-one__name {
	font-size: .95em;
	font-weight: 600;
}

.author-one.is-medium .author-one__image {
	border-width: 3px;
}

.author-one.is-medium .author-one__image>img,.author-one.is-medium .author-one__image>svg {
	width: 35px;
	height: 35px;
}

.author-one__image {
	flex-shrink: 0;
	display: block;
	margin-right: var(--gap-small);
	border-style: solid;
	box-sizing: border-box;
	border-radius: 50%;
	overflow: hidden;
}

.author-one__image>svg {
	display: block;
}

.author-one__image>img {
	display: block;
	height: auto;
	border-radius: 50%;
}

.author-one__name {
	text-decoration: none;
	color: inherit;
	line-height: 1.45em;
}

.badge-five {
	display: inline-block;
}

.badge-five--gap {
	margin-bottom: var(--gap);
}

.badge-five .badge {
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.2em;
	border-radius: var(--border-radius-small);
}

.badge-five .badge--bestseller,.badge-five .badge--custom,.badge-five .badge--lowprice,.badge-five .badge--new {
	white-space: nowrap;
}

.badge-five .badge--custom {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-five .badge--bestseller,.badge-five .badge--lowprice {
	background-color: #fd6363;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-five .badge--lowprice {
	background-color: #fa0;
}

.badge-five .badge--discount,.badge-five .badge--new {
	background-color: #37a834;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-five .badge--discount {
	background-color: #fa0;
	font-weight: 500;
}

.badge-five.is-tiny .badge {
	padding: 3px 8px;
	font-size: .8em;
}

.badge-five.is-small .badge {
	padding: 3px 14px;
	font-size: .9em;
}

.badge-five.is-medium .badge {
	padding: 6px 16px;
	font-size: .95em;
}

.badge-five.is-large .badge {
	padding: 8px 20px;
}

.badge-four {
	display: inline-block;
}

.badge-four--gap {
	margin-bottom: var(--gap);
}

.badge-four .badge {
	line-height: 1.2em;
	border-radius: var(--border-radius-small);
}

.badge-four .badge--bestseller,.badge-four .badge--custom,.badge-four .badge--discount,.badge-four .badge--lowprice,.badge-four .badge--new {
	white-space: nowrap;
	background-color: hsla(var(--th),var(--ts),var(--tl),.5);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-four .badge>svg {
	fill: currentColor;
}

.badge-four.is-tiny .badge {
	padding: 3px 8px;
	font-size: 13px;
}

.badge-four.is-tiny .badge>svg {
	width: 12px;
	height: 12px;
	margin-right: 3px;
}

.badge-four.is-small .badge {
	padding: 4px 12px;
	font-size: 14px;
}

.badge-four.is-small .badge>svg {
	width: 13px;
	height: 13px;
	margin-right: 3px;
}

.badge-four.is-medium .badge {
	padding: 6px 14px;
	font-size: 16px;
}

.badge-four.is-medium .badge>svg {
	width: 14px;
	height: 14px;
	margin-right: 5px;
}

.badge-four.is-large .badge {
	padding: 8px 20px;
}

.badge-four.is-large .badge>svg {
	width: 15px;
	height: 15px;
	margin-right: 5px;
}

.badge-one {
	display: inline-block;
}

.badge-one--gap {
	margin-bottom: var(--gap);
}

.badge-one .badge {
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.2em;
}

.badge-one .badge--bestseller,.badge-one .badge--custom,.badge-one .badge--lowprice,.badge-one .badge--new {
	white-space: nowrap;
}

.badge-one .badge--custom {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.badge-one .badge--bestseller,.badge-one .badge--lowprice {
	background-color: #fd6363;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-one .badge--lowprice {
	background-color: #fa0;
}

.badge-one .badge--discount,.badge-one .badge--new {
	background-color: #37a834;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-one .badge--discount {
	background-color: #fa0;
	font-weight: 500;
}

.badge-one.is-tiny .badge {
	padding: 3px 8px;
	border-radius: 30px;
	font-size: .8em;
}

.badge-one.is-small .badge {
	padding: 3px 14px;
	border-radius: 30px;
	font-size: .9em;
}

.badge-one.is-medium .badge {
	padding: 6px 16px;
	border-radius: 30px;
	font-size: .95em;
}

.badge-one.is-large .badge {
	padding: 8px 20px;
	border-radius: 30px;
}

.badge-three {
	display: inline-block;
}

.badge-three--gap {
	margin-bottom: var(--gap);
}

.badge-three .badge {
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.2em;
	border-radius: var(--border-radius-small);
}

.badge-three .badge--bestseller,.badge-three .badge--custom,.badge-three .badge--lowprice,.badge-three .badge--new {
	white-space: nowrap;
}

.badge-three .badge--custom {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.badge-three .badge--bestseller,.badge-three .badge--lowprice {
	background-color: #fd6363;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-three .badge--bestseller>svg,.badge-three .badge--lowprice>svg,.badge-three .badge--new>svg {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-three .badge--lowprice {
	background-color: #fa0;
}

.badge-three .badge--discount,.badge-three .badge--new {
	background-color: #37a834;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-three .badge--discount {
	background-color: #fa0;
	font-weight: 500;
}

.badge-three.is-tiny .badge {
	padding: 3px 8px;
	font-size: 13px;
}

.badge-three.is-tiny .badge>svg {
	width: 12px;
	height: 12px;
	margin-right: 3px;
}

.badge-three.is-small .badge {
	padding: 4px 12px;
	font-size: 14px;
}

.badge-three.is-small .badge>svg {
	width: 13px;
	height: 13px;
	margin-right: 3px;
}

.badge-three.is-medium .badge {
	padding: 6px 14px;
	font-size: 16px;
}

.badge-three.is-medium .badge>svg {
	width: 14px;
	height: 14px;
	margin-right: 5px;
}

.badge-three.is-large .badge {
	padding: 8px 20px;
}

.badge-three.is-large .badge>svg {
	width: 15px;
	height: 15px;
	margin-right: 5px;
}

.badge-two {
	display: inline-block;
}

.badge-two--gap {
	margin-bottom: var(--gap);
}

.badge-two .badge {
	line-height: 1.2em;
}

.badge-two .badge--bestseller,.badge-two .badge--custom,.badge-two .badge--discount,.badge-two .badge--lowprice,.badge-two .badge--new {
	white-space: nowrap;
	background-color: hsla(var(--ah),var(--as),var(--al),.2);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.badge-two.is-tiny .badge {
	padding: 3px 8px;
	border-radius: var(--border-radius-small);
	font-size: .8em;
}

.badge-two.is-medium .badge,.badge-two.is-small .badge {
	padding: 3px 14px;
	border-radius: var(--border-radius-small);
	font-size: .9em;
}

.badge-two.is-medium .badge {
	padding: 4px 16px;
	font-size: .95em;
}

.badge-two.is-large .badge {
	padding: 6px 18px;
	border-radius: var(--border-radius-small);
}

.banner-one {
	max-width: 1200px;
}

.banner-one--gap {
	margin-bottom: var(--gap);
}

.banner-one__image-container {
	position: relative;
	border-radius: var(--border-radius-large);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	overflow: hidden;
	isolation: isolate;
}

.banner-one__image-container.is-mobile {
	display: block;
}

.banner-one__image-container:not(.is-mobile) {
	display: none;
}

.banner-one__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	transition: all 1s cubic-bezier(.22,1,.36,1);
	object-fit: cover;
}

.banner-one__sticker {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

@media (min-width:768px) {
	.banner-one__image-container.is-mobile {
		display: none;
	}

	.banner-one__image-container:not(.is-mobile) {
		display: block;
	}
}

.brand-item {
	position: relative;
	display: grid;
	grid-template-rows: 1fr auto;
	height: 100%;
	margin-bottom: -1px;
	margin-left: -1px;
	transition: .2s ease;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.brand-item:hover {
	z-index: 5;
}

.brand-item:focus {
	outline: 0;
}

.brand-item:hover {
	box-shadow: var(--shadow-card);
}

.brand-item--gap {
	margin-bottom: var(--gap);
}

.brand-item.is-primary {
	border: 1px solid hsl(var(--ah),var(--as),var(--al));
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.brand-item.is-secondary,.brand-item.is-semitone {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.brand-item.is-secondary {
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.brand-item.is-semitone {
	border: 1px solid hsl(var(--ah),var(--as),var(--al));
}

.brand-item__image,.brand-item__name {
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-item__image {
	padding: 2rem 2rem 1rem;
	box-sizing: border-box;
}

.brand-item__image img {
	max-width: 100%;
	max-height: 100px;
	height: auto;
}

.brand-item__name {
	padding: 1rem 2rem;
	text-align: center;
}

.breadcrumbs-one {
	position: relative;
	display: flex;
	align-items: center;
	font-size: .95em;
	line-height: .95em;
}

.breadcrumbs-one>:not(:last-child) {
	margin-right: 10px;
}

.breadcrumbs-one__wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.breadcrumbs-one__wrapper--gap {
	margin-bottom: var(--gap-extended);
}

.breadcrumbs-one__item {
	flex-shrink: 0;
}

.breadcrumbs-one__item:hover .breadcrumbs-one__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.breadcrumbs-one__link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: .3s ease;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.breadcrumbs-one__link.is-disabled {
	cursor: default;
}

.breadcrumbs-one__link:focus {
	outline: 0;
}

.breadcrumbs-one__link .icon-home {
	width: 20px;
	height: 20px;
	margin-right: var(--gap-small);
	transition: background-color .3s ease;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.breadcrumbs-one__link .icon-arrow {
	display: block;
	width: 10px;
	height: 10px;
	margin-left: var(--gap-small);
	transform: rotate(-90deg);
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.breadcrumbs-one__dropdown-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	padding-top: var(--gap);
}

.breadcrumbs-one__dropdown {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	max-width: 400px;
	min-width: 160px;
	padding: .5rem;
	border-radius: var(--border-radius-normal);
}

.breadcrumbs-one__dropdown::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	left: 1.5rem;
}

.breadcrumbs-one__sub-link {
	display: block;
	padding: .4rem 1rem .4rem .9rem;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	line-height: 1.45em;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color .1s ease;
	border-radius: var(--border-radius-small);
}

.breadcrumbs-one__sub-link:hover,.catalog-four__dropdown-item>a:hover,.catalog-four__floating-item>a:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

@media (max-width:767px) {
	.breadcrumbs-one__dropdown-wrapper {
		display: none;
	}

	.breadcrumbs-one__wrapper {
		flex-wrap: nowrap;
		white-space: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}

	.breadcrumbs-one__wrapper::-webkit-scrollbar {
		display: none;
		background-color: transparent;
	}

	.breadcrumbs-one__wrapper::-webkit-scrollbar-thumb {
		background: 0 0;
	}
}

@media (min-width:768px) {
	.breadcrumbs-one {
		flex-wrap: wrap;
		margin-top: -1rem;
	}

	.breadcrumbs-one__item {
		margin-top: 1rem;
	}

	.breadcrumbs-one__link>span {
		max-width: 350px;
		line-height: 1.2em;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
}

.bungle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.bungle--gap {
	margin-bottom: var(--gap);
}

.bungle.is-small {
	max-width: 500px;
}

.bungle.is-small .icon-maintain {
	width: 150px;
	height: 150px;
}

.bungle.is-small .bungle__text {
	font-size: .95em;
	line-height: 1.45em;
}

.bungle.is-medium {
	max-width: 700px;
}

.bungle.is-medium .icon-maintain {
	width: 200px;
	height: 200px;
}

.bungle.is-medium .bungle__text {
	line-height: 1.45em;
}

.bungle__text {
	opacity: .7;
	text-align: center;
}

.bungle__text>a {
	color: inherit;
}

.bungle .icon-maintain {
	margin-bottom: var(--gap);
}

.bungle .icon-maintain__tile-0 {
	fill: hsla(var(--ah),var(--as),calc(var(--al) - 15%),.15);
}

.bungle .icon-maintain__tile-1,.bungle .icon-maintain__tile-3 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 25%));
}

.bungle .icon-maintain__tile-2,.bungle .icon-maintain__tile-4 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.button-bare {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border: unset;
	background-color: transparent;
	font-size: 16px;
	line-height: 1.45em;
	text-align: center;
	text-decoration: none;
	user-select: none;
	border-radius: var(--border-radius-small);
	transition: background-color .2s ease-in-out;
	overflow: hidden;
	cursor: pointer;
}

.button-bare.is-hidden {
	pointer-events: none;
	cursor: auto;
	visibility: hidden;
	opacity: 0;
}

.button-bare:active,.button-bare:focus,.button-bare:hover {
	outline: 0;
}

.button-bare__container {
	display: inline-block;
}

.button-bare.is-primary {
	color: hsl(var(--th),var(--ts),var(--tl));
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.button-bare.is-primary:hover {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.button-bare.is-secondary {
	color: hsl(var(--bh),var(--bs),var(--bl));
	background-color: hsla(var(--bh),var(--bs),var(--bl),.2);
}

.button-bare.is-secondary:hover {
	background-color: hsla(var(--bh),var(--bs),var(--bl),.3);
}

.button-bare.is-small {
	padding: 2px 6px;
}

.button-bare.is-small.is-wide {
	width: 150px;
}

.button-bare.is-medium {
	padding: 3px 8px;
}

.button-bare.is-medium.is-wide {
	width: 180px;
}

.button-bare.is-large {
	padding: 5px 10px;
}

.button-bare.is-large.is-wide {
	width: 220px;
}

.button-bare.is-gap {
	margin-bottom: var(--gap);
}

.button-decorative {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 230px;
	box-sizing: border-box;
	border: unset;
	background-color: transparent;
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	user-select: none;
	border-radius: var(--border-radius-small);
	overflow: hidden;
	transition: background-color .2s ease;
	cursor: pointer;
}

.button-decorative.is-hidden {
	pointer-events: none;
	cursor: auto;
	visibility: hidden;
	opacity: 0;
}

.button-decorative:active,.button-decorative:focus,.button-decorative:hover {
	outline: 0;
}

.button-decorative__mask {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	mask-size: cover;
	mask-repeat: no-repeat;
	mask-position: center;
}

.button-decorative__container {
	display: inline-block;
}

.button-decorative.is-primary,.button-decorative.is-secondary {
	color: hsl(var(--bh),var(--bs),var(--bl));
	background-color: hsl(var(--ih),var(--is),var(--il));
}

.button-decorative.is-primary:hover {
	background-color: hsl(var(--ih),var(--is),calc(var(--il) + 10%));
}

.button-decorative.is-primary .button-decorative__mask {
	background-color: hsl(var(--bh),var(--bs),100%);
}

.button-decorative.is-secondary {
	background-color: hsl(var(--sh),var(--ss),var(--sl));
}

.button-decorative.is-secondary:hover {
	background-color: hsl(var(--sh),var(--ss),calc(var(--sl) - 10%));
}

.button-decorative.is-secondary .button-decorative__mask {
	background-color: hsl(var(--sh),var(--ss),12%);
}

.button-decorative.is-small {
	padding: 5px 12px;
}

.button-decorative.is-small.is-wide {
	width: 150px;
}

.button-decorative.is-medium {
	padding: 7px 16px;
}

.button-decorative.is-medium.is-wide {
	width: 170px;
}

.button-decorative.is-large {
	padding: 10px 20px;
}

.button-decorative.is-large.is-wide {
	width: 200px;
}

.button-decorative__text {
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
	z-index: 1;
}

.button-decorative.is-gap {
	margin-bottom: var(--gap);
}

.button-one {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 250px;
	box-sizing: border-box;
	border: unset;
	line-height: 1.45em;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	overflow: hidden;
	cursor: pointer;
	border-radius: var(--border-radius-small);
	transition: background-color .1s ease;
}

.button-one:active,.button-one:focus,.button-one:hover {
	outline: 0;
}

.button-one.is-rounded {
	border-radius: 25px;
}

.button-one.is-hidden {
	pointer-events: none;
	cursor: auto;
	visibility: hidden;
	opacity: 0;
}

.button-one.is-gap {
	margin-bottom: var(--gap);
}

.button-one.is-small {
	min-height: 32px;
	padding: 6px 16px;
}

.button-one.is-medium {
	min-height: 36px;
	padding: 8px 20px;
}

.button-one.is-large {
	min-height: 42px;
	padding: 8px 30px;
}

.button-one.is-wide.is-small {
	width: 150px;
}

.button-one.is-wide.is-medium {
	width: 180px;
}

.button-one.is-wide.is-large {
	width: 220px;
}

.button-one.is-uppercase {
	letter-spacing: .1em;
	text-transform: uppercase;
}

.button-one.is-small:not(.is-uppercase) {
	font-size: .85em;
}

.button-one.is-medium:not(.is-uppercase) {
	font-size: .9em;
}

.button-one.is-large:not(.is-uppercase) {
	font-size: .95em;
}

.button-one.is-uppercase.is-small {
	font-size: 12px;
}

.button-one.is-uppercase.is-medium {
	font-size: 13px;
}

.button-one.is-uppercase.is-large {
	font-size: 14px;
}

.button-one__container {
	display: inline-block;
}

.button-one.is-primary:not(.is-outlined) {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-one.is-primary:not(.is-outlined):hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 6%));
}

.button-one.is-primary.is-outlined {
	background-color: transparent;
	border: 2px solid hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-one.is-secondary:not(.is-outlined) {
	background-color: hsl(var(--ih),var(--is),var(--il));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-one.is-secondary:not(.is-outlined):hover {
	background-color: hsl(var(--ih),var(--is),calc(var(--il) + 6%));
}

.button-one.is-secondary.is-outlined {
	background-color: transparent;
	border: 2px solid hsl(var(--th),var(--ts),var(--tl));
	color: hsl(var(--th),var(--ts),var(--tl));
}

@media (min-width:768px) {
	.button-one.is-medium {
		min-height: 40px;
	}

	.button-one.is-large {
		min-height: 46px;
	}

	.button-one.is-small:not(.is-uppercase) {
		font-size: .9em;
	}

	.button-one.is-medium:not(.is-uppercase) {
		font-size: .95em;
	}

	.button-one.is-large:not(.is-uppercase) {
		font-size: 1em;
	}
}

.button-three {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 250px;
	box-sizing: border-box;
	border: unset;
	line-height: 1.45em;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	overflow: hidden;
	cursor: pointer;
	border-radius: var(--border-radius-small);
}

.button-three:active,.button-three:focus,.button-three:hover {
	outline: 0;
}

.button-three.is-rounded {
	border-radius: 25px;
}

.button-three.is-hidden {
	pointer-events: none;
	cursor: auto;
	visibility: hidden;
	opacity: 0;
}

.button-three.is-gap {
	margin-bottom: var(--gap);
}

.button-three.is-small {
	min-height: 32px;
	padding: 6px 16px;
}

.button-three.is-medium {
	min-height: 36px;
	padding: 8px 20px;
}

.button-three.is-large {
	min-height: 42px;
	padding: 8px 30px;
}

.button-three.is-wide.is-small {
	width: 150px;
}

.button-three.is-wide.is-medium {
	width: 180px;
}

.button-three.is-wide.is-large {
	width: 220px;
}

.button-three.is-uppercase {
	letter-spacing: .1em;
	text-transform: uppercase;
}

.button-three.is-small:not(.is-uppercase) {
	font-size: .85em;
}

.button-three.is-medium:not(.is-uppercase) {
	font-size: .9em;
}

.button-three.is-large:not(.is-uppercase) {
	font-size: .95em;
}

.button-three.is-uppercase.is-small {
	font-size: 12px;
}

.button-three.is-uppercase.is-medium {
	font-size: 13px;
}

.button-three.is-uppercase.is-large {
	font-size: 14px;
}

.button-three__container {
	display: inline-block;
}

.button-three.is-secondary:not(.is-outlined) {
	background-color: hsl(var(--ih),var(--is),var(--il));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-three.is-secondary.is-outlined {
	background-color: transparent;
	border: 2px solid hsl(var(--th),var(--ts),var(--tl));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.button-three.is-primary:not(.is-outlined) {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-three.is-primary.is-outlined {
	background-color: transparent;
	border: 2px solid hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-three::after {
	content: '';
	position: absolute;
	top: 0;
	left: -200%;
	width: 200%;
	height: 100%;
	transform: skewX(-20deg);
	background-image: linear-gradient(to right,transparent,hsla(var(--bh),var(--bs),var(--bl),.4),transparent);
}

.button-three:hover::after {
	animation: shine 1.6s ease;
}

@media (min-width:768px) {
	.button-three.is-medium {
		min-height: 40px;
	}

	.button-three.is-large {
		min-height: 46px;
	}

	.button-three.is-small:not(.is-uppercase) {
		font-size: .9em;
	}

	.button-three.is-medium:not(.is-uppercase) {
		font-size: .95em;
	}

	.button-three.is-large:not(.is-uppercase) {
		font-size: 1em;
	}
}

.button-two {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 250px;
	box-sizing: border-box;
	border: unset;
	line-height: 1.45em;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	overflow: hidden;
	cursor: pointer;
	border-radius: var(--border-radius-small);
	transition: background-color .2s ease;
}

.button-two:active,.button-two:focus,.button-two:hover {
	outline: 0;
}

.button-two.is-rounded {
	border-radius: 25px;
}

.button-two.is-hidden {
	pointer-events: none;
	cursor: auto;
	visibility: hidden;
	opacity: 0;
}

.button-two.is-gap {
	margin-bottom: var(--gap);
}

.button-two.is-small {
	min-height: 32px;
	padding: 6px 16px;
}

.button-two.is-medium {
	min-height: 36px;
	padding: 8px 20px;
}

.button-two.is-large {
	min-height: 42px;
	padding: 8px 30px;
}

.button-two.is-wide.is-small {
	width: 150px;
}

.button-two.is-wide.is-medium {
	width: 180px;
}

.button-two.is-wide.is-large {
	width: 220px;
}

.button-two.is-uppercase {
	letter-spacing: .1em;
	text-transform: uppercase;
}

.button-two.is-small:not(.is-uppercase) {
	font-size: .85em;
}

.button-two.is-medium:not(.is-uppercase) {
	font-size: .9em;
}

.button-two.is-large:not(.is-uppercase) {
	font-size: .95em;
}

.button-two.is-uppercase.is-small {
	font-size: 12px;
}

.button-two.is-uppercase.is-medium {
	font-size: 13px;
}

.button-two.is-uppercase.is-large {
	font-size: 14px;
}

.button-two__container {
	display: inline-block;
}

.button-two.is-primary:not(.is-outlined) {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-two.is-primary:not(.is-outlined):hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 6%));
}

.button-two.is-primary.is-outlined {
	background-color: transparent;
	border: 2px solid hsl(var(--th),var(--ts),var(--tl));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.button-two.is-secondary:not(.is-outlined) {
	background-color: hsl(var(--ih),var(--is),var(--il));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-two.is-secondary:not(.is-outlined):hover {
	background-color: hsl(var(--ih),var(--is),calc(var(--il) + 6%));
}

.button-two.is-secondary.is-outlined {
	background-color: transparent;
	border: 2px solid hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.button-two__ripple {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 0 0;
	overflow: hidden;
}

.button-two__ripple.is-active .button-two__circle {
	animation: ripple .4s ease-in;
}

.button-two__circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	background: hsla(var(--bh),var(--bs),var(--bl),.25);
	opacity: 0;
}

@media (min-width:768px) {
	.button-two.is-medium {
		min-height: 40px;
	}

	.button-two.is-large {
		min-height: 46px;
	}

	.button-two.is-small:not(.is-uppercase) {
		font-size: .9em;
	}

	.button-two.is-medium:not(.is-uppercase) {
		font-size: .95em;
	}

	.button-two.is-large:not(.is-uppercase) {
		font-size: 1em;
	}
}

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

.buttons--gap {
	margin-bottom: var(--gap);
}

.buttons>* {
	margin-top: 10px;
}

.buttons--center>:not(:last-of-type),.buttons--left>:not(:last-of-type) {
	margin-right: var(--gap-small);
}

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

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

.buttons--right>:not(:first-of-type) {
	margin-left: var(--gap-small);
}

.card-eight {
	position: relative;
	display: grid;
	max-width: 800px;
	text-decoration: none;
	color: inherit;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.card-eight.is-primary {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.card-eight.is-secondary,.card-eight.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.card-eight--gap {
	margin-bottom: var(--gap);
}

.card-eight__image-wrapper {
	position: relative;
	display: none;
	overflow: hidden;
	isolation: isolate;
}

.card-eight__image-container {
	display: flex;
}

.card-eight__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	object-fit: cover;
}

.card-eight__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 1rem;
	box-sizing: border-box;
}

.card-eight__content>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.card-eight__label {
	display: inline-block;
	letter-spacing: .03em;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.card-eight__text,.card-eight__title {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.card-eight__title {
	font-size: var(--name-font-size);
	font-weight: 600;
	transition: .2s ease;
}

.card-eight__title:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.card-eight__text {
	font-size: .95em;
}

@media (min-width:1200px) {
	.card-eight {
		grid-template-columns: 1fr 200px;
	}

	.card-eight__image-wrapper {
		display: block;
	}

	.card-eight__content {
		padding: 1.5rem;
	}
}

@media (min-width:1400px) {
	.card-eight__content {
		padding: 2rem;
	}
}

.card-five {
	position: relative;
	display: block;
	max-width: 350px;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.card-five--gap {
	margin-bottom: var(--gap-extended);
}

.card-five.is-primary {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.card-five.is-secondary,.card-five.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.card-five__image-container {
	position: relative;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
	isolation: isolate;
}

.card-five__image-container.is-primary {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.card-five__image-container.is-secondary,.card-five__image-container.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.card-five__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	object-fit: cover;
}

.card-five__wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	box-sizing: border-box;
}

.card-five__wrapper>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.card-five__label,.card-five__text,.card-five__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.card-five__label {
	display: inline-block;
	-webkit-line-clamp: 1;
	font-size: .95em;
}

.card-five__text,.card-five__title {
	display: block;
}

.card-five__title {
	-webkit-line-clamp: 2;
	font-size: var(--subtitle-font-size);
	font-weight: 600;
	transition: .2s ease;
}

.card-five__title:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.card-five__text {
	-webkit-line-clamp: 3;
	font-size: .95em;
}

.card-five__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: auto;
	border-radius: 50%;
	transition: .2s ease;
}

.card-five__icon.is-primary {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.card-five:hover .card-five__icon.is-primary,.card-five__icon.is-secondary,.card-five__icon.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.card-five__icon>svg {
	width: 22px;
	height: 22px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.card-five:hover .card-five__icon {
	transform: scale(1.1);
}

.card-five:hover .card-five__icon.is-secondary,.card-five:hover .card-five__icon.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

@media (min-width:768px) {
	.card-five__wrapper {
		padding: 1.5rem;
	}
}

.card-four {
	display: block;
	max-width: 400px;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	text-decoration: none;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.card-four--gap {
	margin-bottom: var(--gap-extended);
}

.card-four:hover .card-four__image,.card-one__image-wrapper:hover .card-one__image,.card-seven__image-wrapper:hover .card-seven__image {
	transform: scale(1);
}

.card-four__image-wrapper {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-small);
	overflow: hidden;
	isolation: isolate;
}

.card-four__image-wrapper::after {
	content: '';
	position: absolute;
	top: 3rem;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: var(--dim-gradient);
	z-index: 0;
}

.card-four__image-container {
	display: flex;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	isolation: isolate;
}

.card-four__image-container::after,.card-one__image-container::after,.card-seven__image-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dim);
	opacity: 0;
	transition: all 1s cubic-bezier(.22,1,.36,1);
	z-index: 0;
}

.card-four__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-small);
	transform: scale(1.02);
	transition: all 1s cubic-bezier(.22,1,.36,1);
	object-fit: cover;
}

.card-four__content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 1;
}

.card-four__title {
	font-size: var(--name-font-size);
	font-weight: 600;
	line-height: 1.45em;
}

.card-four__label {
	display: inline-block;
	margin-top: 5px;
	letter-spacing: .03em;
	font-size: .95em;
	line-height: 1.45em;
	opacity: .7;
}

@media (min-width:768px) {
	.card-four__content {
		padding: 1.5rem;
	}
}

.card-one {
	display: grid;
	grid-template-rows: auto 1fr;
	max-width: 400px;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.card-one--gap {
	margin-bottom: var(--gap-extended);
}

.card-one.is-primary {
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.card-one.is-secondary,.card-one.is-semitone {
	border: 1px solid hsl(var(--ah),var(--as),var(--al));
}

.card-one__image-wrapper {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top-left-radius: var(--border-radius-normal);
	border-top-right-radius: var(--border-radius-normal);
	overflow: hidden;
	isolation: isolate;
}

.card-one__image-container {
	display: flex;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	isolation: isolate;
}

.card-one__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	transform: scale(1.02);
	transition: all 1s cubic-bezier(.22,1,.36,1);
	object-fit: cover;
}

.card-one__content {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem;
	box-sizing: border-box;
}

.card-one__label,.card-one__title {
	margin-bottom: var(--gap-small);
	line-height: 1.45em;
}

.card-one__label {
	display: inline-block;
	letter-spacing: .03em;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 50%));
}

.card-one__title {
	font-size: var(--name-font-size);
	font-weight: 600;
	transition: .2s ease;
}

.card-one__title:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.card-one__text {
	font-size: .95em;
	line-height: 1.45em;
}

.card-one__badges {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	padding: 1rem;
	box-sizing: border-box;
	margin-top: -8px;
}

.card-one__badges>div {
	margin-left: 8px;
	margin-top: 8px;
}

.card-one__button-wrapper {
	margin-top: auto;
}

.card-one__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	min-width: 36px;
	margin-top: var(--gap);
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),var(--tl));
	border: unset;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
	cursor: pointer;
}

.card-one__button:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	transition: background-color .25s ease;
}

.card-one__button.is-rounded {
	border-radius: 25px;
}

@media (min-width:768px) {
	.card-one__content {
		padding: 1.5rem;
	}
}

.card-seven {
	display: grid;
	grid-template-rows: auto 1fr;
	max-width: 400px;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.card-seven--gap {
	margin-bottom: var(--gap-extended);
}

.card-seven.is-primary {
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.card-seven.is-secondary,.card-seven.is-semitone {
	border: 1px solid hsl(var(--ah),var(--as),var(--al));
}

.card-seven__image-wrapper {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top-left-radius: var(--border-radius-normal);
	border-top-right-radius: var(--border-radius-normal);
	overflow: hidden;
	isolation: isolate;
}

.card-seven__image-container {
	display: flex;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	isolation: isolate;
}

.card-seven__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	transform: scale(1.02);
	transition: all 1s cubic-bezier(.22,1,.36,1);
	object-fit: cover;
}

.card-seven__content {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem;
	box-sizing: border-box;
}

.card-seven__label,.card-seven__title {
	margin-bottom: var(--gap-small);
	line-height: 1.45em;
}

.card-seven__label {
	display: inline-block;
	letter-spacing: .03em;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 50%));
}

.card-seven__title {
	font-size: var(--name-font-size);
	font-weight: 600;
	transition: .2s ease;
}

.card-seven__title:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.card-seven__text {
	font-size: .95em;
	line-height: 1.45em;
}

.card-seven__badges {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	padding: 1rem;
	box-sizing: border-box;
	margin-top: -8px;
}

.card-seven__badges>div {
	margin-right: 8px;
	margin-top: 8px;
}

@media (min-width:768px) {
	.card-seven__content {
		padding: 1.5rem;
	}
}

.card-six {
	position: relative;
	display: block;
	max-width: 250px;
	text-decoration: none;
	color: inherit;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.card-six--gap {
	margin-bottom: var(--gap-extended);
}

.card-six.is-primary {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.card-six.is-secondary,.card-six.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.card-six__image-container {
	position: relative;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
	isolation: isolate;
}

.card-six__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	object-fit: cover;
}

.card-six__wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	box-sizing: border-box;
}

.card-six__wrapper>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.card-six__text,.card-six__title {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.card-six__title {
	-webkit-line-clamp: 2;
	font-size: var(--name-font-size);
	font-weight: 600;
	transition: .2s ease;
}

.card-six__title:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.card-six__text {
	-webkit-line-clamp: 4;
	font-size: .95em;
}

.catalog-button-one {
	flex-shrink: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	max-width: 250px;
	padding-top: 8px;
	padding-bottom: 8px;
	box-sizing: border-box;
	border-width: 2px;
	border-style: solid;
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 6%));
	text-align: center;
	font-size: 1em;
	line-height: 1em;
	font-weight: 500;
	white-space: nowrap;
	text-decoration: none;
	user-select: none;
	border-radius: var(--border-radius-small);
	background-color: transparent;
	overflow: hidden;
	cursor: pointer;
}

.catalog-button-one:active,.catalog-button-one:focus,.catalog-button-one:hover {
	outline: 0;
}

.catalog-button-one.is-rounded {
	border-radius: 25px;
}

.catalog-button-one.is-primary {
	border-color: hsl(var(--bh),var(--bs),var(--bl));
}

.catalog-button-one.is-primary,.catalog-button-one.is-primary .catalog-button-one__icon {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.catalog-button-one.is-secondary {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.catalog-button-one.is-secondary,.catalog-button-one.is-secondary .catalog-button-one__icon {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.catalog-button-one.is-medium {
	min-height: 42px;
	padding-left: 20px;
	padding-right: 20px;
}

.catalog-button-one.is-medium.is-wide {
	width: 180px;
}

.catalog-button-one.is-large {
	min-height: 46px;
	max-width: 250px;
	padding-left: 24px;
	padding-right: 24px;
}

.catalog-button-one.is-large.is-wide {
	width: 220px;
}

.catalog-button-one__icon {
	display: block;
	height: 14px;
	width: 20px;
	margin-right: var(--gap-small);
	border-radius: 1px;
	cursor: pointer;
	flex-shrink: 0;
	user-select: none;
}

.catalog-button-one__icon:after,.catalog-button-one__icon:before {
	content: '';
	display: block;
	height: 2px;
	border-radius: inherit;
	background: currentColor;
	transition: filter .5s,transform .5s;
}

.catalog-button-one__icon:after {
	filter: drop-shadow(0 -6px currentColor);
	transform: translateY(10px);
}

.catalog-button-one.is-active .catalog-button-one__icon::before,.catalog-button-one.is-triggered .catalog-button-one__icon::before {
	transform: translateY(6px) rotateZ(45deg);
}

.catalog-button-one.is-active .catalog-button-one__icon::after,.catalog-button-one.is-triggered .catalog-button-one__icon::after {
	filter: initial;
	transform: translateY(4px) rotateZ(-45deg);
}

.catalog-button-one__text {
	display: block;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.catalog-button-two {
	flex-shrink: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	max-width: 250px;
	padding-top: 8px;
	padding-bottom: 8px;
	box-sizing: border-box;
	border: unset;
	text-align: center;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	color: hsl(var(--bh),var(--bs),var(--bl));
	white-space: nowrap;
	text-decoration: none;
	user-select: none;
	border-radius: var(--border-radius-small);
	background-color: transparent;
	overflow: hidden;
	cursor: pointer;
}

.catalog-button-two:active,.catalog-button-two:focus,.catalog-button-two:hover {
	outline: 0;
}

.catalog-button-two.is-rounded {
	border-radius: 25px;
}

.catalog-button-two.is-primary {
	background-color: hsl(var(--ih),var(--is),var(--il));
}

.catalog-button-two.is-secondary,.loader-one.is-primary>div {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.catalog-button-two.is-medium {
	min-height: 42px;
	padding-left: 20px;
	padding-right: 20px;
}

.catalog-button-two.is-medium.is-wide {
	width: 180px;
}

.catalog-button-two.is-large,.catalog-button-two.is-medium.is-rounded {
	padding-left: 30px;
	padding-right: 30px;
}

.catalog-button-two.is-large {
	min-height: 46px;
	max-width: 250px;
}

.catalog-button-two.is-large.is-wide {
	width: 220px;
}

.catalog-button-two.is-large.is-rounded {
	padding-left: 35px;
	padding-right: 35px;
}

.catalog-button-two__icon {
	display: block;
	height: 14px;
	width: 18px;
	margin-right: var(--gap-small);
	border-radius: 1px;
	cursor: pointer;
	flex-shrink: 0;
	user-select: none;
}

.catalog-button-two__icon:after,.catalog-button-two__icon:before {
	content: '';
	display: block;
	height: 2px;
	border-radius: inherit;
	background: currentColor;
	transition: filter .5s,transform .5s;
}

.catalog-button-two__icon:after {
	filter: drop-shadow(0 -6px currentColor);
	transform: translateY(10px);
}

.catalog-button-two.is-active .catalog-button-two__icon::before,.catalog-button-two.is-triggered .catalog-button-two__icon::before {
	transform: translateY(6px) rotateZ(45deg);
}

.catalog-button-two.is-active .catalog-button-two__icon::after,.catalog-button-two.is-triggered .catalog-button-two__icon::after {
	filter: initial;
	transform: translateY(4px) rotateZ(-45deg);
}

.catalog-button-two__text {
	display: block;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.catalog-four {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	white-space: nowrap;
	align-items: center;
	width: 0;
}

.catalog-four.is-primary .catalog-four__item>a {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.catalog-four.is-primary .catalog-four__item>a>svg {
	fill: #a8a8a8;
}

.catalog-four.is-secondary .catalog-four__item>a {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.catalog-four.is-secondary .catalog-four__item>a>svg {
	fill: hsla(var(--bh),var(--bs),var(--bl),.5);
}

.catalog-four.is-center {
	justify-content: center;
}

.catalog-four.is-right {
	justify-content: flex-end;
}

.catalog-four.is-right>:not(:first-child) {
	margin-left: var(--gap-extended);
}

.catalog-four:not(.is-right)>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.catalog-four.is-initial {
	visibility: hidden;
	overflow: hidden;
}

.catalog-four__item {
	display: inline-flex;
}

.catalog-four__item.is-floating {
	position: relative;
}

.catalog-four__item.is-hidden {
	display: none;
}

.catalog-four__item>a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
}

.catalog-four__item>a>svg {
	display: block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	margin-top: 3px;
}

.catalog-four__item:hover>.catalog-four__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition-duration: .2s;
	transition-delay: .1s;
}

.catalog-four__image {
	display: flex;
	align-items: center;
	margin-right: 8px;
}

.catalog-four__image>img,.catalog-four__image>svg {
	display: block;
	max-width: 24px;
	max-height: 24px;
	height: auto;
	border-radius: var(--border-radius-small);
}

.catalog-four__image>svg {
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.catalog-four__dropdown-item>a,.catalog-four__floating-item>a {
	display: flex;
	align-items: center;
	padding: .4rem .8rem .4rem .7rem;
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
	text-decoration: none;
	transition: background-color .1s ease;
	border-radius: var(--border-radius-small);
}

.catalog-four__dropdown-item>a>svg {
	display: none;
}

.catalog-four__dropdown-wrapper,.catalog-four__overlay {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
}

.catalog-four__overlay {
	height: 100vh;
	background-color: var(--dim-intense);
	z-index: 150;
	pointer-events: none;
	transition: 0s ease-in-out;
}

.catalog-four__overlay.is-active {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transition-duration: .2s;
}

.catalog-four__dropdown-wrapper {
	padding-top: calc(15px + var(--gap-small));
	transform: translateY(10px);
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	z-index: 155;
}

.catalog-four__dropdown {
	padding: 2rem 2rem 2rem 3rem;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-normal);
	box-shadow: var(--shadow-modal);
	overflow: hidden;
}

.catalog-four__content {
	max-height: 500px;
	height: 100%;
	padding-right: 1rem;
	box-sizing: border-box;
	overflow-y: scroll;
}

.catalog-four__content::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: transparent;
}

.catalog-four__content::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: 4px;
	margin-left: 5px;
}

.catalog-four__item-header {
	margin-bottom: var(--gap);
}

.catalog-four__item-name {
	margin-right: 5px;
	font-size: var(--subtitle-font-size);
	font-weight: 600;
}

.catalog-four__item-counter {
	font-size: 15px;
	opacity: .5;
}

.catalog-four__sub-list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: var(--gap);
}

.catalog-four__column {
	display: flex;
	flex-direction: column;
}

.catalog-four__column>* {
	margin-bottom: var(--gap);
}

.catalog-four__floating-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	padding-top: var(--gap);
}

.catalog-four__item:hover>.catalog-four__floating-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.catalog-four__floating {
	max-width: 400px;
	min-width: 160px;
	padding: .5rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
}

.catalog-four__name,.navigation-one__dropdown-item>a span {
	margin-right: auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (min-width:1100px) {
	.catalog-four__sub-list {
		grid-template-columns: repeat(3,1fr);
		margin-left: 1rem;
	}
}

.catalog-mobile-one {
	display: block;
}

.catalog-mobile-one__top {
	padding: .8rem 1rem;
}

.catalog-mobile-one__top>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.catalog-mobile-one__switch {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.catalog-mobile-one__switch-button {
	padding: 0 var(--gap-small) var(--gap-small);
	text-align: center;
	font-weight: 600;
	cursor: pointer;
}

.catalog-mobile-one__switch-button:nth-of-type(1).is-active~.catalog-mobile-one__indicator {
	transform: translateX(0);
}

.catalog-mobile-one__switch-button:nth-of-type(2).is-active~.catalog-mobile-one__indicator {
	transform: translateX(100%);
}

.catalog-mobile-one__indicator {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 50%;
	height: 2px;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	transition: .25s ease-out;
}

.catalog-mobile-one__navigation {
	width: 100%;
}

.catalog-mobile-one__slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	box-sizing: border-box;
}

.catalog-mobile-one__page {
	width: 100%;
}

.catalog-mobile-one__items {
	display: flex;
	flex-direction: column;
}

.catalog-mobile-one__items>:not(:last-child) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.catalog-mobile-one__item,.catalog-mobile-one__link {
	display: grid;
	align-items: center;
}

.catalog-mobile-one__item.has-children {
	grid-template-columns: 1fr auto;
}

.catalog-mobile-one__link {
	grid-gap: var(--gap-small);
	min-height: 32px;
	padding: .5rem 0;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
}

.catalog-mobile-one__link.has-image {
	grid-template-columns: auto 1fr;
}

.catalog-mobile-one__back {
	width: 100%;
	height: 50px;
	padding: unset;
	background-color: transparent;
	border: unset;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	outline: unset;
	font-family: inherit;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: pointer;
}

.catalog-mobile-one__back .icon-arrow {
	display: block;
	width: 11px;
	height: 11px;
	margin-right: 1rem;
	transform: rotate(90deg);
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.catalog-mobile-one__back,.catalog-mobile-one__image {
	display: flex;
	align-items: center;
}

.catalog-mobile-one__image>img,.catalog-mobile-one__image>svg {
	display: block;
	max-width: 32px;
	max-height: 32px;
	height: auto;
	border-radius: var(--border-radius-small);
}

.catalog-mobile-one__image>svg {
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.catalog-mobile-one__item-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.catalog-mobile-one__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: .5rem 1rem;
	cursor: pointer;
}

.catalog-mobile-one__arrow .icon-arrow {
	display: block;
	width: 11px;
	height: 11px;
	transform: rotate(-90deg);
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.catalog-mobile-one__profile {
	display: flex;
	flex-direction: column;
}

.catalog-mobile-one__profile .catalog-mobile-one__button.is-wide {
	width: 100%;
	max-width: unset;
}

.catalog-mobile-one__bottom {
	padding: 1rem;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.catalog-mobile-one__wrapper {
	padding: .6rem 1rem;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-large);
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.catalog-mobile-one__wrapper:not(:last-of-type) {
	margin-bottom: var(--gap);
}

.catalog-mobile-one__wrapper>li {
	display: flex;
	align-items: center;
	min-height: 50px;
	box-sizing: border-box;
}

.catalog-mobile-one__wrapper>li:not(:first-of-type),.catalog-mobile-two__wrapper>li:not(:first-of-type) {
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.catalog-mobile-one__entry {
	display: block;
	width: 100%;
	padding: 5px 0;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.catalog-mobile-one__entry.is-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 10px;
	align-items: center;
}

.catalog-mobile-one__entry>svg,.catalog-mobile-two__entry>svg {
	display: block;
	width: 25px;
	height: 25px;
}

.catalog-mobile-one__counter {
	display: none;
	align-items: center;
	justify-content: center;
	height: 23px;
	min-width: 23px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.catalog-mobile-one__counter.is-active {
	display: flex;
}

.catalog-mobile-one__name {
	display: block;
	font-weight: 600;
}

.catalog-mobile-one__desc {
	display: block;
	font-size: 15px;
	line-height: 1.45em;
	opacity: .7;
}

.catalog-mobile-one__value {
	display: block;
	font-size: .95em;
	line-height: 1.45em;
}

.catalog-mobile-two {
	display: block;
}

.catalog-mobile-two__title {
	position: relative;
	display: block;
	padding: 10px 1rem 0;
	margin-bottom: var(--gap);
	font-weight: 600;
	font-size: 18px;
}

.catalog-mobile-two__navigation {
	margin-bottom: var(--gap);
}

.catalog-mobile-two__navigation>li {
	margin-right: 1rem;
	margin-left: 1rem;
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.catalog-mobile-two__list {
	display: none;
}

.catalog-mobile-two__list:not(:last-of-type) {
	margin-bottom: 5px;
}

.catalog-mobile-two__list.is-opened {
	display: block;
}

.catalog-mobile-two__list li {
	margin-left: 1rem;
}

.catalog-mobile-two__item.is-parent {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 10px;
	align-items: start;
}

.catalog-mobile-two__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	margin-top: 10px;
}

.catalog-mobile-two__icon::after {
	content: '';
	display: block;
	border-style: solid;
	border-color: transparent;
	border-left-width: 5px;
	border-top-width: 5px;
	border-right-width: 5px;
	border-top-color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transform: rotate(-90deg);
	transition: .3s ease;
	cursor: pointer;
}

.catalog-mobile-two__icon.is-opened {
	transform: rotate(90deg);
}

.catalog-mobile-two__link {
	display: block;
	padding: 10px 0;
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
	text-decoration: none;
	transition: .3s ease;
}

.catalog-mobile-two__bottom {
	padding: 1rem;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.catalog-mobile-two__wrapper {
	padding: .6rem 1rem;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-large);
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.catalog-mobile-two__wrapper:not(:last-of-type),.column-one__text>p:not(:last-of-type) {
	margin-bottom: var(--gap);
}

.catalog-mobile-two__wrapper>li {
	display: flex;
	align-items: center;
	min-height: 50px;
	box-sizing: border-box;
}

.catalog-mobile-two__entry {
	display: block;
	width: 100%;
	padding: 5px 0;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.catalog-mobile-two__entry.is-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 10px;
	align-items: center;
}

.catalog-mobile-two__counter {
	display: none;
	align-items: center;
	justify-content: center;
	height: 23px;
	min-width: 23px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.catalog-mobile-two__counter.is-active {
	display: flex;
}

.catalog-mobile-two__name {
	display: block;
	font-weight: 600;
}

.catalog-mobile-two__desc {
	display: block;
	font-size: 15px;
	line-height: 1.45em;
	opacity: .7;
}

.catalog-mobile-two__value {
	display: block;
	font-size: .95em;
	line-height: 1.45em;
}

.catalog-one {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	width: 100%;
	height: calc(100vh - 100%);
	z-index: 150;
}

.catalog-one__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
}

.catalog-one__center {
	position: relative;
	display: grid;
	grid-template-columns: 370px 1fr;
	max-width: var(--frame-width);
	min-height: 500px;
	margin: var(--gap-small) auto 0;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-normal);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	box-shadow: var(--shadow-modal);
	overflow: hidden;
}

.catalog-one__tabs,.catalog-one__tabs-wrapper {
	padding: .5rem calc(.5rem - 3px) .5rem .5rem;
}

.catalog-one__tabs {
	max-height: 515px;
	overflow-y: scroll;
}

.catalog-one__tabs::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	background-color: transparent;
}

.catalog-one__tabs::-webkit-scrollbar-thumb {
	margin-left: 5px;
	border-radius: 4px;
	background-color: transparent;
}

.catalog-one__content:hover::-webkit-scrollbar-thumb,.catalog-one__tabs:hover::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.catalog-one__tab.is-active .catalog-one__tab-link {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.catalog-one__tab:not(:last-child) {
	margin-bottom: 2px;
}

.catalog-one__tab-link {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: var(--gap-small);
	align-items: center;
	min-height: 32px;
	padding: .4rem .8rem;
	border-radius: var(--border-radius-small);
	transition: background-color .2s ease;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
}

.catalog-one__tab-link:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.catalog-one__tab-link.has-image {
	grid-template-columns: 32px 1fr auto;
}

.catalog-one__tab-name {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.catalog-one__image {
	display: flex;
	align-items: center;
}

.catalog-one__image>img,.catalog-one__image>svg {
	display: block;
	max-width: 32px;
	max-height: 32px;
	height: auto;
	border-radius: var(--border-radius-small);
}

.catalog-one__image>svg {
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.catalog-one__tab-arrow {
	display: inline-flex;
	align-items: center;
	color: hsl(var(--th),var(--ts),var(--tl));
	cursor: pointer;
}

.catalog-one__tab-arrow .icon-more {
	display: block;
	width: 8px;
	height: 8px;
	transform: rotate(-90deg);
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.catalog-one__content-wrapper {
	padding: 2rem 1.5rem 2rem 3rem;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	box-shadow: 8px 0 6px -5px rgba(0,0,0,.08) inset;
}

.catalog-one__content {
	max-height: 515px;
	height: 100%;
	padding-right: 1.5rem;
	box-sizing: border-box;
	overflow-y: scroll;
}

.catalog-one__content::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	background-color: transparent;
}

.catalog-one__content::-webkit-scrollbar-thumb {
	margin-left: 5px;
	border-radius: 4px;
	background-color: transparent;
}

.catalog-one__item {
	display: none;
}

.catalog-one__item.is-active {
	display: block;
}

.catalog-one__item-header {
	margin-bottom: var(--gap);
}

.catalog-one__item-name {
	margin-right: 5px;
	font-size: var(--subtitle-font-size);
	font-weight: 600;
}

.catalog-one__item-counter {
	font-size: 15px;
	opacity: .5;
}

.catalog-one__brand-list {
	display: grid;
	grid-gap: var(--gap-small);
	padding: 1px;
}

.catalog-one__brand-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 1rem;
	box-sizing: border-box;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
	text-align: center;
	transition: .2s ease;
}

.catalog-one__brand-link:hover {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
}

.catalog-one__brand-image img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.catalog-one__brand-name {
	display: block;
	margin-top: var(--gap-small);
	line-height: 1.45em;
}

.catalog-one__sub-list {
	display: grid;
	grid-gap: var(--gap);
}

.catalog-one__column {
	display: flex;
	flex-direction: column;
}

.catalog-one__column>* {
	margin-bottom: var(--gap);
}

.catalog-one__sub-item.has-image {
	display: grid;
	grid-template-columns: 50px 1fr;
	grid-gap: 1rem;
	align-items: center;
}

.catalog-one__sub-item.has-image .catalog-one__child-list {
	margin-left: unset;
}

.catalog-one__sub-item.has-image.has-children {
	align-items: flex-start;
}

.catalog-one__sub-item img {
	border-radius: var(--border-radius-small);
	overflow: hidden;
	display: block;
	width: 100%;
	height: auto;
}

.catalog-one__sub-item svg {
	display: block;
	width: 100%;
	height: auto;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 20%));
}

.catalog-one__sub-link {
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
	white-space: normal;
	text-decoration: none;
	font-weight: 600;
}

.catalog-one__child-list {
	margin-top: 8px;
	margin-left: var(--gap);
}

.catalog-one__child-item:not(:last-of-type) {
	margin-bottom: 8px;
}

.catalog-one__child-link,.catalog-one__error {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.catalog-one__child-link {
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	white-space: normal;
}

.catalog-one__error {
	position: relative;
	max-width: var(--frame-width);
	padding: 2rem;
	margin: 1rem auto 0;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-normal);
	text-align: center;
}

@media (min-width:992px) {
	.catalog-one {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: 0s ease-in-out;
	}

	.catalog-one.is-active,.catalog-one.is-active .catalog-one__center {
		opacity: 1;
		visibility: visible;
		transition-duration: .2s;
	}

	.catalog-one.is-active .catalog-one__center {
		transform: translateY(0);
		transition-delay: .1s;
	}

	.catalog-one__brand-list {
		grid-template-columns: repeat(2,1fr);
	}

	.catalog-one__overlay.is-overlay {
		position: fixed;
	}
}

@media (min-width:1100px) {
	.catalog-one__sub-list {
		grid-template-columns: 1fr 1fr;
		margin-left: 1rem;
	}
}

@media (min-width:1200px) {
	.catalog-one__brand-list {
		grid-template-columns: repeat(3,1fr);
	}
}

@media (min-width:1400px) {
	.catalog-one__brand-list {
		grid-template-columns: repeat(4,1fr);
	}
}

@media (min-width:1500px) {
	.catalog-one__brand-list {
		grid-template-columns: repeat(5,1fr);
	}
}

.catalog-three {
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(220,5%,calc(95% - 2%));
	overflow: hidden;
}

.catalog-three__item:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.catalog-three__item-link {
	display: grid;
	padding: .8rem 1.2rem;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
	transition: background-color .25s;
}

.catalog-three__item-link:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.catalog-three__item-link.is-parent {
	grid-template-columns: 1fr auto;
	grid-gap: var(--gap-small);
}

.catalog-three__item-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	font-weight: 600;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.catalog-three__item-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	transition: .3s ease;
	cursor: pointer;
}

.catalog-three__item-arrow.is-opened {
	transform: rotate(-90deg);
}

.catalog-three__item-arrow .icon-more {
	width: 8px;
	height: 8px;
	fill: #a8a8a8;
	transform: rotate(-90deg);
}

.catalog-three__sub-list {
	display: none;
	padding: .2rem 1rem .8rem;
}

.catalog-three__sub-list.is-opened {
	display: block;
}

.catalog-three__sub-item {
	margin-left: 10px;
}

.catalog-three__sub-item:not(:last-of-type) {
	margin-bottom: 10px;
}

.catalog-three__sub-item-link {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.catalog-two {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	width: 100%;
	height: calc(100vh - 100%);
	z-index: 150;
}

.catalog-two__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
}

.catalog-two__center {
	position: relative;
	max-width: var(--frame-width);
	margin: var(--gap-small) auto 0;
	box-sizing: border-box;
	pointer-events: none;
}

.catalog-two__content,.catalog-two__list {
	padding: .5rem calc(.5rem - 3px) .5rem .5rem;
	box-sizing: border-box;
}

.catalog-two__content {
	width: 350px;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	pointer-events: auto;
}

.catalog-two__list {
	max-height: 500px;
	overflow-y: scroll;
}

.catalog-two__list::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: transparent;
}

.catalog-two__list::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: 4px;
	margin-left: 5px;
}

.catalog-two__item-link {
	display: block;
	padding: .4rem 1rem .4rem .9rem;
	border-radius: var(--border-radius-small);
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
	text-decoration: none;
	transition: background-color .1s ease;
}

.catalog-two__item-link:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.catalog-two__item-link.has-image {
	display: grid;
	grid-template-columns: 30px 1fr;
	grid-gap: var(--gap-small);
	align-items: center;
}

.catalog-two__item-name {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.catalog-two__image {
	display: flex;
	align-items: center;
}

.catalog-two__image>img,.catalog-two__image>svg {
	display: block;
	width: 100%;
	height: auto;
}

.catalog-two__image>svg {
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.catalog-two__error {
	padding: 0 .5rem;
	text-align: center;
	opacity: .7;
}

@media (min-width:992px) {
	.catalog-two {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: 0s ease-in-out;
	}

	.catalog-two.is-active {
		opacity: 1;
		visibility: visible;
		transition-duration: .2s;
	}
}

.category-banner {
	position: relative;
	display: block;
	border-radius: var(--border-radius-normal);
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	overflow: hidden;
}

.category-banner__image {
	display: block;
	max-width: 100%;
}

.category-carousel {
	position: relative;
}

.category-carousel--gap {
	margin-bottom: var(--gap);
}

.category-carousel__item {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	margin: 1px;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid transparent;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-light);
	transition: .2s ease;
}

.category-carousel__item:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	box-shadow: 0 0 1px 1px hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.category-carousel__image {
	margin-bottom: 1rem;
}

.category-carousel__image>img {
	display: block;
	max-height: 110px;
	min-height: 110px;
	height: auto;
	font-size: 0;
	object-fit: cover;
}

.category-carousel__image,.category-carousel__item-content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-carousel__name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.category-carousel__count {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	margin-left: var(--gap-small);
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 16%));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.category-carousel__pagination {
	bottom: unset!important;
}

.category-carousel__pagination>.swiper-pagination-bullet {
	position: relative;
	width: 12px;
	height: 12px;
	background: rgba(0,0,0,.1);
	opacity: 1;
}

.category-carousel__pagination>.swiper-pagination-bullet::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -4px;
	width: 8px;
	height: 8px;
	background: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 50%;
	transition: .3s ease;
}

.category-carousel__pagination>.swiper-pagination-bullet.is-active::before {
	transform: scale(1.5);
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.category-features--gap,.cbx__container.is-gap {
	margin-bottom: var(--gap);
}

.category-features__item {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: .95em;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.cbx {
	position: relative;
	display: inline-block;
	top: 0;
	width: 17px;
	height: 17px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: 3px;
	vertical-align: middle;
	transition: background .1s ease;
	cursor: pointer;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.cbx::after {
	content: '';
	position: absolute;
	top: 1px;
	left: 5px;
	width: 5px;
	height: 11px;
	opacity: 0;
	transform: rotate(45deg) scale(0);
	border-right: 2px solid;
	border-bottom: 2px solid;
	border-color: hsl(var(--bh),var(--bs),var(--bl));
	transition: .3s ease;
	transition-delay: .15s;
}

.cbx__hidden {
	display: none;
}

.cbx__hidden:checked~.cbx {
	border-color: transparent;
	animation: jelly .6s ease;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.cbx__hidden:checked~.cbx:after {
	opacity: 1;
	transform: rotate(45deg) scale(1);
}

.cbx__label {
	margin-left: 5px;
	vertical-align: middle;
	font-size: .95em;
	line-height: 1.45em;
	cursor: pointer;
}

.collapsed {
	position: relative;
	max-height: 200px;
	overflow: hidden;
}

.collapsed::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 130px;
	z-index: 1;
}

.collapsed.is-primary::after {
	background: linear-gradient(180deg,transparent 0,hsl(var(--bh),var(--bs),var(--bl)));
}

.collapsed.is-secondary::after {
	background: linear-gradient(180deg,transparent 0,hsl(var(--ah),var(--as),var(--al)));
}

.collapsed.is-semitone::after {
	background: linear-gradient(180deg,transparent 0,hsl(var(--ah),var(--as),calc(var(--al) + 2%)));
}

.collapsed.is-triggered.is-primary::after,.collapsed.is-triggered.is-secondary::after,.collapsed.is-triggered.is-semitone::after {
	display: none;
}

.collapsed__content,.collapsed__more {
	font-size: .95em;
	line-height: 1.45em;
}

.collapsed__more {
	display: inline-flex;
	align-items: baseline;
	margin-top: 1rem;
	padding: 8px 16px 5px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: 15px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: .2s ease;
	cursor: pointer;
}

.collapsed__more .icon-arrow {
	display: block;
	width: 10px;
	height: 10px;
	margin-left: 8px;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.collapsed__more.is-active .icon-arrow {
	transform: rotate(180deg);
}

.collapsed__more:hover {
	box-shadow: 0 0 0 3px hsl(var(--ah),var(--as),var(--al));
}

@media (min-width:768px) {
	.collapsed__content {
		font-size: 1em;
	}
}

.column-one>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.column-one--gap {
	margin-bottom: var(--gap);
}

.column-one__name {
	display: block;
	font-size: var(--name-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.column-one__link,.column-one__text {
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.column-one__link {
	display: inline;
	text-decoration: none;
	background-size: 0 2px;
	background-repeat: no-repeat;
	background-position: left 100%;
	transition: all .4s cubic-bezier(.25,.46,.45,.94);
	background-image: linear-gradient(to right,hsl(var(--ph),var(--ps),var(--pl)) 0%,hsl(var(--ph),var(--ps),var(--pl)) 100%);
}

.column-one__link:hover {
	background-size: 100% 2px;
}

@media (min-width:768px) {
	.column-one__link,.column-one__text {
		font-size: 1em;
	}
}

.compare-button {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	user-select: none;
	cursor: pointer;
	white-space: nowrap;
}

.compare-button .icon-compare {
	display: block;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.compare-button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.compare-button .core-check {
	display: none;
	fill: #37a834;
}

.compare-button[data-text]:not([data-text=''])::after {
	display: inline-block;
	content: attr(data-text);
}

.compare-button.is-small {
	font-size: 15px;
}

.compare-button.is-small[data-text]:not([data-text=''])::after {
	margin-left: 6px;
}

.compare-button.is-small .core-check {
	width: 14px;
	height: 14px;
}

.compare-button.is-medium .core-check,.compare-button.is-small .icon-compare {
	width: 18px;
	height: 18px;
}

.compare-button.is-medium[data-text]:not([data-text=''])::after {
	margin-left: 8px;
}

.compare-button.is-medium .icon-compare {
	width: 22px;
	height: 22px;
}

.compare-button.is-active .icon-compare {
	display: none;
}

.compare-button.is-active .core-check {
	display: block;
	animation: scale-in .2s linear forwards;
}

.compare-button.is-active[data-text]:not([data-text=''])::after {
	content: attr(data-active-text);
}

.contact-info {
	max-width: 400px;
}

.contact-info>:not(:first-child) {
	margin-top: 1rem;
}

.contact-info__info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 1.5rem;
	grid-row-gap: var(--gap-small);
}

.contact-info__contact.is-flex {
	display: flex;
}

.contact-info__contact.is-flex>svg {
	margin-left: var(--gap-small);
}

.contact-info__contact.is-email {
	grid-column: span 2;
}

.contact-info__contact-name {
	display: block;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.contact-info__contact-name.is-highlighted {
	font-weight: 600;
}

.contact-info__contact-description {
	font-size: .95em;
	line-height: 1.45em;
	opacity: .5;
}

.cookies-one {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	display: none;
	align-items: center;
	flex-direction: column;
	width: 100%;
	max-width: 300px;
	padding: 18px 20px;
	border-radius: var(--border-radius-small);
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-moderate);
	z-index: 150;
}

.cookies-one.is-active {
	display: flex;
}

.cookies-one>svg {
	display: none;
	margin-right: 1.5rem;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 25%));
	flex-shrink: 0;
}

.cookies-one>svg>a {
	text-decoration: none;
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.cookies-one__text {
	display: block;
	margin-bottom: var(--gap-small);
	font-size: .9em;
	line-height: 1.45em;
}

.cookies-one__text>a {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.cookies-one__button {
	margin-left: auto;
}

@media (max-width:767px) {
	.cookies-one__button .is-narrow {
		width: 260px;
		max-width: unset;
	}
}

@media (min-width:768px) {
	.cookies-one {
		right: unset;
		left: 50%;
		transform: translateX(-50%);
		flex-direction: row;
		max-width: 600px;
		padding: .6rem 1.2rem;
	}

	.cookies-one>svg {
		display: block;
	}

	.cookies-one__text {
		margin-bottom: unset;
		margin-right: 1.5rem;
	}
}

.cookies-two {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	display: none;
	align-items: center;
	flex-direction: column;
	width: 100%;
	max-width: 300px;
	padding: 10px 15px 15px;
	border-radius: var(--border-radius-normal);
	box-sizing: border-box;
	background-color: hsl(var(--ih),var(--is),var(--il));
	box-shadow: 0 6px 24px hsla(var(--bh),var(--bs),var(--bl),.08);
	z-index: 150;
}

.cookies-two.is-active {
	display: flex;
}

.cookies-two__text {
	display: block;
	margin-bottom: var(--gap-small);
	font-size: .9em;
	line-height: 1.45em;
}

.cookies-two__text,.cookies-two__text>a {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.cookies-two__button .is-narrow {
	width: 270px;
	max-width: unset;
}

@media (min-width:768px) {
	.cookies-two {
		bottom: 2rem;
		left: 2rem;
	}
}

.cross,.product-engage {
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.cross {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
	border-radius: var(--border-radius-small);
	cursor: pointer;
}

.cross .core-cross {
	display: block;
	width: 8px;
	height: 8px;
	fill: hsl(var(--th),var(--ts),var(--tl));
	transition: fill .25s ease;
}

.cross:hover .core-cross {
	fill: #8f8f8f;
}

.cross.is-top-right {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 1;
}

.cross.is-top-left {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 1;
}

.product-engage {
	display: grid;
	border-radius: var(--border-radius-normal);
}

.product-engage__content {
	display: flex;
	flex-direction: column;
	padding: 1rem;
}

.product-engage__text {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: var(--gap);
	font-size: var(--name-font-size);
	font-weight: 600;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.product-engage__button {
	margin-top: auto;
}

.product-engage__image-wrapper {
	position: relative;
	display: none;
	align-self: end;
	width: 150px;
	overflow: hidden;
	isolation: isolate;
	margin-right: 1rem;
}

.product-engage__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	object-fit: cover;
}

@media (min-width:580px) {
	.product-engage {
		grid-template-columns: 1fr auto;
	}

	.product-engage__image-wrapper {
		display: block;
	}
}

@media (min-width:768px) {
	.product-engage__content {
		padding: 1.5rem;
	}

	.product-engage__image-wrapper {
		margin-right: 1.5rem;
	}
}

.error-message {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 300px;
}

.error-message--gap {
	margin-bottom: var(--gap);
}

.error-message__icon {
	margin-bottom: var(--gap-small);
}

.error-message__icon .icon-cross-alter {
	display: block;
	width: 80px;
	height: 80px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 16%));
}

.error-message__message {
	margin-top: var(--gap-small);
	text-align: center;
	line-height: 1.45em;
}

.error-message__message>a {
	cursor: pointer;
	text-decoration: underline;
	color: hsl(var(--th),var(--ts),var(--tl));
}

@media (min-width:992px) {
	.error-message {
		min-height: 400px;
	}

	.error-message__icon .icon-cross-alter {
		width: 100px;
		height: 100px;
	}
}

.expand-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 10px;
	border-radius: var(--border-radius-small);
	box-shadow: var(--shadow-modal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	cursor: pointer;
}

.expand-button>svg {
	width: 16px;
	height: 16px;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.expand-button>svg:last-of-type {
	display: block;
}

.expand-button>svg:first-of-type {
	display: none;
}

.expand-button.is-active>svg:last-of-type {
	display: none;
}

.expand-button.is-active>svg:first-of-type {
	display: block;
}

.expand-button--gap {
	margin-bottom: var(--gap);
}

.faq-one {
	border-width: 1px;
	border-radius: var(--border-radius-small);
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-style: solid;
	background-color: hsl(var(--ah),var(--as),var(--al));
	transition: box-shadow .2s ease-in-out,border-color .2s ease-in-out;
}

.faq-one--gap {
	margin-bottom: var(--gap);
}

.faq-one.is-active {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.faq-one.is-active .faq-one__icon {
	transform: rotate(-45deg);
}

.faq-one.is-active .faq-one__icon::after,.faq-one.is-active .faq-one__icon::before {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.faq-one.is-active,.faq-one:hover {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
}

.faq-one__question-wrapper {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 2rem;
	padding: 1rem 1.6rem;
	box-sizing: border-box;
	cursor: pointer;
}

.faq-one__question {
	font-size: var(--name-font-size);
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
}

.faq-one__icon-wrapper {
	display: flex;
	align-items: center;
	height: 1.45em;
}

.faq-one__icon {
	position: relative;
	width: 18px;
	height: 18px;
	transition: transform .2s ease-in-out;
}

.faq-one__icon::after,.faq-one__icon::before {
	content: '';
	position: absolute;
	background-color: #000;
}

.faq-one__icon::before {
	width: 2px;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.faq-one__icon::after {
	height: 2px;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.faq-one__answer-wrapper {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease-out;
}

.faq-one__answer {
	padding: 0 1.6rem 1rem;
	box-sizing: border-box;
	font-size: .95em;
	line-height: 1.45em;
}

@media (min-width:768px) {
	.faq-one__answer {
		font-size: 1em;
	}
}

.favorite-button {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	user-select: none;
	cursor: pointer;
	white-space: nowrap;
}

.favorite-button[data-text]:not([data-text=''])::after {
	display: inline-block;
	content: attr(data-text);
}

.favorite-button.is-small {
	font-size: 15px;
}

.favorite-button.is-small[data-text]:not([data-text=''])::after {
	margin-left: 6px;
}

.favorite-button.is-small .favorite-button__svg {
	width: 18px;
	height: 18px;
}

.favorite-button.is-medium[data-text]:not([data-text=''])::after {
	margin-left: 8px;
}

.favorite-button.is-medium .favorite-button__svg {
	width: 22px;
	height: 22px;
}

.favorite-button__svg {
	display: block;
	cursor: pointer;
	overflow: visible;
}

.favorite-button__wrapper {
	transform-origin: center;
}

.favorite-button__heart {
	fill: hsl(var(--bh),var(--bs),var(--bl));
	stroke: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
	stroke-width: 2px;
	transform-origin: center;
	animation: animateHeartOut .3s linear forwards;
}

.favorite-button__circle {
	fill: #fd6363;
	opacity: 0;
	transform-origin: 29.5px 29.5px;
}

.favorite-button.is-active[data-text]:not([data-text=''])::after {
	content: attr(data-active-text);
}

.favorite-button.is-active .favorite-button__heart {
	fill: #fd6363;
	stroke: #fd6363;
	transform: scale(.2);
	animation: animateHeart .3s linear forwards .25s;
}

.favorite-button.is-active .favorite-button__circle {
	opacity: 1;
	transition: all 2s;
	animation: animateCircle .3s linear forwards;
}

.favorite-button.is-active .favorite-button__group {
	opacity: 1;
	transition: .1s all .3s;
}

.favorite-button.is-active .favorite-button__group circle:nth-of-type(1) {
	transform-origin: 0 0 0;
	transition: .5s transform .3s;
}

.favorite-button.is-active .favorite-button__group circle:nth-of-type(2) {
	transform-origin: 0 0 0;
	transition: 1.5s transform .3s;
}

.favorite-button.is-active .favorite-button__group--1 circle:nth-of-type(1) {
	transform: scale(0) translate(0,-20px);
}

.favorite-button.is-active .favorite-button__group--1 circle:nth-of-type(2) {
	transform: scale(0) translate(10px,-33px);
}

.favorite-button.is-active .favorite-button__group--2 circle:nth-of-type(1) {
	transform: scale(0) translate(20px,-10px);
}

.favorite-button.is-active .favorite-button__group--2 circle:nth-of-type(2) {
	transform: scale(0) translate(40px,-10px);
}

.favorite-button.is-active .favorite-button__group--3 circle:nth-of-type(1) {
	transform: scale(0) translate(20px,0);
}

.favorite-button.is-active .favorite-button__group--3 circle:nth-of-type(2) {
	transform: scale(0) translate(40px,7px);
}

.favorite-button.is-active .favorite-button__group--4 circle:nth-of-type(1) {
	transform: scale(0) translate(20px,10px);
}

.favorite-button.is-active .favorite-button__group--4 circle:nth-of-type(2) {
	transform: scale(0) translate(27px,33px);
}

.favorite-button.is-active .favorite-button__group--5 circle:nth-of-type(1) {
	transform: scale(0) translate(-7px,13px);
}

.favorite-button.is-active .favorite-button__group--5 circle:nth-of-type(2) {
	transform: scale(0) translate(-40px,20px);
}

.favorite-button.is-active .favorite-button__group--6 circle:nth-of-type(1) {
	transform: scale(0) translate(-20px,0);
}

.favorite-button.is-active .favorite-button__group--6 circle:nth-of-type(2) {
	transform: scale(0) translate(-40px,-3px);
}

.favorite-button.is-active .favorite-button__group--7 circle:nth-of-type(1) {
	transform: scale(0) translate(-20px,-10px);
}

.favorite-button.is-active .favorite-button__group--7 circle:nth-of-type(2) {
	transform: scale(0) translate(-37px,-20px);
}

.favorite-button__group {
	opacity: 0;
}

.favorite-button__group circle {
	fill: #fd6363;
}

.favorite-button__group--1 {
	transform: translate(24px);
}

.favorite-button__group--2 {
	transform: translate(44px,6px);
}

.favorite-button__group--3 {
	transform: translate(52px,28px);
}

.favorite-button__group--4 {
	transform: translate(35px,50px);
}

.favorite-button__group--5 {
	transform: translate(14px,50px);
}

.favorite-button__group--6 {
	transform: translate(0,28px);
}

.favorite-button__group--7 {
	transform: translate(7px,6px);
}

.featured {
	display: inline-flex;
	align-items: center;
	max-width: 350px;
	color: currentColor;
	text-decoration: none;
}

.featured--gap {
	margin-bottom: var(--gap);
}

.featured>svg {
	flex-shrink: 0;
	display: block;
	margin-right: var(--gap-small);
	fill: currentColor;
	opacity: .7;
}

.featured__text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.feedback-widget,.feedback-widget__overlay {
	display: none;
}

@media (min-width:992px) {
	.feedback-widget,.feedback-widget__overlay {
		position: fixed;
		display: block;
		pointer-events: none;
	}

	.feedback-widget {
		right: 2rem;
		bottom: 2rem;
		z-index: 140;
	}

	.feedback-widget__overlay {
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 0;
		background-color: var(--dim-intense);
		transition: .2s ease-in-out;
		transition-delay: .1s;
	}

	.feedback-widget.is-active {
		pointer-events: auto;
	}

	.feedback-widget.is-active .feedback-widget__overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.feedback-widget__button {
		opacity: 0;
		transform: scale(0) rotate(-180deg);
		animation: feedback-grow .4s linear forwards;
		animation-delay: 2.5s;
		pointer-events: auto;
		cursor: pointer;
	}

	.feedback-widget__button.is-triggered .feedback-widget__pulse {
		display: none;
	}

	.feedback-widget__button.is-triggered .feedback-widget__circle {
		background-color: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
		transform: scale(.75);
	}

	.feedback-widget__button.is-triggered .feedback-widget__circle>svg.icon-call,.feedback-widget__button.is-triggered .feedback-widget__circle>svg.icon-dialog-alter {
		visibility: hidden;
	}

	.feedback-widget__button.is-triggered .feedback-widget__circle>svg.core-cross {
		transform: translate(-50%,-50%) rotate(90deg);
		opacity: 1;
	}

	.feedback-widget__button.is-triggered .feedback-widget__inner {
		background-color: hsl(var(--bh),var(--bs),var(--bl));
		opacity: .6;
		transform: scale(.75);
	}

	.feedback-widget__inner,.feedback-widget__pulse {
		position: absolute;
		border-radius: 50%;
		transition: transform .2s ease;
	}

	.feedback-widget__inner {
		top: -8px;
		left: -8px;
		height: 82px;
		min-width: 66px;
		width: calc(100% + 16px);
		background: hsl(var(--sh),var(--ss),var(--sl));
		opacity: .2;
	}

	.feedback-widget__pulse {
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		border: 1px solid hsl(var(--sh),var(--ss),var(--sl));
		animation: feedback-pulse infinite 1.5s;
	}

	.feedback-widget__circle {
		position: relative;
		background-color: hsl(var(--sh),var(--ss),var(--sl));
		width: 66px;
		height: 66px;
		border-radius: 50%;
	}

	.feedback-widget__circle>svg {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		display: block;
		width: 28px;
		height: 28px;
		fill: hsl(var(--bh),var(--bs),var(--bl));
	}

	.feedback-widget__circle>svg.icon-call,.feedback-widget__circle>svg.icon-dialog-alter {
		animation: feedback-fade-in-out 3s infinite;
	}

	.feedback-widget__circle>svg.icon-call {
		animation-delay: 0s;
		opacity: 1;
	}

	.feedback-widget__circle>svg.icon-dialog-alter {
		animation-delay: 1.5s;
		opacity: 0;
	}

	.feedback-widget__circle>svg.core-cross {
		transition: transform .4s ease;
		opacity: 0;
	}

	.feedback-widget__list {
		position: relative;
		display: grid;
		grid-gap: var(--gap-small);
		justify-content: center;
		width: 100%;
		margin-bottom: 5px;
		pointer-events: none;
		opacity: 0;
	}

	.feedback-widget.is-active .feedback-widget__list {
		animation: feedback-bottom-open .3s ease forwards;
		pointer-events: auto;
	}

	.feedback-widget__item {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 45px;
		height: 45px;
		border-radius: 50%;
		box-shadow: var(--shadow-light);
		color: hsl(var(--th),var(--ts),var(--tl));
		text-decoration: none;
	}

	.feedback-widget__item.is-phone,.feedback-widget__item.is-telegram {
		background-color: #00acf0;
	}

	.feedback-widget__item.is-whatsapp {
		background-color: #2eb85e;
	}

	.feedback-widget__item.is-max {
		background-color: #9356f5;
	}

	.feedback-widget__item>svg {
		display: block;
		width: 20px;
		height: 20px;
		fill: hsl(var(--bh),var(--bs),var(--bl));
	}

	.feedback-widget__item:hover .feedback-widget__tooltip {
		opacity: 1;
		z-index: 1;
	}

	.feedback-widget__tooltip {
		position: absolute;
		top: 50%;
		right: calc(100% + 8px);
		transform: translateY(-50%);
		display: inline-block;
		padding: 5px 10px;
		max-width: 350px;
		border-radius: var(--border-radius-small);
		background: hsl(var(--bh),var(--bs),var(--bl));
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: .95em;
		transition: opacity .4s linear;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
	}
}

.feedback {
	padding: 0 .5rem;
}

.feedback__title {
	display: block;
	margin-bottom: var(--gap-small);
	text-align: center;
	font-size: var(--subtitle-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.feedback__datetime,.feedback__subtitle {
	display: block;
	text-align: center;
	opacity: .5;
	font-size: .95em;
	line-height: 1.45em;
}

.feedback__subtitle {
	margin-bottom: var(--gap-small);
}

.feedback__block {
	margin-bottom: 15px;
}

.feedback__block.is-hidden {
	display: none;
}

.feedback__label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: 600;
}

.feedback__label.is-required::after {
	content: ' *';
	color: #fd6363;
}

.feedback__input {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.feedback__input:hover:not(:disabled):not(:focus) {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.feedback__input:focus,.feedback__input:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.feedback__input:focus {
	outline: 0;
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.feedback__input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.feedback__input.error,.feedback__input.error:focus,.feedback__input.error:hover,.feedback__input.is-error,.feedback__input.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.feedback__input::-webkit-input-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.feedback__input:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.feedback__error {
	display: block;
	margin-top: 5px;
	font-style: normal;
	font-size: 16px;
	line-height: 1.45em;
	color: #fd6363;
}

.feedback__agree {
	font-size: .95em;
	line-height: 1.45em;
}

.feedback__link {
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: .15s ease-out;
}

.feedback__link:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

@media (min-width:768px) {
	.feedback__input {
		min-height: 46px;
	}
}

.filter-button {
	display: flex;
	align-items: center;
	height: 42px;
	padding: .4rem 1rem;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	font-weight: 600;
	font-size: .95em;
	outline: 0;
	cursor: pointer;
}

.filter-button .icon-filter {
	display: block;
	width: 18px;
	height: 18px;
	margin-right: var(--gap-small);
	fill: #a8a8a8;
	transition: fill .25s;
}

.filter-button:hover .icon-filter {
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.filter--gap,.filter-button--gap {
	margin-bottom: var(--gap);
}

.filter__form {
	position: relative;
}

.filter__form.is-small {
	padding-bottom: 110px;
}

.filter__form.is-small .filter__flex-button {
	display: none;
}

.filter__group {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.filter__group.is-last {
	border-bottom: unset;
}

.filter__group.is-first .filter__top {
	border-top-right-radius: var(--border-radius-normal);
	border-top-left-radius: var(--border-radius-normal);
}

.filter__top {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: var(--gap-small);
	align-items: center;
	padding: .8rem 1rem;
	transition: background-color .25s;
	cursor: pointer;
}

.filter__top:hover,.swatch__select.is-active label:hover {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
}

.filter__name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-weight: 600;
	font-size: .95em;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.filter__collapse-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
}

.filter__collapse-btn .icon-arrow {
	display: block;
	width: 11px;
	height: 11px;
	fill: #a8a8a8;
}

.filter__content {
	display: none;
	padding: .4rem 1.2rem 1rem;
}

.filter__content.is-opened,.filter__search-close.is-active .core-cross {
	display: block;
}

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

.filter__item--range,.filter__range {
	margin-bottom: 1rem;
}

.filter__max,.filter__min {
	width: calc(50% - 5px);
	min-height: 36px;
	box-sizing: border-box;
	padding: 0 .8rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .9em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.filter__max:hover,.filter__min:hover {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.filter__max:focus,.filter__min:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.filter__min {
	margin-right: 5px;
}

.filter__max {
	margin-left: 5px;
}

.filter__color-wrapper,.filter__radio-wrapper {
	display: grid;
	grid-gap: 5px;
}

.filter__color-wrapper {
	grid-template-columns: repeat(7,1fr);
	max-width: 350px;
}

.filter__color-input,.filter__search-close.is-active .icon-search {
	display: none;
}

.filter__color-input:checked~.filter__color-label .filter__color-block {
	filter: brightness(80%);
}

.filter__color-input:checked~.filter__color-label svg {
	visibility: visible;
	transform: scale(1);
	opacity: 1;
	width: auto;
}

.filter__color-label {
	position: relative;
	display: block;
	padding-bottom: calc(100% - 2px);
	border: 1px solid hsl(var(--bh),var(--bs),var(--bl));
	height: 0;
	width: 100%;
	border-radius: 50%;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 1;
}

.filter__color-block,.filter__color-icon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.filter__color-block {
	display: block;
	box-shadow: 0 0 0 1px hsl(220,5%,calc(95% - 4%)),inset 0 0 4px rgba(0,0,0,.1);
	border-radius: 50%;
	z-index: 2;
}

.filter__color-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
}

.filter__color-icon svg {
	width: 0;
	height: 12px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	visibility: hidden;
	transform: scale(0);
	transition: all .3s ease;
	transform-origin: center;
	opacity: 0;
}

.filter__search-wrapper {
	position: relative;
	margin-bottom: var(--gap-small);
}

.filter__search {
	width: 100%;
	min-height: 36px;
	box-sizing: border-box;
	padding: 0 2rem 0 .8rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .9em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.filter__search:hover {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.filter__search:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.filter__search-close {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	padding: 5px;
	background-color: transparent;
	border: 0;
	outline: 0;
}

.filter__search-close.is-active {
	cursor: pointer;
}

.filter__search-close .core-cross {
	display: none;
	width: 10px;
	height: 10px;
	fill: #fd6363;
}

.filter__search-close .icon-search {
	display: block;
	width: 16px;
	height: 16px;
	fill: #a8a8a8;
}

.filter__checkbox-wrapper.is-hidden {
	display: none;
}

.filter__checkbox-wrapper:not(:last-of-type) {
	margin-bottom: 5px;
}

.filter__more {
	display: inline-flex;
	align-items: center;
	margin-top: var(--gap-small);
	font-size: 15px;
	cursor: pointer;
}

.filter__more span {
	border-bottom: 1px dotted #a8a8a8;
}

.filter__more .icon-arrow {
	display: block;
	width: 9px;
	height: 9px;
	margin-left: 5px;
	fill: #a8a8a8;
	transition: transform .2s ease;
}

.filter__more.is-hidden {
	display: none;
}

.filter__controls {
	display: flex;
	flex-direction: column;
	padding: 1rem 1.2rem;
}

.filter__controls.is-small {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: 0 -1px 7px rgba(0,0,0,.1);
	z-index: 10;
}

.filter__controls .filter__submit.is-wide {
	width: 100%;
	max-width: unset;
}

.filter__flex-button,.filter__reset {
	align-items: center;
	font-size: .95em;
	line-height: 1.45em;
	cursor: pointer;
}

.filter__flex-button,.filter__flex-button::before {
	position: absolute;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.filter__flex-button {
	left: 100%;
	display: flex;
	height: 42px;
	padding: .4rem 1rem;
	margin-top: -.5rem;
	border: unset;
	border-radius: var(--border-radius-normal);
	box-shadow: var(--shadow-modal);
	text-decoration: none;
	font-weight: 600;
	user-select: none;
	z-index: 50;
}

.filter__flex-button::before {
	content: '';
	top: 50%;
	left: -5px;
	display: block;
	height: 10px;
	width: 10px;
	transform: translateY(-50%) rotate(45deg);
	border-bottom: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
}

.filter__flex-button .icon-filter {
	display: block;
	width: 18px;
	height: 18px;
	margin-right: var(--gap-small);
	fill: #a8a8a8;
	transition: fill .25s;
}

.filter__flex-button:hover .icon-filter {
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.filter__reset {
	display: inline-flex;
	justify-content: center;
	margin: var(--gap-small) auto 0;
}

.filter__reset .icon-reload {
	display: block;
	width: 15px;
	height: 15px;
	margin-right: 5px;
	fill: #fd6363;
}

.footer-one.is-secondary {
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.footer-one.is-secondary .footer-one__row {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 10%));
}

.footer-one.is-secondary .footer-one__address,.footer-one.is-secondary .footer-one__email,.footer-one.is-secondary .footer-one__text {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.footer-one.is-secondary .footer-one__link,.footer-one.is-secondary .footer-one__phone,.footer-one.is-secondary .footer-one__policy {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.footer-one.is-secondary .footer-one__link:hover,.footer-one.is-secondary .footer-one__phone:hover,.footer-one.is-secondary .footer-one__policy:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.footer-one.is-secondary .footer-one__icon {
	border-top-color: hsl(var(--th),var(--ts),var(--tl));
}

.footer-one.is-secondary .footer-one__scroll:hover {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.footer-one.is-secondary .footer-one__scroll-icon {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 10%));
}

.footer-one.is-secondary .footer-one__select {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.footer-one.is-secondary .footer-one__select:focus,.footer-one.is-secondary .footer-one__select:hover {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.footer-one.is-secondary .footer-one__dev {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.footer-one.is-secondary .footer-one__dev>svg {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 25%));
}

.footer-one.is-primary {
	background-color: hsl(var(--ih),var(--is),var(--il));
	color: hsl(var(--bh),var(--bs),calc(var(--bl) - 20%));
}

.footer-one.is-primary .footer-one__row {
	border-color: hsl(var(--ih),var(--is),calc(var(--il) + 10%));
}

.footer-one.is-primary .footer-one__address,.footer-one.is-primary .footer-one__email,.footer-one.is-primary .footer-one__text {
	color: hsl(var(--bh),var(--bs),calc(var(--bl) - 15%));
	opacity: .5;
}

.footer-one.is-primary .footer-one__link,.footer-one.is-primary .footer-one__phone,.footer-one.is-primary .footer-one__policy {
	color: hsl(var(--bh),var(--bs),calc(var(--bl) - 20%));
}

.footer-one.is-primary .footer-one__link:hover,.footer-one.is-primary .footer-one__phone:hover,.footer-one.is-primary .footer-one__policy:hover,.footer-one.is-primary .footer-one__scroll:hover {
	color: hsl(var(--bh),var(--bs),calc(var(--bl) - 40%));
}

.footer-one.is-primary .footer-one__icon {
	border-top-color: hsl(var(--bh),var(--bs),calc(var(--bl) - 20%));
}

.footer-one.is-primary .footer-one__scroll-icon,.footer-one.is-primary .footer-one__select {
	border-color: hsl(var(--ih),var(--is),calc(var(--il) + 10%));
}

.footer-one.is-primary .footer-one__select {
	background-color: hsl(var(--ih),var(--is),var(--il));
	color: hsl(var(--bh),var(--bs),calc(var(--bl) - 20%));
}

.footer-one.is-primary .footer-one__select:focus,.footer-one.is-primary .footer-one__select:hover {
	color: hsl(var(--bh),var(--bs),calc(var(--bl) - 40%));
}

.footer-one.is-primary .footer-one__dev {
	color: hsl(var(--bh),var(--bs),calc(var(--bl) - 20%));
}

.footer-one.is-primary .footer-one__dev>svg {
	fill: hsl(var(--bh),var(--bs),calc(var(--bl) - 20%));
}

.footer-one__columns {
	display: grid;
	grid-gap: 2rem;
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.footer-one__column>:not(:last-child) {
	margin-bottom: 1rem;
}

.footer-one__title {
	display: block;
	font-size: var(--subtitle-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.footer-one__address,.footer-one__email,.footer-one__text {
	font-size: .95em;
	line-height: 1.45em;
}

.footer-one__phone {
	font-size: 1.45em;
	transition: .3s ease;
}

.footer-one__email,.footer-one__phone {
	display: inline-block;
	text-decoration: none;
}

.footer-one__list {
	display: none;
	margin-left: var(--gap);
}

.footer-one__list:not(:last-of-type) {
	margin-bottom: 5px;
}

.footer-one__dots>img,.footer-one__list.is-opened {
	display: block;
}

.footer-one__item-wrapper {
	break-inside: avoid-column;
}

.footer-one__item-wrapper:not(:last-of-type) {
	margin-bottom: 5px;
}

.footer-one__item.is-parent {
	display: inline-grid;
	grid-template-columns: 1fr auto;
	grid-gap: 10px;
	align-items: start;
	margin-bottom: 5px;
}

.footer-one__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-style: solid;
	border-color: transparent;
	border-left-width: 5px;
	border-top-width: 5px;
	border-right-width: 5px;
	margin-top: 9px;
	transition: .3s ease;
	cursor: pointer;
}

.footer-one__icon.is-opened {
	transform: rotate(-90deg);
}

.footer-one__link {
	font-size: .95em;
	line-height: 1.45em;
	text-decoration: none;
	transition: .3s ease;
}

.footer-one__navigation-title {
	display: block;
	margin-bottom: 1rem;
	font-size: var(--subtitle-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.footer-one__row {
	display: grid;
	grid-gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding-top: 2rem;
	padding-bottom: 2rem;
	border-top-width: 1px;
	border-style: solid;
	font-size: 16px;
	line-height: 1.45em;
}

.footer-one__select {
	display: block;
	width: 100%;
	min-width: 180px;
	padding: .3rem 3rem .3rem .8rem;
	margin: 0;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	appearance: none;
	border-radius: var(--border-radius-small);
	font-size: 15px;
	line-height: 1.45em;
	cursor: pointer;
	transition: .3s ease;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 399 399' xmlns='http://www.w3.org/2000/svg' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23D1CDC6;%7D%3C/style%3E%3Cpath class='st0' d='M199,251.9c-4.7,0-9.4-1.8-13-5.3l-68.8-67.7c-7.3-7.2-7.4-18.9-0.2-26.2c7.2-7.3,18.9-7.4,26.2-0.2l55.8,54.9 l55.8-54.9c7.3-7.2,19-7.1,26.2,0.2c7.2,7.3,7.1,19-0.2,26.2L212,246.5C208.4,250.1,203.7,251.9,199,251.9z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat,repeat;
	background-position: right .6em top 50%;
	background-size: 1.45em auto,100%;
}

.footer-one__select::-ms-expand {
	display: none;
}

.footer-one__select:focus {
	outline: 0;
}

.footer-one__select:not(:last-of-type) {
	margin-bottom: var(--gap);
}

.footer-one__scroll {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	grid-gap: var(--gap-small);
	cursor: pointer;
	transition: .3s ease;
}

.footer-one__scroll-icon {
	display: block;
	padding: 10px;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
}

.footer-one__scroll-icon>svg {
	display: block;
	width: 20px;
	height: 20px;
	transform: rotate(-45deg);
	fill: currentColor;
}

.footer-one__dev {
	display: inline-flex;
	align-items: center;
}

.footer-one__dev>svg {
	display: block;
	width: 30px;
	height: 15px;
	margin-left: var(--gap-small);
}

.footer-one__dev,.footer-one__policy {
	text-decoration: none;
	transition: .3s ease;
}

@media (min-width:768px) {
	.footer-one__row {
		grid-template-columns: 1fr 1fr;
	}

	.footer-one__select-wrapper {
		display: flex;
		align-items: center;
	}

	.footer-one__select:not(:last-of-type) {
		margin-bottom: unset;
		margin-right: var(--gap);
	}

	.footer-one__address,.footer-one__email,.footer-one__link,.footer-one__text {
		font-size: 1em;
	}
}

@media (min-width:992px) {
	.footer-one__columns {
		grid-template-columns: 1fr 1fr;
	}

	.footer-one__navigation.is-two {
		column-fill: balance;
		columns: 2;
	}
}

@media (min-width:1200px) {
	.footer-one__columns.is-one {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.footer-one__columns.is-two {
		grid-template-columns: 1fr 2fr 1fr;
	}

	.footer-one__rating {
		display: flex;
		justify-content: flex-end;
	}

	.footer-one__text {
		text-align: right;
	}

	.footer-one__row {
		display: flex;
		grid-gap: unset;
	}

	.footer-one__row>:not(:first-of-type) {
		margin-left: 2rem;
	}

	.footer-one__row>* {
		max-width: 40%;
	}

	.footer-one__select-wrapper {
		margin-right: auto;
	}
}

.frame--primary,.loader-one.is-secondary>div {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.frame--secondary {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.frame--semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.frame--inverse {
	background-color: hsl(var(--ih),var(--is),var(--il));
}

.frame--border {
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.frame__container {
	box-sizing: border-box;
	width: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
}

.frame__center {
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: var(--frame-padding-mobile);
	box-sizing: border-box;
	padding-bottom: var(--frame-padding-mobile);
}

.frame__center.is-top-10 {
	padding-top: 10px;
}

.frame__center.is-top-20 {
	padding-top: 20px;
}

.frame__center.is-top-30 {
	padding-top: 30px;
}

.frame__center.is-top-40,.frame__center.is-top-50,.frame__center.is-top-60,.frame__center.is-top-70,.frame__center.is-top-80,.frame__center.is-top-90 {
	padding-top: 40px;
}

.frame__center.is-bottom-10 {
	padding-bottom: 10px;
}

.frame__center.is-bottom-20 {
	padding-bottom: 20px;
}

.frame__center.is-bottom-30 {
	padding-bottom: 30px;
}

.frame__center.is-bottom-40,.frame__center.is-bottom-50,.frame__center.is-bottom-60,.frame__center.is-bottom-70,.frame__center.is-bottom-80,.frame__center.is-bottom-90 {
	padding-bottom: 40px;
}

.frame__center.is-full-height {
	min-height: calc(100vh - var(--header-height-mobile) - var(--top-bar-height));
}

.frame__center--four,.frame__center--three,.frame__center--two {
	display: grid;
	grid-gap: 1rem;
}

.frame__column {
	min-width: 0;
}

@media (max-width:767px) {
	.frame--compact .frame__center,.frame--compact .frame__container {
		padding: unset;
	}
}

@media (min-width:768px) {
	.frame__container {
		padding-left: 4rem;
		padding-right: 4rem;
	}

	.frame__center {
		padding-top: var(--frame-padding);
		padding-bottom: var(--frame-padding);
	}

	.frame__center.is-top-10 {
		padding-top: 10px;
	}

	.frame__center.is-top-20 {
		padding-top: 20px;
	}

	.frame__center.is-top-30 {
		padding-top: 30px;
	}

	.frame__center.is-top-40 {
		padding-top: 40px;
	}

	.frame__center.is-top-50 {
		padding-top: 50px;
	}

	.frame__center.is-top-60 {
		padding-top: 60px;
	}

	.frame__center.is-top-70 {
		padding-top: 70px;
	}

	.frame__center.is-top-80 {
		padding-top: 80px;
	}

	.frame__center.is-top-90 {
		padding-top: 90px;
	}

	.frame__center.is-bottom-10 {
		padding-bottom: 10px;
	}

	.frame__center.is-bottom-20 {
		padding-bottom: 20px;
	}

	.frame__center.is-bottom-30 {
		padding-bottom: 30px;
	}

	.frame__center.is-bottom-40 {
		padding-bottom: 40px;
	}

	.frame__center.is-bottom-50 {
		padding-bottom: 50px;
	}

	.frame__center.is-bottom-60 {
		padding-bottom: 60px;
	}

	.frame__center.is-bottom-70 {
		padding-bottom: 70px;
	}

	.frame__center.is-bottom-80 {
		padding-bottom: 80px;
	}

	.frame__center.is-bottom-90 {
		padding-bottom: 90px;
	}

	.frame__center--four,.frame__center--three,.frame__center--two {
		grid-template-columns: repeat(2,1fr);
		grid-gap: 2rem;
	}
}

@media (min-width:992px) {
	.frame__center.is-full-height {
		min-height: calc(100vh - var(--header-height) - var(--top-bar-height));
	}
}

@media (min-width:1300px) {
	.frame__container {
		padding-left: 6rem;
		padding-right: 6rem;
	}

	.frame__center--two {
		grid-template-columns: repeat(2,1fr);
	}

	.frame__center--three {
		grid-template-columns: repeat(3,1fr);
	}

	.frame__center--four {
		grid-template-columns: repeat(4,1fr);
		grid-gap: 1rem;
	}
}

.header-eight,.header-eight .is-desktop {
	display: none;
}

.header-eight .is-mobile {
	display: block;
}

.header-eight__top {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-eight__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-eight__phone-link {
	display: flex;
	flex-direction: column;
	max-width: 350px;
	padding-left: var(--gap-extended);
	box-sizing: border-box;
	border-left: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-eight__phone-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
}

.header-eight__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .7;
}

.header-eight__phone-number {
	font-size: 15px;
	font-weight: 600;
}

@media (min-width:992px) {
	.header-eight {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-eight .is-desktop {
		display: block;
	}

	.header-eight .is-mobile {
		display: none;
	}
}

.header-eleven,.header-eleven .is-desktop {
	display: none;
}

.header-eleven .is-mobile {
	display: block;
}

.header-eleven__top {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	padding-top: 8px;
	padding-bottom: 8px;
	margin: 0 auto;
	box-sizing: border-box;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-eleven__top>:not(:first-child) {
	margin-left: var(--gap);
}

.header-eleven__featured,.header-eleven__links>li>a {
	font-size: .95em;
}

.header-eleven__links {
	margin-right: auto;
}

.header-eleven__phone {
	display: block;
	text-decoration: none;
	color: hsl(var(--bh),var(--bs),var(--bl));
	font-size: .95em;
	white-space: nowrap;
}

.header-eleven__info {
	position: relative;
	display: flex;
	align-items: center;
}

.header-eleven__info .icon-info {
	display: block;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	opacity: .7;
}

.header-eleven__info:hover .header-eleven__info-dropdown,.header-five__cart:hover .header-five__cart-dropdown,.header-fixed-one__info:hover .header-fixed-one__info-dropdown,.header-four__info:hover .header-four__info-dropdown,.header-mobile-one__search.is-active .header-mobile-one__search-content,.header-one__cart:hover .header-one__cart-dropdown,.header-one__info:hover .header-one__info-dropdown,.header-one__search.is-active .header-one__search-content,.header-seven__cart:hover .header-seven__cart-dropdown,.header-seven__search.is-active .header-seven__search-content,.header-six__cart:hover .header-six__cart-dropdown,.header-ten__info:hover .header-ten__info-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-eleven__info-text {
	display: block;
	margin-left: 5px;
	font-size: .95em;
	user-select: none;
}

.header-eleven__info-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-eleven__info-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-eleven__info-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-eleven__profile {
	font-size: .95em;
	text-decoration: none;
	color: currentColor;
	cursor: pointer;
}

.header-eleven__bottom {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-eleven__bottom>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-eleven__bottom>:first-child {
	margin-right: calc(var(--gap)*2);
}

.header-eleven__search {
	flex-grow: 1;
}

.header-eleven__phone-wrapper {
	display: flex;
	align-items: center;
	max-width: 350px;
	padding-left: 15px;
	box-sizing: border-box;
	border-radius: 30px;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-eleven__phone-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.header-eleven__phone-icon svg {
	width: 18px;
	height: 18px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.header-eleven__phone-link {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-eleven__phone-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-eleven__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .75;
}

.header-eleven__phone-number {
	font-size: 15px;
	font-weight: 600;
}

@media (min-width:992px) {
	.header-eleven {
		display: block;
	}
}

@media (min-width:1200px) {
	.header-eleven .is-desktop {
		display: flex;
	}

	.header-eleven .is-mobile {
		display: none;
	}
}

.header-five.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-five,.header-five .is-desktop {
	display: none;
}

.header-five .is-mobile {
	display: block;
}

.header-five__top {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: 20px;
	box-sizing: border-box;
}

.header-five__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-five__top-wrapper {
	display: flex;
	align-items: center;
}

.header-five__top-wrapper>:not(:last-child) {
	margin-right: var(--gap);
}

.header-five__bottom {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: 10px;
	padding-bottom: 20px;
	margin: 0 auto;
	box-sizing: border-box;
}

.header-five__bottom>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-five__bottom>:first-child {
	margin-right: calc(var(--gap)*2);
}

.header-five__bottom-wrapper {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.header-five__bottom-wrapper>:not(:last-child) {
	margin-right: var(--gap);
}

.header-five__phone-link {
	flex-shrink: 0;
	display: none;
	flex-direction: column;
	max-width: 350px;
	padding-left: var(--gap-extended);
	box-sizing: border-box;
	border-left: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-five__phone-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
}

.header-five__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .7;
}

.header-five__phone-number {
	font-size: 15px;
	font-weight: 600;
}

.header-five__buttons {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: auto;
}

.header-five__buttons>:not(:last-child) {
	margin-right: var(--gap);
}

.header-five__button {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.header-five__button>svg {
	cursor: pointer;
}

.header-five__button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-five__button.is-overlay,.header-five__counter {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-five__button.is-overlay>svg,.header-five__cart-link.is-overlay .header-five__cart-icon>svg,.header-one__button.is-overlay>svg,.header-one__cart-link.is-overlay .header-one__cart-icon>svg,.header-seven__button.is-overlay>svg,.header-seven__cart-link.is-overlay .header-seven__cart-icon>svg,.header-six__button.is-overlay .header-six__button-icon>svg,.header-six__mobile-button.is-overlay>svg,.header-three__button.is-overlay>svg,.header-three__cart-link.is-overlay .header-three__cart-icon>svg,.header-three__phone.is-overlay>.icon-phone-alter,.header-twelve__button.is-overlay .header-twelve__button-icon>svg,.header-twelve__mobile-button.is-overlay>svg,.header-two__button.is-overlay .header-two__button-icon>svg,.header-two__mobile-button.is-overlay>svg {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.header-five__counter {
	position: absolute;
	right: -8px;
	top: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.header-five__counter.is-active {
	display: flex;
}

.header-five__cart {
	position: relative;
}

.header-five__cart-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	white-space: nowrap;
}

.header-five__cart-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-five__cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: var(--gap-small);
}

.header-five__button>svg,.header-five__cart-icon>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-five__cart-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-five__cart-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-five__cart-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-five__search {
	width: 100%;
}

@media (min-width:992px) {
	.header-five {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-five .is-desktop {
		display: block;
	}

	.header-five .is-mobile {
		display: none;
	}
}

@media (min-width:1300px) {
	.header-five__phone-link {
		display: flex;
	}
}

.header-fixed-one {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	box-shadow: var(--shadow-header);
	opacity: 0;
	background: linear-gradient(180deg,hsla(var(--ah),var(--as),calc(var(--al) - 8%),.3) 0,hsla(var(--bh),var(--bs),var(--bl),0) 100%);
	background-color: hsla(var(--ah),var(--as),calc(var(--al) + 2%),.8);
	backdrop-filter: blur(10px);
	transform: translateY(-50px);
	transition: transform .15s ease,opacity .25s ease;
	pointer-events: none;
	z-index: 150;
}

.header-fixed-one.is-fixed {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.header-fixed-one__top {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-fixed-one__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-fixed-one__top>:first-child {
	margin-right: calc(var(--gap)*2);
}

.header-fixed-one__phone {
	display: none;
	margin-left: auto;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	text-align: right;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),var(--tl));
	white-space: nowrap;
}

.header-fixed-one__phone>.icon-phone-alter {
	display: block;
	width: 20px;
	height: 20px;
	margin-right: var(--gap-small);
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-fixed-one__phone>.icon-more {
	display: block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	margin-top: 2px;
	fill: #a8a8a8;
}

.header-fixed-one__info {
	position: relative;
}

.header-fixed-one__info .icon-info {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	cursor: pointer;
}

.header-fixed-one__info-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-fixed-one__info-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-fixed-one__info-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

@media (min-width:992px) {
	.header-fixed-one {
		display: block;
	}
}

@media (min-width:1200px) {
	.header-fixed-one__phone {
		display: flex;
		align-items: center;
	}
}

.header-fixed-two {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	box-shadow: var(--shadow-header);
	opacity: 0;
	background: linear-gradient(180deg,hsla(var(--ah),var(--as),calc(var(--al) - 8%),.3) 0,hsla(var(--bh),var(--bs),var(--bl),0) 100%);
	background-color: hsla(var(--ah),var(--as),calc(var(--al) + 2%),.8);
	backdrop-filter: blur(10px);
	transform: translateY(-50px);
	transition: transform .15s ease,opacity .25s ease;
	pointer-events: none;
	z-index: 150;
}

.header-fixed-two.is-fixed {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.header-fixed-two__top {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-fixed-two__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-fixed-two__top>:first-child {
	margin-right: calc(var(--gap)*2);
}

.header-fixed-two__buttons {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: auto;
}

.header-fixed-two__buttons>:not(:last-child) {
	margin-right: var(--gap);
}

.header-fixed-two__button {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.header-fixed-two__button>svg {
	cursor: pointer;
}

.header-fixed-two__button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-fixed-two__counter {
	position: absolute;
	right: -8px;
	top: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.header-fixed-two__counter.is-active {
	display: flex;
}

.header-fixed-two__cart {
	position: relative;
}

.header-fixed-two__cart-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	white-space: nowrap;
}

.header-fixed-two__cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: var(--gap-small);
}

.header-fixed-two__button>svg,.header-fixed-two__cart-icon>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-fixed-two__phone-wrapper {
	display: flex;
	align-items: center;
	max-width: 350px;
	padding-left: 15px;
	box-sizing: border-box;
	border-radius: 30px;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-fixed-two__phone-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-fixed-two__phone-icon svg,.header-four__info-icon svg,.header-nine__phone-icon svg {
	width: 18px;
	height: 18px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.header-fixed-two__phone-link {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-fixed-two__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .7;
}

.header-fixed-two__phone-number {
	font-size: 15px;
	font-weight: 600;
}

@media (min-width:992px) {
	.header-fixed-two {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-fixed-two .is-desktop {
		display: block;
	}

	.header-fixed-two .is-mobile {
		display: none;
	}
}

.header-four,.header-four .is-desktop {
	display: none;
}

.header-four .is-mobile {
	display: block;
}

.header-four__top {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-four__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-four__slogan {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-width: 220px;
	padding-left: var(--gap-extended);
	border-left: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	font-size: 14px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .75;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.header-four__slogan.is-overlay {
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-four__info {
	position: relative;
	display: flex;
	align-items: center;
}

.header-four__info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.header-four__info-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-four__info-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-four__info-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2.5rem;
}

@media (min-width:992px) {
	.header-four {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-four .is-desktop {
		display: block;
	}

	.header-four .is-mobile {
		display: none;
	}
}

.header-mobile-one {
	position: relative;
	padding: 5px 0;
	z-index: 15;
}

.header-mobile-one__top {
	display: flex;
	align-items: center;
}

.header-mobile-one__top>:not(:last-child) {
	margin-right: 1rem;
}

.header-mobile-one__logo {
	flex-grow: 1;
	display: flex;
	height: 50px;
}

.header-mobile-one__search-center {
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	box-sizing: border-box;
}

.header-mobile-one__search-title {
	font-size: var(--name-font-size);
	font-weight: 600;
}

.header-mobile-one__burger {
	flex-grow: 0;
	flex-basis: auto;
	padding: 5px;
}

.header-mobile-one__phone-button,.header-mobile-one__search-button {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	padding: 5px;
}

.header-mobile-one__burger {
	display: block;
	height: 14px;
	width: 20px;
	margin-right: var(--gap-small);
	border-radius: 1px;
	cursor: pointer;
	flex-shrink: 0;
	user-select: none;
	margin-right: unset;
	color: hsl(var(--ah),var(--as),calc(var(--al) - 40%));
}

.header-mobile-one__burger:after,.header-mobile-one__burger:before {
	content: '';
	display: block;
	height: 2px;
	border-radius: inherit;
	background: currentColor;
	transition: filter .5s,transform .5s;
}

.header-mobile-one__burger:after {
	filter: drop-shadow(0 -6px currentColor);
	transform: translateY(10px);
}

.header-mobile-one__phone-button {
	display: block;
	text-decoration: none;
}

.header-mobile-one__phone-button .icon-phone-alter,.header-mobile-one__search-button .icon-search {
	display: block;
	width: 21px;
	height: 21px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 40%));
}

.header-mobile-one__search-button .icon-search {
	width: 17px;
	height: 17px;
}

.header-mobile-one__search {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0s ease-in-out;
	z-index: 160;
}

.header-mobile-one__search.is-active {
	opacity: 1;
	visibility: visible;
	transition-duration: .2s;
}

.header-mobile-one__search-content {
	position: relative;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-30px);
	transition: .3s ease;
	transition-delay: .2s;
	z-index: 2;
}

.header-mobile-one__search-header {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 1rem;
	align-items: center;
	margin-bottom: 15px;
}

.header-mobile-one__search-close {
	position: relative;
	border: unset;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
	cursor: pointer;
	width: 26px;
	height: 26px;
}

.header-mobile-one__search-close:after,.header-mobile-one__search-close:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 2px;
	background-color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .3;
	transition: opacity .3s ease;
	appearance: none;
}

.header-mobile-one__search-close:before {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.header-mobile-one__search-close:after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.header-mobile-one__search-close:focus::after,.header-mobile-one__search-close:focus::before,.header-mobile-one__search-close:hover::after,.header-mobile-one__search-close:hover::before,.header-one__search-close:focus::after,.header-one__search-close:focus::before,.header-one__search-close:hover::after,.header-one__search-close:hover::before,.header-seven__search-close:focus::after,.header-seven__search-close:focus::before,.header-seven__search-close:hover::after,.header-seven__search-close:hover::before {
	opacity: 1;
}

.header-mobile-one__search-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
	z-index: 1;
}

@media (min-width:992px) {
	.header-mobile-one {
		display: none;
	}
}

.header-mobile-two {
	position: relative;
	padding: 5px 0;
	z-index: 15;
}

.header-mobile-two__top {
	display: flex;
	align-items: center;
}

.header-mobile-two__top>:not(:last-child) {
	margin-right: var(--gap-small);
}

.header-mobile-two__logo {
	flex-grow: 1;
	display: flex;
	height: 50px;
}

.header-mobile-two__burger,.header-mobile-two__phone-button {
	flex-grow: 0;
	flex-basis: auto;
	padding: 5px;
}

.header-mobile-two__phone-button {
	flex-shrink: 0;
}

.header-mobile-two__burger {
	display: block;
	height: 14px;
	width: 20px;
	margin-right: var(--gap-small);
	border-radius: 1px;
	cursor: pointer;
	flex-shrink: 0;
	user-select: none;
	margin-right: unset;
	color: hsl(var(--ah),var(--as),calc(var(--al) - 40%));
}

.header-mobile-two__burger:after,.header-mobile-two__burger:before {
	content: '';
	display: block;
	height: 2px;
	border-radius: inherit;
	background: currentColor;
	transition: filter .5s,transform .5s;
}

.header-mobile-two__burger:after {
	filter: drop-shadow(0 -6px currentColor);
	transform: translateY(10px);
}

.header-mobile-two__phone-button {
	display: block;
	text-decoration: none;
}

.header-mobile-two__phone-button .icon-phone-alter,.header-mobile-two__phone-button .icon-telegram-alter,.header-mobile-two__phone-button .icon-whatsapp-alter {
	display: block;
	width: 21px;
	height: 21px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 40%));
}

@media (min-width:992px) {
	.header-mobile-two {
		display: none;
	}
}

.header-nine,.header-nine .is-desktop {
	display: none;
}

.header-nine .is-mobile {
	display: block;
}

.header-nine__top {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-nine__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-nine__slogan {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-width: 220px;
	padding-left: var(--gap-extended);
	border-left: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	font-size: 14px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .75;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.header-nine__slogan.is-overlay {
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
	opacity: 1;
}

.header-nine__phone-wrapper {
	display: flex;
	align-items: center;
	max-width: 350px;
	padding-left: 15px;
	box-sizing: border-box;
	border-radius: 30px;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-nine__phone-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.header-nine__phone-link {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-nine__phone-link.is-overlay,.header-nine__slogan.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-nine__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .7;
}

.header-nine__phone-number {
	font-size: 15px;
	font-weight: 600;
}

@media (min-width:992px) {
	.header-nine {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-nine .is-desktop {
		display: block;
	}

	.header-nine .is-mobile {
		display: none;
	}
}

.header-one,.header-one .is-desktop {
	display: none;
}

.header-one .is-mobile {
	display: block;
}

.header-one__top {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	padding-top: 8px;
	padding-bottom: 8px;
	margin: 0 auto;
	box-sizing: border-box;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-one__top>:not(:first-child) {
	margin-left: var(--gap);
}

.header-one__featured,.header-one__links>li>a {
	font-size: .95em;
}

.header-one__links {
	margin-right: auto;
}

.header-one__phone {
	display: block;
	text-decoration: none;
	color: hsl(var(--bh),var(--bs),var(--bl));
	font-size: .95em;
	white-space: nowrap;
}

.header-one__info {
	position: relative;
	display: flex;
	align-items: center;
}

.header-one__info .icon-info {
	display: block;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	opacity: .7;
}

.header-one__info-text {
	display: none;
	margin-left: 5px;
	font-size: .95em;
	user-select: none;
}

.header-one__info-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-one__info-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-one__info-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-one__bottom {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-one__bottom>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-one__bottom>:first-child {
	margin-right: calc(var(--gap)*2);
}

.header-one__buttons {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: auto;
}

.header-one__buttons>:not(:last-child) {
	margin-right: var(--gap);
}

.header-one__button {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.header-one__button>svg {
	cursor: pointer;
}

.header-one__button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-one__button.is-overlay,.header-one__counter {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-one__counter {
	position: absolute;
	right: -8px;
	top: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.header-one__counter.is-active {
	display: flex;
}

.header-one__cart {
	position: relative;
}

.header-one__cart-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	white-space: nowrap;
}

.header-one__cart-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-one__cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: var(--gap-small);
}

.header-one__button>svg,.header-one__cart-icon>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-one__cart-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-one__cart-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-one__cart-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-one__search {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0s ease-in-out;
	z-index: 160;
}

.header-one__search.is-active {
	opacity: 1;
	visibility: visible;
	transition-duration: .2s;
}

.header-one__search-content {
	position: relative;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-30px);
	transition: .3s ease;
	transition-delay: .2s;
	z-index: 2;
}

.header-one__search-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 2rem;
	align-items: center;
	padding-left: calc(36px + 2rem);
}

.header-one__search-close {
	position: relative;
	border: unset;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
	cursor: pointer;
	width: 36px;
	height: 36px;
}

.header-one__search-close:after,.header-one__search-close:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background-color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .3;
	transition: opacity .3s ease;
	appearance: none;
}

.header-one__search-close:before {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.header-one__search-close:after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.header-one__search-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
	z-index: 1;
}

.header-one__phone-wrapper {
	display: flex;
	align-items: center;
	max-width: 350px;
	padding-left: 15px;
	box-sizing: border-box;
	border-radius: 30px;
	text-decoration: none;
}

.header-one__phone-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.header-one__phone-icon svg {
	width: 18px;
	height: 18px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.header-one__phone-link {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-one__phone-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-one__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .75;
}

.header-one__phone-number {
	font-size: 15px;
	font-weight: 600;
}

@media (min-width:992px) {
	.header-one {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-one .is-desktop,.header-one__info-text {
		display: block;
	}

	.header-one .is-mobile {
		display: none;
	}
}

.header-seven {
	display: none;
}

.header-seven__wrapper {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-seven__wrapper>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-seven__wrapper>:first-child {
	margin-right: calc(var(--gap)*2);
}

.header-seven__buttons {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: auto;
}

.header-seven__buttons>:not(:last-child) {
	margin-right: var(--gap);
}

.header-seven__button {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.header-seven__button>svg {
	cursor: pointer;
}

.header-seven__button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-seven__button.is-overlay,.header-seven__counter {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-seven__counter {
	position: absolute;
	right: -8px;
	top: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.header-seven__counter.is-active {
	display: flex;
}

.header-seven__cart {
	position: relative;
}

.header-seven__cart-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	white-space: nowrap;
}

.header-seven__cart-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-seven__cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: var(--gap-small);
}

.header-seven__button>svg,.header-seven__cart-icon>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-seven__cart-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-seven__cart-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-seven__cart-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-seven__search {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0s ease-in-out;
	z-index: 160;
}

.header-seven__search.is-active {
	opacity: 1;
	visibility: visible;
	transition-duration: .2s;
}

.header-seven__search-content {
	position: relative;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-30px);
	transition: .3s ease;
	transition-delay: .2s;
	z-index: 2;
}

.header-seven__search-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 2rem;
	align-items: center;
	padding-left: calc(36px + 2rem);
}

.header-seven__search-close {
	position: relative;
	border: unset;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
	cursor: pointer;
	width: 36px;
	height: 36px;
}

.header-seven__search-close:after,.header-seven__search-close:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background-color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .3;
	transition: opacity .3s ease;
	appearance: none;
}

.header-seven__search-close:before {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.header-seven__search-close:after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.header-seven__search-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
	z-index: 1;
}

.header-seven__phone-wrapper {
	display: flex;
	align-items: center;
	max-width: 350px;
	padding-left: 15px;
	box-sizing: border-box;
	border-radius: 30px;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-seven__phone-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.header-seven__phone-icon svg {
	width: 18px;
	height: 18px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.header-seven__phone-link {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-seven__phone-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-seven__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .7;
}

.header-seven__phone-number {
	font-size: 15px;
	font-weight: 600;
}

@media (min-width:992px) {
	.header-seven {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-seven .is-desktop,.header-seven__info-text {
		display: block;
	}

	.header-seven .is-mobile {
		display: none;
	}
}

.header-six.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-six,.header-six .is-desktop {
	display: none;
}

.header-six .is-mobile {
	display: block;
}

.header-six__top {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: 15px;
	box-sizing: border-box;
}

.header-six__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-six__phone-link {
	flex-shrink: 0;
	display: none;
	flex-direction: column;
	max-width: 350px;
	padding-left: var(--gap-extended);
	box-sizing: border-box;
	border-left: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-six__phone-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
}

.header-six__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .7;
}

.header-six__phone-number {
	font-size: 15px;
	font-weight: 600;
}

.header-six__middle-wrapper {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.header-six__middle-wrapper>:not(:last-child) {
	margin-right: 1rem;
}

.header-six__search {
	flex-grow: 1;
}

.header-six__buttons {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: auto;
}

.header-six__buttons>:not(:last-child) {
	margin-right: var(--gap);
}

.header-six__mobile-button {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.header-six__mobile-button>svg {
	cursor: pointer;
}

.header-six__mobile-button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-six__button.is-overlay,.header-six__mobile-button.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-six__button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-six__button-icon {
	position: relative;
}

.header-six__button-icon>svg,.header-six__mobile-button>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-six__button-icon .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-six__counter {
	position: absolute;
	right: -8px;
	top: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.header-six__counter.is-active {
	display: flex;
}

.header-six__button-text {
	display: block;
	margin-top: 2px;
	font-size: .95em;
	text-align: center;
}

.header-six__cart {
	position: relative;
}

.header-six__cart-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-six__cart-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-six__cart-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-six__bottom {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: 15px;
	padding-bottom: 20px;
	margin: 0 auto;
	box-sizing: border-box;
}

.header-six__bottom>:not(:last-child) {
	margin-right: var(--gap-extended);
}

@media (min-width:992px) {
	.header-six {
		display: block;
	}
}

@media (min-width:1200px) {
	.header-six__phone-link {
		display: flex;
	}
}

@media (min-width:1400px) {
	.header-six .is-desktop {
		display: flex;
	}

	.header-six .is-mobile {
		display: none;
	}
}

.header-ten,.header-ten .is-desktop {
	display: none;
}

.header-ten .is-mobile {
	display: block;
}

.header-ten__top {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	padding-top: 8px;
	padding-bottom: 8px;
	margin: 0 auto;
	box-sizing: border-box;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-ten__top>:not(:first-child) {
	margin-left: var(--gap);
}

.header-ten__featured,.header-ten__links>li>a {
	font-size: .95em;
}

.header-ten__links {
	margin-right: auto;
}

.header-ten__phone {
	display: block;
	text-decoration: none;
	color: hsl(var(--bh),var(--bs),var(--bl));
	font-size: .95em;
	white-space: nowrap;
}

.header-ten__info {
	position: relative;
	display: flex;
	align-items: center;
}

.header-ten__info .icon-info {
	display: block;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	opacity: .7;
}

.header-ten__info-text {
	display: none;
	margin-left: 5px;
	font-size: .95em;
	user-select: none;
}

.header-ten__info-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-ten__info-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-ten__info-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-ten__bottom {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-ten__bottom>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-ten__bottom>:first-child {
	margin-right: calc(var(--gap)*2);
}

.header-ten__slogan {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-width: 220px;
	padding-left: var(--gap-extended);
	border-left: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	font-size: 14px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .75;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.header-ten__slogan.is-overlay {
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

@media (min-width:992px) {
	.header-ten {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-ten .is-desktop,.header-ten__info-text {
		display: block;
	}

	.header-ten .is-mobile {
		display: none;
	}
}

.header-three,.header-three .is-desktop {
	display: none;
}

.header-three .is-mobile {
	display: block;
}

.header-three__top {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: var(--gap-small);
	padding-bottom: var(--gap-small);
	margin: 0 auto;
	box-sizing: border-box;
}

.header-three__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-three__top>:first-child {
	margin-right: calc(var(--gap)*2);
}

.header-three__phone {
	display: none;
	margin-left: auto;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	text-align: right;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),var(--tl));
	white-space: nowrap;
}

.header-three__phone>.icon-phone-alter {
	display: block;
	width: 20px;
	height: 20px;
	margin-right: var(--gap-small);
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-three__phone>.icon-more {
	display: block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	margin-top: 2px;
	fill: #a8a8a8;
}

.header-three__phone.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-three__phone.is-overlay>.icon-more {
	fill: hsla(var(--bh),var(--bs),var(--bl),.5);
}

.header-three__info {
	position: relative;
}

.header-three__info .icon-info {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	cursor: pointer;
}

.header-three__cart:hover .header-three__cart-dropdown,.header-three__info:hover .header-three__info-dropdown,.header-twelve__cart:hover .header-twelve__cart-dropdown,.header-twelve__info:hover .header-twelve__info-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-three__info-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-three__info-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-three__info-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-three__buttons {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: auto;
}

.header-three__buttons>:not(:last-child) {
	margin-right: var(--gap);
}

.header-three__button {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.header-three__button>svg {
	cursor: pointer;
}

.header-three__button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-three__button.is-overlay,.header-three__counter {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-three__counter {
	position: absolute;
	right: -8px;
	top: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.header-three__counter.is-active {
	display: flex;
}

.header-three__cart {
	position: relative;
}

.header-three__cart-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	white-space: nowrap;
}

.header-three__cart-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-three__cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: var(--gap-small);
}

.header-three__button>svg,.header-three__cart-icon>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-three__cart-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-three__cart-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-three__cart-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

@media (min-width:992px) {
	.header-three {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-three .is-desktop {
		display: block;
	}

	.header-three .is-mobile {
		display: none;
	}
}

@media (min-width:1200px) {
	.header-three__phone {
		display: flex;
		align-items: center;
	}
}

.header-twelve.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-twelve,.header-twelve .is-desktop {
	display: none;
}

.header-twelve .is-mobile {
	display: block;
}

.header-twelve__top {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: 15px;
	box-sizing: border-box;
}

.header-twelve__middle>:not(:last-child),.header-twelve__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-twelve__middle {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
}

.header-twelve__phone-link {
	flex-shrink: 0;
	display: none;
	flex-direction: column;
	max-width: 350px;
	padding-left: var(--gap-extended);
	box-sizing: border-box;
	border-left: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	font-size: .9em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.header-twelve__phone-link.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
}

.header-twelve__phone-text {
	font-size: 14px;
	line-height: 1.2em;
	opacity: .7;
}

.header-twelve__phone-number {
	font-size: 15px;
	font-weight: 600;
}

.header-twelve__middle-wrapper {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.header-twelve__middle-wrapper>:not(:last-child) {
	margin-right: 1rem;
}

.header-twelve__search {
	flex-grow: 1;
}

.header-twelve__buttons {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: auto;
}

.header-twelve__buttons>:not(:last-child) {
	margin-right: var(--gap);
}

.header-twelve__mobile-button {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.header-twelve__mobile-button>svg {
	cursor: pointer;
}

.header-twelve__mobile-button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-twelve__button.is-overlay,.header-twelve__mobile-button.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-twelve__button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-twelve__button-icon {
	position: relative;
}

.header-twelve__button-icon>svg,.header-twelve__mobile-button>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-twelve__button-icon .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-twelve__counter {
	position: absolute;
	right: -8px;
	top: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.header-twelve__counter.is-active {
	display: flex;
}

.header-twelve__button-text {
	display: block;
	margin-top: 2px;
	font-size: .95em;
	text-align: center;
}

.header-twelve__cart {
	position: relative;
}

.header-twelve__cart-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-twelve__cart-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-twelve__cart-content::before,.header-twelve__info-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-twelve__info {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.header-twelve__info .icon-more {
	display: block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	margin-top: 2px;
	fill: #a8a8a8;
}

.header-twelve__info.is-overlay .icon-more {
	fill: hsla(var(--bh),var(--bs),var(--bl),.5);
}

.header-twelve__info-text {
	font-size: .95em;
	user-select: none;
}

.header-twelve__info-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-twelve__info-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-twelve__info-content::before {
	right: 1.5rem;
}

.header-twelve__frame {
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.header-twelve__frame.is-overlay {
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
}

.header-twelve__bottom {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0 auto;
	box-sizing: border-box;
}

.header-twelve__bottom>:not(:last-child) {
	margin-right: var(--gap-extended);
}

@media (min-width:992px) {
	.header-twelve {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-twelve .is-desktop {
		display: flex;
	}

	.header-twelve .is-mobile {
		display: none;
	}
}

@media (min-width:1200px) {
	.header-twelve__phone-link {
		display: flex;
	}
}

.header-two.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-two,.header-two .is-desktop {
	display: none;
}

.header-two .is-mobile {
	display: block;
}

.header-two__top {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: 15px;
	box-sizing: border-box;
}

.header-two__top>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-two__top-wrapper {
	display: flex;
	align-items: center;
}

.header-two__top-wrapper>:not(:last-child) {
	margin-right: var(--gap);
}

.header-two__featured {
	font-size: .95em;
}

.header-two__links {
	margin-right: auto;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-two__links.is-overlay {
	color: hsla(var(--bh),var(--bs),var(--bl),.75);
}

.header-two__info {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.header-two__info .icon-more {
	display: block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	margin-top: 2px;
	fill: #a8a8a8;
}

.header-two__info:hover .header-two__info-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-two__info.is-overlay .icon-more {
	fill: hsla(var(--bh),var(--bs),var(--bl),.5);
}

.header-two__info-text {
	font-size: .95em;
	user-select: none;
}

.header-two__info-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-two__info-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-two__info-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 1.5rem;
}

.header-two__phone-link {
	text-decoration: none;
	color: currentColor;
	font-size: 15px;
	font-weight: 600;
}

.header-two__profile {
	font-size: .95em;
	color: currentColor;
	text-decoration: none;
}

.header-two__middle {
	display: flex;
	align-items: center;
	max-width: var(--frame-width);
	margin: 0 auto;
	padding-top: 15px;
	padding-bottom: 15px;
	box-sizing: border-box;
}

.header-two__middle>:not(:last-child) {
	margin-right: var(--gap-extended);
}

.header-two__slogan {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-width: 180px;
	padding-left: var(--gap-extended);
	border-left: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	font-size: 14px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .75;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.header-two__slogan.is-overlay {
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
	color: hsl(var(--bh),var(--bs),var(--bl));
	opacity: 1;
}

.header-two__middle-wrapper {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.header-two__middle-wrapper>:not(:last-child) {
	margin-right: 1rem;
}

.header-two__search {
	flex-grow: 1;
}

.header-two__buttons {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: auto;
}

.header-two__buttons>:not(:last-child) {
	margin-right: var(--gap);
}

.header-two__mobile-button {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.header-two__mobile-button>svg {
	cursor: pointer;
}

.header-two__mobile-button .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-two__button.is-overlay,.header-two__mobile-button.is-overlay {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.header-two__button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-two__button-icon {
	position: relative;
}

.header-two__button-icon>svg,.header-two__mobile-button>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.header-two__button-icon .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.header-two__counter {
	position: absolute;
	right: -8px;
	top: -8px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.header-two__counter.is-active {
	display: flex;
}

.header-two__button-text {
	display: block;
	margin-top: 2px;
	font-size: .95em;
	text-align: center;
}

.header-two__cart {
	position: relative;
}

.header-two__cart:hover .header-two__cart-dropdown,.hotspot-one__spot:hover>.hotspot-one__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-two__cart-dropdown {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	right: -2rem;
	top: 100%;
	padding-top: var(--gap);
}

.header-two__cart-content {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 400px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
}

.header-two__cart-content::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 2rem;
}

.header-two__bottom {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: var(--frame-width);
	padding-bottom: 15px;
	margin: 0 auto;
	box-sizing: border-box;
}

.header-two__bottom>:not(:last-child) {
	margin-right: var(--gap-extended);
}

@media (min-width:992px) {
	.header-two {
		display: block;
	}
}

@media (min-width:1100px) {
	.header-two .is-desktop {
		display: flex;
	}

	.header-two .is-mobile {
		display: none;
	}
}

@media (min-width:1400px) {
	.header-two__slogan {
		display: block;
		display: -webkit-box;
	}
}

.hotspot-one {
	position: relative;
	max-width: 600px;
	border-radius: var(--border-radius-normal);
}

.hotspot-one:hover {
	z-index: 1;
}

.hotspot-one--gap {
	margin-bottom: var(--gap);
}

.hotspot-one__dot>span,.hotspot-one__image-container {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.hotspot-one__image-container {
	position: relative;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
	isolation: isolate;
}

.hotspot-one__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	object-fit: cover;
}

.hotspot-one__spot {
	position: absolute;
}

.hotspot-one__spot:hover .hotspot-one__dot>span {
	background-color: #fd6363;
	transition: background-color .3s ease;
}

.hotspot-one__dot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: hsla(var(--bh),var(--bs),var(--bl),.2);
	cursor: pointer;
}

.hotspot-one__dot>span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 5px solid hsl(var(--bh),var(--bs),var(--bl));
	transition-delay: .1s;
}

.hotspot-one__dropdown-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	padding-top: var(--gap-small);
}

.hotspot-one__dropdown,.hotspot-one__name {
	display: block;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.hotspot-one__dropdown {
	position: relative;
	max-width: 300px;
	min-width: 260px;
	padding: .5rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	text-decoration: none;
}

.hotspot-one__name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: .95em;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.hotspot-one__price {
	margin-top: 5px;
}

.hotspot-one__error {
	display: block;
	padding: 1rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-align: center;
	font-size: .95em;
	line-height: 1.45em;
}

.irs--round {
	height: 50px;
}

.irs--round.irs-with-grid {
	height: 65px;
}

.irs--round .irs-line {
	top: 36px;
	height: 4px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: 4px;
}

.irs--round .irs-bar,.link-three:hover::after {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.irs--round .irs-bar {
	top: 36px;
	height: 4px;
}

.irs--round .irs-bar--single {
	border-radius: 4px 0 0 4px;
}

.irs--round .irs-shadow {
	height: 4px;
	bottom: 21px;
	background-color: hsla(var(--ah),var(--as),var(--al),.5);
}

.irs--round .irs-handle {
	top: 26px;
	width: 22px;
	height: 22px;
	border: 3px solid hsl(var(--ph),var(--ps),calc(var(--pl) - 8%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 22px;
}

.irs--round .irs-handle.state_hover,.irs--round .irs-handle:hover,.navigation-one__dropdown-item>a:hover,.navigation-two__dropdown-item>a:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.irs--round .irs-max,.irs--round .irs-min {
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: 14px;
	line-height: 1;
	top: 0;
	padding: 3px 5px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: 4px;
}

.irs--round .irs-from,.irs--round .irs-single,.irs--round .irs-to {
	font-size: 14px;
	line-height: 1;
	text-shadow: none;
	padding: 3px 5px;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 4px;
}

.irs--round .irs-grid {
	height: 25px;
}

.irs--round .irs-grid-pol {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.irs--round .irs-grid-text {
	color: hsl(var(--ah),var(--as),calc(var(--al) - 16%));
	font-size: 13px;
}

.irs,.irs-line {
	position: relative;
	display: block;
}

.irs {
	-webkit-touch-callout: none;
	user-select: none;
	font-size: 12px;
	font-family: Arial,sans-serif;
}

.irs-line {
	overflow: hidden;
	outline: 0!important;
}

.irs-bar,.irs-shadow {
	position: absolute;
	display: block;
	left: 0;
	width: 0;
}

.irs-shadow {
	display: none;
}

.irs-handle {
	box-sizing: border-box;
	z-index: 1;
}

.irs-handle.type_last {
	z-index: 2;
}

.irs-handle,.irs-max,.irs-min {
	position: absolute;
	display: block;
	cursor: default;
}

.irs-min {
	left: 0;
}

.irs-max {
	right: 0;
}

.irs-from,.irs-single,.irs-to {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	cursor: default;
	white-space: nowrap;
}

.irs-grid {
	position: absolute;
	display: none;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
}

.irs-with-grid .irs-grid {
	display: block;
}

.irs-grid-pol {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 8px;
	background: #000;
}

.irs-grid-pol.small {
	height: 4px;
}

.irs-grid-text {
	position: absolute;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	text-align: center;
	font-size: 9px;
	line-height: 9px;
	padding: 0 3px;
	color: #000;
}

.irs-disable-mask {
	position: absolute;
	display: block;
	top: 0;
	left: -1%;
	width: 102%;
	height: 100%;
	cursor: default;
	background: 0 0;
	z-index: 2;
}

.lt-ie9 .irs-disable-mask {
	background: #000;
	filter: alpha(opacity=0);
	cursor: not-allowed;
}

.irs-disabled {
	opacity: .4;
}

.irs-hidden-input {
	position: absolute!important;
	display: block!important;
	top: 0!important;
	left: 0!important;
	width: 0!important;
	height: 0!important;
	font-size: 0!important;
	line-height: 0!important;
	padding: 0!important;
	margin: 0!important;
	overflow: hidden;
	outline: 0!important;
	z-index: -9999!important;
	background: 0 0!important;
	border-style: solid!important;
	border-color: transparent!important;
}

.item-one {
	display: block;
	max-width: 800px;
	padding: 1rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
	transform: translateY(0);
	box-shadow: var(--shadow-moderate);
	transition: .15s ease-out;
}

.item-one:hover {
	box-shadow: var(--shadow-high);
	transform: translateY(-2px);
}

.item-one--gap {
	margin-bottom: var(--gap);
}

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

.item-one__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: var(--gap-small);
	flex-shrink: 0;
}

.item-one__icon .icon-set,.item-three__icon .icon-set {
	width: 44px;
	height: 44px;
	fill: hsl(var(--sh),var(--ss),var(--sl));
}

.item-one__icon>img,.item-three__icon>img,.item-two__icon>img {
	display: block;
	max-width: 60px;
	height: auto;
}

.item-one__name {
	display: block;
	margin-top: auto;
	font-weight: 600;
	font-size: var(--name-font-size);
	line-height: 1.45em;
}

.item-one__text {
	display: block;
	margin-top: 5px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	line-height: 1.45em;
	font-size: .95em;
}

@media (min-width:768px) {
	.item-one {
		padding: 1.5rem;
	}
}

.item-three {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 1rem;
	align-items: flex-start;
}

.item-three--gap {
	margin-bottom: var(--gap);
}

.item-three__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.item-three__icon .icon-set {
	width: 55px;
	height: 55px;
}

.item-three__name {
	display: block;
	font-weight: 600;
	line-height: 1.45em;
}

.item-three__text {
	display: block;
	margin-top: 5px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	line-height: 1.45em;
	font-size: .95em;
}

.item-two {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 1rem;
	align-items: flex-start;
	max-width: 800px;
	padding: 1rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
	transform: translateY(0);
	box-shadow: var(--shadow-moderate);
	transition: .15s ease-out;
}

.item-two:hover {
	box-shadow: var(--shadow-high);
	transform: translateY(-2px);
}

.item-two--gap {
	margin-bottom: var(--gap);
}

.item-two__name {
	display: block;
	font-size: var(--name-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.item-two__text {
	display: block;
	margin-top: 2px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	line-height: 1.45em;
	font-size: .95em;
}

.item-two__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.item-two__icon .icon-set {
	width: 44px;
	height: 44px;
	fill: hsl(var(--sh),var(--ss),var(--sl));
}

@media (min-width:768px) {
	.item-two {
		grid-gap: 1.5rem;
		padding: 1.5rem;
	}
}

.link-five {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	transition: color .3s ease;
	cursor: pointer;
}

.link-five.is-primary {
	color: inherit;
}

.link-five.is-primary:hover,.link-five.is-secondary:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.link-five.is-secondary {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.link-five--gap {
	margin-bottom: var(--gap);
}

.link-five__text {
	position: relative;
	line-height: 1.45em;
}

.link-five__text::before,.link-one__text::before {
	content: '';
	position: absolute;
	top: 105%;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	box-sizing: border-box;
	background-color: hsl(var(--th),var(--ts),var(--tl));
	transform: scaleX(0);
	transition: transform .3s cubic-bezier(.25,.46,.45,.94);
	transform-origin: right center;
}

.link-five:hover .link-one__text::before {
	transform: scaleX(1);
	transform-origin: left center;
}

.link-five__icon {
	display: inline-block;
	padding-left: 10px;
}

.link-five .icon-link-out {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.link-four {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: start;
	max-width: 800px;
	padding: 1.6rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	text-decoration: none;
}

.link-four.is-primary {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.link-four.is-primary .link-four__desc {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.link-four.is-primary .icon-arrow-top-right {
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.link-four.is-secondary {
	background-color: hsl(var(--ih),var(--is),calc(var(--il) + 8%));
	border: 1px solid hsla(var(--bh),var(--bs),var(--bl),.15);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.link-four.is-secondary .link-four__desc {
	opacity: .5;
}

.link-four.is-secondary .icon-arrow-top-right {
	fill: hsl(var(--bh),var(--bs),var(--bl));
	opacity: .5;
}

.link-four--gap {
	margin-bottom: var(--gap);
}

.link-four__desc {
	margin-bottom: var(--gap-small);
	font-size: .95em;
	line-height: 1.45em;
	letter-spacing: .03em;
}

.link-four__text {
	font-size: var(--name-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.link-four .icon-arrow-top-right {
	display: block;
	width: 25px;
	height: 25px;
	margin-top: auto;
	margin-left: auto;
	padding-top: var(--gap);
}

@media (min-width:768px) {
	.link-four__desc {
		font-size: 1em;
	}
}

.link-one,.navigation-one__item>a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
}

.link-one.is-primary {
	color: inherit;
}

.link-one.is-primary .link-one__text::before {
	background: currentColor;
}

.link-one.is-primary .icon-arrow {
	fill: currentColor;
}

.link-one.is-secondary {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.link-one.is-secondary .link-one__text::before {
	background: hsl(var(--bh),var(--bs),var(--bl));
}

.link-one.is-secondary .icon-arrow {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.link-one--gap {
	margin-bottom: var(--gap);
}

.link-one__text {
	position: relative;
}

.link-one:hover .link-one__text::before {
	transform: scaleX(1);
	transform-origin: left center;
}

.link-one__icon {
	display: inline-block;
	padding-left: 10px;
	transition: padding .2s cubic-bezier(.25,.46,.45,.94);
}

.link-one:hover .link-one__icon {
	padding-left: 15px;
}

.link-one .icon-arrow {
	position: relative;
	display: block;
	width: 11px;
	height: 11px;
	transform: rotate(-90deg);
}

.link-three {
	position: relative;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 1.45em;
	transition: color .3s ease;
	cursor: pointer;
}

.link-three.is-primary {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.link-three.is-secondary,.link-three:hover {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.link-three--gap {
	margin-bottom: var(--gap);
}

.link-three::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: -10px;
	transform: scale3d(0,0,0);
	width: calc(100% + 20px);
	height: 100%;
	border-radius: var(--border-radius-small);
	z-index: 1;
}

.link-three:hover::after {
	animation: highlight .8s both;
}

.link-three__text {
	position: relative;
	z-index: 2;
}

.link-two {
	position: relative;
	display: block;
	max-width: 800px;
	padding: 1rem;
	padding-right: calc(1rem + 25px + 1rem);
	box-sizing: border-box;
	text-decoration: none;
	border-radius: var(--border-radius-normal);
	transform: translateY(0);
	box-shadow: var(--shadow-moderate);
	transition: .15s ease-out;
}

.link-two:hover {
	box-shadow: var(--shadow-high);
	transform: translateY(-2px);
}

.link-two.is-primary {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.link-two.is-primary .icon-arrow-top-right {
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.link-two.is-primary .link-two__desc,.navigation-one.is-primary .navigation-one__item>a {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.link-two.is-secondary {
	background-color: hsl(var(--ih),var(--is),calc(var(--il) + 8%));
	border: 1px solid hsla(var(--bh),var(--bs),var(--bl),.15);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.link-two.is-secondary .icon-arrow-top-right {
	fill: hsl(var(--bh),var(--bs),var(--bl));
	opacity: .5;
}

.link-two.is-secondary .link-two__desc {
	opacity: .5;
}

.link-two--gap {
	margin-bottom: var(--gap);
}

.link-two__text {
	display: block;
	font-size: var(--name-font-size);
	font-weight: 600;
	line-height: 1.45em;
}

.link-two__desc {
	display: block;
	margin-top: 5px;
	line-height: 1.45em;
	font-size: .95em;
}

.link-two .icon-arrow-top-right {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	display: block;
	width: 25px;
	height: 25px;
	transform: rotate(45deg);
}

@media (min-width:768px) {
	.link-two {
		padding: 1.5rem;
		padding-right: calc(1.5rem + 25px + 1rem);
	}
}

.loader-one {
	display: inline-grid;
	grid-template-columns: repeat(3,auto);
	text-align: center;
}

.loader-one.is-semitone>div {
	background-color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.loader-one>div {
	display: inline-block;
	border-radius: 50%;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loader-one>div:nth-child(1) {
	animation-delay: -.32s;
}

.loader-one>div:nth-child(2) {
	animation-delay: -.16s;
}

.loader-one.is-small,.loader-one.is-tiny {
	grid-gap: 4px;
}

.loader-one.is-tiny>div {
	width: 5px;
	height: 5px;
}

.loader-one.is-small>div {
	width: 6px;
	height: 6px;
}

.loader-one.is-medium {
	grid-gap: 6px;
}

.loader-one.is-medium>div {
	width: 8px;
	height: 8px;
}

.loader-one.is-large {
	grid-gap: 8px;
}

.loader-one.is-large>div {
	width: 12px;
	height: 12px;
}

.loader-one--gap {
	margin-bottom: var(--gap);
}

.loader-two {
	display: inline-flex;
}

.loader-two .core-spinner {
	animation: spinner-rotate 2s linear infinite;
}

.loader-two .core-spinner__path {
	stroke-linecap: round;
	stroke-width: 5px;
	animation: spinner-dash 1.5s ease-in-out infinite;
}

.loader-two.is-primary .core-spinner__path {
	stroke: hsl(var(--ph),var(--ps),var(--pl));
}

.loader-two.is-secondary .core-spinner__path {
	stroke: hsl(var(--bh),var(--bs),var(--bl));
}

.loader-two.is-semitone .core-spinner__path {
	stroke: hsl(var(--ah),var(--as),calc(var(--al) - 10%));
}

.loader-two.is-tiny .core-spinner {
	width: 20px;
	height: 20px;
}

.loader-two.is-small .core-spinner {
	width: 25px;
	height: 25px;
}

.loader-two.is-medium .core-spinner {
	width: 30px;
	height: 30px;
}

.loader-two.is-large .core-spinner {
	width: 35px;
	height: 35px;
}

.loader-two--gap {
	margin-bottom: var(--gap);
}

.logo {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.logo.is-primary .logo__svg {
	fill: hsl(var(--ih),var(--is),var(--il));
}

.logo.is-secondary .logo__svg {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.logo--gap {
	margin-bottom: var(--gap);
}

.logo__image,.logo__svg {
	display: block;
	width: auto;
}

.logo__svg {
	height: 100%;
	max-height: 60px;
}

.marketplaces--gap,.messengers--gap {
	margin-bottom: var(--gap);
}

.marketplaces__title,.messengers__title {
	display: block;
	margin-bottom: 5px;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.marketplaces__list,.messengers__list {
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1*var(--gap-small));
	margin-right: calc(-.5*var(--gap-small));
	margin-left: calc(-.5*var(--gap-small));
}

.marketplaces__item,.messengers__item {
	flex: 0 0 auto;
	padding-right: calc(var(--gap-small)*.5);
	padding-left: calc(var(--gap-small)*.5);
	margin-top: var(--gap-small);
	box-sizing: border-box;
}

.marketplaces__link,.messengers__link {
	display: flex;
	align-items: center;
	height: 42px;
	max-width: 300px;
	padding: .4rem 1rem;
	margin: 1px;
	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	font-size: 1em;
	line-height: 1.45em;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: .2s ease;
	outline: 0;
	cursor: pointer;
}

.marketplaces__link>span,.messengers__link>span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.marketplaces__link:hover,.messengers__link:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	box-shadow: 0 0 1px 1px hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.marketplaces__link svg,.messengers__link svg {
	flex-shrink: 0;
	margin-right: var(--gap-small);
}

.metric-one--gap {
	margin-bottom: var(--gap);
}

.metric-one__header {
	position: relative;
	display: inline-block;
	margin-bottom: var(--gap-small);
}

.metric-one__counter {
	font-size: 3.5em;
	line-height: 1em;
	font-weight: 700;
}

.metric-one__description {
	position: absolute;
	left: calc(100% + 20px);
	bottom: .5em;
	transform-origin: bottom left;
	transform: rotate(-90deg);
	white-space: nowrap;
	font-size: .85em;
	font-weight: 700;
}

.metric-one__text {
	font-size: .95em;
	line-height: 1.45em;
}

@media (min-width:768px) {
	.metric-one__text {
		font-size: 1em;
	}
}

@media (min-width:1200px) {
	.metric-one__counter {
		font-size: 4em;
	}

	.metric-one__description {
		font-size: .95em;
	}

	.metric-one__text {
		font-size: 1em;
	}
}

.metric-two {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100px;
	padding: 1.5rem;
	border-radius: var(--border-radius-normal);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.metric-two--gap {
	margin-bottom: var(--gap);
}

.metric-two__counter {
	font-size: 2em;
	line-height: 1em;
	font-weight: 700;
}

.metric-two__description {
	font-size: var(--name-font-size);
	font-weight: 600;
}

.metric-two__description,.metric-two__text {
	display: block;
	margin-top: var(--gap-small);
	line-height: 1.45em;
}

@media (min-width:992px) {
	.metric-two {
		min-height: 150px;
		padding: 2rem 3rem;
	}

	.metric-two__counter {
		font-size: 3em;
	}
}

.mini-cart__empty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 200px;
	text-align: center;
}

.mini-cart__empty.is-hidden {
	display: none;
}

.mini-cart__empty-name {
	margin-bottom: var(--gap-small);
	font-size: var(--name-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.mini-cart__empty-description {
	opacity: .5;
}

.mini-cart__empty-image {
	display: flex;
	justify-content: center;
	margin-top: var(--gap);
}

.mini-cart__empty-image .icon-shopping-cart {
	width: 150px;
}

.mini-cart__empty-image .icon-shopping-cart .is-primary {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 20%));
}

.mini-cart__empty-image .icon-shopping-cart .is-secondary {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 40%));
}

.mini-cart__empty-image .icon-shopping-cart .is-main {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.mini-cart__not-empty {
	min-height: 200px;
}

.mini-cart__not-empty.is-hidden {
	display: none;
}

.mini-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1rem;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.mini-cart__title {
	font-size: var(--name-font-size);
	font-weight: 600;
}

.mini-cart__remove-all {
	padding: 2px 10px;
	border-radius: var(--border-radius-small);
	cursor: pointer;
	font-size: .95em;
	transition: background-color .2s ease-in-out;
}

.mini-cart__remove-all:hover {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.mini-cart__wrapper {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.mini-cart__wrapper>:not(:first-child) {
	margin-top: var(--gap-small);
}

.mini-cart__wrapper.is-overflow {
	max-height: 200px;
	padding-right: 1rem;
	overflow-y: scroll;
}

.mini-cart__wrapper::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: transparent;
}

.mini-cart__wrapper::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: 4px;
	margin-left: 5px;
}

.mini-cart__item {
	display: grid;
	grid-template-columns: 60px 1fr auto;
	grid-gap: 1rem;
	align-items: start;
	min-height: 60px;
}

.mini-cart__item.is-loading {
	opacity: .5;
	pointer-events: none;
}

.mini-cart__image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
}

.mini-cart__image {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	border-radius: var(--border-radius-small);
	font-size: 0;
}

.mini-cart__link {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	margin-top: 5px;
	margin-bottom: 5px;
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.mini-cart__price-wrapper {
	display: flex;
	align-items: center;
}

.mini-cart__quantity {
	display: block;
	padding: 2px 10px;
	margin-left: 1rem;
	background-color: hsl(var(--ah),var(--as),var(--al));
	border-radius: var(--border-radius-small);
	font-size: 13px;
	line-height: 1.45em;
	font-weight: 600;
}

.mini-cart__total {
	font-weight: 600;
}

.mini-cart__remove {
	position: relative;
	border: unset;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
	cursor: pointer;
	width: 26px;
	height: 26px;
	margin-top: 5px;
}

.mini-cart__remove:after,.mini-cart__remove:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 2px;
	background-color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .3;
	transition: opacity .3s ease;
	appearance: none;
}

.mini-cart__remove:before {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.mini-cart__remove:after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.mini-cart__remove:focus::after,.mini-cart__remove:focus::before,.mini-cart__remove:hover::after,.mini-cart__remove:hover::before {
	opacity: 1;
}

.mini-cart__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.navigation-one {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	white-space: nowrap;
	align-items: center;
	width: 0;
}

.navigation-one.is-primary .navigation-one__item>a>svg {
	fill: #a8a8a8;
}

.navigation-one.is-secondary .navigation-one__item>a {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.navigation-one.is-secondary .navigation-one__item>a>svg {
	fill: hsla(var(--bh),var(--bs),var(--bl),.5);
}

.navigation-one.is-center {
	justify-content: center;
}

.navigation-one.is-right {
	justify-content: flex-end;
}

.navigation-one.is-right>:not(:first-child) {
	margin-left: var(--gap);
}

.navigation-one:not(.is-right)>:not(:last-child) {
	margin-right: var(--gap);
}

.navigation-one.is-initial {
	visibility: hidden;
	overflow: hidden;
}

.navigation-one__item {
	position: relative;
	display: inline-flex;
}

.navigation-one__item.is-hidden {
	display: none;
}

.navigation-one__item>a>svg {
	display: block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	margin-top: 3px;
}

.navigation-one__image {
	flex-shrink: 0;
	display: block;
	margin-right: 8px;
	border-radius: var(--border-radius-small);
}

.navigation-one__dropdown-item>.navigation-one__dropdown-wrapper,.navigation-one__item>.navigation-one__dropdown-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	opacity: 0;
	visibility: hidden;
}

.navigation-one__item>.navigation-one__dropdown-wrapper {
	transform: translateY(10px);
	z-index: 155;
	padding-top: var(--gap);
}

.navigation-one__item>.navigation-one__dropdown-wrapper.is-bottom-start .navigation-one__dropdown::before {
	left: 2rem;
}

.navigation-one__item>.navigation-one__dropdown-wrapper.is-bottom .navigation-one__dropdown::before {
	left: 50%;
}

.navigation-one__item>.navigation-one__dropdown-wrapper.is-bottom-end .navigation-one__dropdown::before {
	right: 2rem;
}

.navigation-one__item>.navigation-one__dropdown-wrapper>.navigation-one__dropdown {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	max-width: 400px;
	min-width: 160px;
	padding: .5rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
}

.navigation-one__item>.navigation-one__dropdown-wrapper>.navigation-one__dropdown::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
}

.navigation-one__item:hover>.navigation-one__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navigation-one__dropdown-item>.navigation-one__dropdown-wrapper {
	padding: 0 calc(.5rem + 3px);
	transform: translateX(1rem);
	z-index: 1;
}

.navigation-one__dropdown-item>.navigation-one__dropdown-wrapper>.navigation-one__dropdown {
	max-width: 400px;
	min-width: 160px;
	padding: .5rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
}

.navigation-one__dropdown-item:hover>.navigation-one__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.navigation-one__dropdown-item>a {
	display: flex;
	align-items: center;
	padding: .4rem .8rem .4rem .7rem;
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
	text-decoration: none;
	transition: background-color .1s ease;
	border-radius: var(--border-radius-small);
}

.navigation-one__dropdown-item>a>svg {
	flex-shrink: 0;
	display: block;
	width: 8px;
	height: 8px;
	margin-left: var(--gap);
	fill: #a8a8a8;
	transform: rotate(-90deg);
}

.navigation-two {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	white-space: nowrap;
	width: 0;
}

.navigation-two.is-center {
	justify-content: center;
}

.navigation-two.is-right {
	justify-content: flex-end;
}

.navigation-two.is-right>:not(:first-child) {
	margin-left: var(--gap);
}

.navigation-two:not(.is-right)>:not(:last-child) {
	margin-right: var(--gap);
}

.navigation-two.is-initial {
	visibility: hidden;
	overflow: hidden;
}

.navigation-two__item {
	position: relative;
	display: inline-block;
}

.navigation-two__item.is-hidden {
	display: none;
}

.navigation-two__item.is-active::before {
	content: '';
	position: absolute;
	top: calc(50% - 12px);
	right: -6px;
	display: block;
	width: 8px;
	height: 8px;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	border-radius: 50%;
}

.navigation-two__item>a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: currentColor;
	cursor: pointer;
}

.navigation-two__item>a>svg,.product-navigation__item>a>svg {
	display: block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	margin-top: 3px;
	fill: #a8a8a8;
}

.navigation-two__dropdown-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	padding-top: var(--gap);
}

.navigation-two__dropdown-wrapper.is-bottom-start .navigation-two__dropdown::before {
	left: 2rem;
}

.navigation-two__dropdown-wrapper.is-bottom .navigation-two__dropdown::before {
	left: 50%;
}

.navigation-two__dropdown-wrapper.is-bottom-end .navigation-two__dropdown::before {
	right: 2rem;
}

.navigation-two__item:hover>.navigation-two__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navigation-two__dropdown,.navigation-two__dropdown::before {
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.navigation-two__dropdown {
	position: relative;
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	max-width: 400px;
	min-width: 160px;
	padding: .5rem;
	border-radius: var(--border-radius-normal);
}

.navigation-two__dropdown::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	transform: translateX(-50%) rotate(45deg);
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
}

.navigation-two__dropdown-item>a {
	display: flex;
	align-items: center;
	padding: .4rem 1rem .4rem .9rem;
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
	text-decoration: none;
	transition: background-color .1s ease;
	border-radius: var(--border-radius-small);
}

.navigation-two__dropdown-item>a span,.product-navigation__dropdown-item>a span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.newsletter__title {
	display: block;
	margin-bottom: var(--gap-small);
	text-align: center;
	font-size: var(--subtitle-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.newsletter form.is-active,.newsletter__subtitle {
	text-align: center;
	opacity: .5;
	font-size: .95em;
	line-height: 1.45em;
}

.newsletter__subtitle {
	display: block;
	margin-bottom: var(--gap-small);
}

.newsletter__block {
	margin-bottom: 15px;
}

.newsletter__label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: 600;
}

.newsletter__label.is-required::after {
	content: ' *';
	color: #fd6363;
}

.newsletter__input {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.newsletter__input:hover:not(:disabled):not(:focus) {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.newsletter__input:focus,.newsletter__input:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.newsletter__input:focus {
	outline: 0;
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.newsletter__input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.newsletter__input.error,.newsletter__input.error:focus,.newsletter__input.error:hover,.newsletter__input.is-error,.newsletter__input.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.newsletter__input::-webkit-input-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.newsletter__input:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.newsletter__agree {
	font-size: .95em;
	line-height: 1.45em;
}

.newsletter__errors {
	margin-top: 5px;
}

.newsletter__errors>:not(:last-child) {
	margin-bottom: 5px;
}

.newsletter__error {
	display: block;
	font-style: normal;
	font-size: 16px;
	line-height: 1.45em;
	color: #fd6363;
	text-align: left;
}

@media (min-width:768px) {
	.newsletter__input {
		min-height: 46px;
	}
}

.notification {
	position: fixed;
	right: .5rem;
	display: flex;
	flex-direction: column;
	margin-left: .5rem;
}

.notification.is-top {
	top: .5rem;
	z-index: 210;
}

.notification.is-top .notification__item {
	max-width: 370px;
}

.notification.is-bottom {
	bottom: .5rem;
	z-index: 200;
}

.notification.is-bottom .notification__item {
	max-width: 570px;
}

.notification.is-primary .notification__item {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-card);
}

.notification.is-secondary .notification__item {
	background-color: #fed7d7;
}

.notification__item {
	position: relative;
	display: block;
	width: 100%;
	border-radius: var(--border-radius-small);
	opacity: 0;
	transform: translateX(100px);
	transition: all .25s cubic-bezier(.25,.46,.45,.94);
	overflow: hidden;
}

.notification__item:not(:last-of-type) {
	margin-bottom: 1rem;
}

.notification__product {
	position: relative;
	display: grid;
	grid-template-columns: 60px 1fr;
	grid-gap: 1rem;
	align-items: center;
	padding: 1rem;
}

.notification__product-title {
	display: block;
	font-size: .95em;
	line-height: 1.45em;
	font-weight: 600;
}

.notification__product-image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
}

.notification__product-image {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	border-radius: var(--border-radius-small);
	font-size: 0;
}

.notification__product-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .9em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.notification__container {
	position: relative;
	padding: 1rem calc(1rem + 24px) 1rem 1rem;
}

.notification__message {
	font-size: .95em;
	line-height: 1.45em;
}

.notification__close {
	border: unset;
	border-radius: 50%;
	background-color: hsl(var(--ah),var(--as),var(--al));
	cursor: pointer;
	position: absolute;
	top: .5rem;
	right: .5rem;
	width: 26px;
	height: 26px;
}

.notification__close:after,.notification__close:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 2px;
	background-color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .3;
	transition: opacity .3s ease;
	appearance: none;
}

.notification__close:before {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.notification__close:after {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.notification__close:focus::after,.notification__close:focus::before,.notification__close:hover::after,.notification__close:hover::before {
	opacity: 1;
}

@media (min-width:768px) {
	.notification {
		right: 1rem;
		margin-left: 1rem;
	}

	.notification.is-top {
		top: 1rem;
	}

	.notification.is-bottom {
		bottom: 1rem;
	}

	.notification__container {
		padding: 1rem calc(1rem + 24px) 1rem 1.5rem;
	}

	.notification__product-title {
		font-size: 1em;
	}

	.notification__product-name {
		font-size: .95em;
	}
}

.page-one.is-sfpro b:not(.element b),.page-one.is-sfpro h1:not(.element):not(.element h1),.page-one.is-sfpro h2:not(.element):not(.element h2),.page-one.is-sfpro h3:not(.element):not(.element h3),.page-one.is-sfpro h4:not(.element):not(.element h4),.page-one.is-sfpro h5:not(.element):not(.element h5),.page-one.is-sfpro h6:not(.element):not(.element h6),.page-one.is-sfpro strong:not(.element strong),.page-one.is-sfpro th:not(.element th) {
	font-family: 'sfpro',sans-serif;
}

.page-one.is-open-sans b:not(.element b),.page-one.is-open-sans h1:not(.element):not(.element h1),.page-one.is-open-sans h2:not(.element):not(.element h2),.page-one.is-open-sans h3:not(.element):not(.element h3),.page-one.is-open-sans h4:not(.element):not(.element h4),.page-one.is-open-sans h5:not(.element):not(.element h5),.page-one.is-open-sans h6:not(.element):not(.element h6),.page-one.is-open-sans strong:not(.element strong),.page-one.is-open-sans th:not(.element th) {
	font-family: 'open-sans',sans-serif;
}

.page-one.is-gilroy b:not(.element b),.page-one.is-gilroy h1:not(.element):not(.element h1),.page-one.is-gilroy h2:not(.element):not(.element h2),.page-one.is-gilroy h3:not(.element):not(.element h3),.page-one.is-gilroy h4:not(.element):not(.element h4),.page-one.is-gilroy h5:not(.element):not(.element h5),.page-one.is-gilroy h6:not(.element):not(.element h6),.page-one.is-gilroy strong:not(.element strong),.page-one.is-gilroy th:not(.element th) {
	font-family: 'gilroy',sans-serif;
}

.page-one.is-raleway b:not(.element b),.page-one.is-raleway h1:not(.element):not(.element h1),.page-one.is-raleway h2:not(.element):not(.element h2),.page-one.is-raleway h3:not(.element):not(.element h3),.page-one.is-raleway h4:not(.element):not(.element h4),.page-one.is-raleway h5:not(.element):not(.element h5),.page-one.is-raleway h6:not(.element):not(.element h6),.page-one.is-raleway strong:not(.element strong),.page-one.is-raleway th:not(.element th) {
	font-family: 'raleway',sans-serif;
}

.page-one.is-mulish b:not(.element b),.page-one.is-mulish h1:not(.element):not(.element h1),.page-one.is-mulish h2:not(.element):not(.element h2),.page-one.is-mulish h3:not(.element):not(.element h3),.page-one.is-mulish h4:not(.element):not(.element h4),.page-one.is-mulish h5:not(.element):not(.element h5),.page-one.is-mulish h6:not(.element):not(.element h6),.page-one.is-mulish strong:not(.element strong),.page-one.is-mulish th:not(.element th) {
	font-family: 'mulish',sans-serif;
}

.page-one h1:not(.element):not(.element h1),.page-one h2:not(.element):not(.element h2),.page-one h3:not(.element):not(.element h3),.page-one h4:not(.element):not(.element h4),.page-one h5:not(.element):not(.element h5),.page-one h6:not(.element):not(.element h6),.page-one strong:not(.element strong) {
	font-weight: 600;
}

.page-one h1:not(.element):not(.element h1),.page-one h2:not(.element):not(.element h2),.page-one h3:not(.element):not(.element h3),.page-one h4:not(.element):not(.element h4),.page-one h5:not(.element):not(.element h5),.page-one h6:not(.element):not(.element h6) {
	line-height: 1.45em;
}

.page-one blockquote:not(.element blockquote),.page-one h1:not(.element):not(.element h1),.page-one h2:not(.element):not(.element h2),.page-one h3:not(.element):not(.element h3),.page-one h4:not(.element):not(.element h4),.page-one h5:not(.element):not(.element h5),.page-one h6:not(.element):not(.element h6),.page-one img:not(.element img),.page-one ol:not(.element ol),.page-one p:not(.element p),.page-one table:not(.element table),.page-one ul:not(.element ul) {
	margin-bottom: 25px;
}

.page-one blockquote:not(.element blockquote):last-child,.page-one h1:not(.element):not(.element h1):last-child,.page-one h2:not(.element):not(.element h2):last-child,.page-one h3:not(.element):not(.element h3):last-child,.page-one h4:not(.element):not(.element h4):last-child,.page-one h5:not(.element):not(.element h5):last-child,.page-one h6:not(.element):not(.element h6):last-child,.page-one ol:not(.element ol):last-child,.page-one p:not(.element p):last-child,.page-one table:not(.element table):last-child,.page-one ul:not(.element ul):last-child {
	margin-bottom: unset;
}

.page-one p:not(.element p) {
	line-height: 1.6em;
}

.page-one ol:not(.element ol),.page-one ul:not(.element ul):not(.element) {
	list-style-type: none;
	counter-reset: item;
}

.page-one ol li:not(.element li),.page-one ul li:not(.element li) {
	margin-bottom: 15px;
	line-height: 1.6em;
}

.page-one ol li:not(.element li)::before,.page-one ul li:not(.element li)::before {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-right: var(--gap);
	border-radius: 50%;
	background-color: #e4f1fc;
	color: #566a81;
	font-weight: 700;
}

.page-one ol li:not(.element li) {
	counter-increment: item;
}

.page-one ol li:not(.element li)::before {
	content: counter(item);
	font-size: 14px;
	line-height: 14px;
}

.page-one ul li:not(.element li)::before {
	content: '\2713';
	font-size: 16px;
	line-height: 16px;
}

.page-one blockquote:not(.element blockquote) {
	display: block;
	width: 100%;
	padding: .8rem 1rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: rgba(253,232,180,.5);
	line-height: 1.6em;
}

.page-one img:not(.element img) {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius-small);
}

.page-one hr:not(.element hr) {
	margin: 0 0 20px;
	border: unset;
	height: 1px;
	border-radius: 4px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.page-one a:not(.element a):not(.element) {
	transition: color .3s ease;
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.page-one a:not(.element a):not(.element):hover {
	color: hsl(var(--ph),var(--ps),calc(var(--pl) - 8%));
}

.page-one table:not(.element table) {
	border-collapse: collapse;
}

.page-one td:not(.element td),.page-one th:not(.element th) {
	padding: .4rem .6rem;
	box-sizing: border-box;
	border: 1px solid;
	line-height: 1.6em;
}

.page-one td:not(.element td) {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.page-one th:not(.element th) {
	background-color: hsl(var(--ah),var(--as),var(--al));
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.page-one .video-container,.text p {
	margin-bottom: 20px;
}

.page-one h1:not(.element h1) {
	font-size: 28px;
}

.page-one h2:not(.element h2) {
	font-size: 24px;
}

.page-one h3:not(.element h3) {
	font-size: 22px;
}

.page-one h4:not(.element h4) {
	font-size: 20px;
}

.page-one h5:not(.element h5) {
	font-size: 18px;
}

.page-one h6:not(.element h6) {
	font-size: 16px;
}

@media (min-width:768px) {
	.page-one.is-medium ol li:not(.element li),.page-one.is-medium p:not(.element p),.page-one.is-medium ul li:not(.element li) {
		line-height: 1.8em;
	}

	.page-one.is-small blockquote:not(.element blockquote),.page-one.is-small ol li:not(.element li),.page-one.is-small p:not(.element p),.page-one.is-small ul li:not(.element li) {
		line-height: 1.6em;
	}

	.page-one blockquote:not(.element blockquote) {
		display: flex;
	}

	.page-one blockquote:not(.element blockquote)::before {
		content: 'i';
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 22px;
		height: 22px;
		margin-right: var(--gap);
		border: 2px solid #f5b105;
		border-radius: 50%;
		color: #f5b105;
		font-weight: 700;
		text-align: center;
		font-size: 15px;
		line-height: 15px;
		font-family: monospace;
	}
}

@media (min-width:992px) {
	.page-one h1:not(.element h1) {
		font-size: 30px;
	}

	.page-one h2:not(.element h2) {
		font-size: 26px;
	}

	.page-one h3:not(.element h3) {
		font-size: 24px;
	}

	.page-one h4:not(.element h4) {
		font-size: 22px;
	}

	.page-one h5:not(.element h5) {
		font-size: 20px;
	}

	.page-one h6:not(.element h6) {
		font-size: 18px;
	}

	.page-one.is-bold h1:not(.element):not(.element h1),.page-one.is-bold h2:not(.element):not(.element h2),.page-one.is-bold h3:not(.element):not(.element h3),.page-one.is-bold h4:not(.element):not(.element h4),.page-one.is-bold h5:not(.element):not(.element h5),.page-one.is-bold h6:not(.element):not(.element h6) {
		font-weight: 700;
	}
}

.paging,.paging>li {
	display: flex;
	justify-content: center;
}

.paging {
	flex-wrap: wrap;
	margin-top: -10px;
}

.paging.is-hidden,.paging__button.is-active>span {
	display: none;
}

.paging>li {
	align-items: flex-end;
	margin-top: 10px;
}

.paging>li a,.paging__wrapper {
	display: flex;
	align-items: center;
}

.paging>li a {
	justify-content: center;
	min-width: 40px;
	height: 40px;
	box-sizing: border-box;
	text-decoration: none;
	border-radius: var(--border-radius-small);
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: box-shadow .2s cubic-bezier(.25,.46,.45,.94);
}

.paging>li a.inline-link {
	font-weight: 700;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.paging>li.selected a {
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.paging__wrapper {
	flex-direction: column;
}

.paging__wrapper:has(*) {
	margin-top: 2rem;
}

.paging__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	min-height: 40px;
	padding: 4px 16px;
	box-sizing: border-box;
	background-color: transparent;
	border: 2px solid hsl(var(--ph),var(--ps),var(--pl));
	border-radius: var(--border-radius-small);
	font-family: inherit;
	font-size: .95em;
	user-select: none;
	cursor: pointer;
}

.paging__button:not(:last-child) {
	margin-bottom: 1.5rem;
}

.paging__button:active,.paging__button:focus,.paging__button:hover {
	outline: 0;
}

.paging__button .icon-reload {
	display: block;
	width: 15px;
	height: 15px;
	margin-top: -2px;
	margin-left: 10px;
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.paging__button.is-active .paging__loader {
	display: inline-grid;
}

.paging__loader {
	display: none;
}

.pass-one--gap {
	margin-bottom: var(--gap);
}

.pass-one__link {
	display: flex;
	align-items: center;
	height: 42px;
	padding: .4rem 1rem;
	margin: 1px;
	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: var(--border-radius-normal);
	line-height: 1.45em;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: .2s ease;
	outline: 0;
	cursor: pointer;
}

.pass-one__link.is-primary {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.pass-one__link.is-secondary,.pass-one__link.is-semitone {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.pass-one__link:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	box-shadow: 0 0 1px 1px hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.pass-one__icon {
	margin-right: var(--gap-small);
}

.pass-one__icon>svg {
	display: block;
	width: 28px;
	height: 28px;
}

.payments-one {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: -10px;
}

.payments-one--gap {
	margin-bottom: var(--gap);
}

.payments-one__item {
	margin-top: 10px;
	margin-right: 10px;
}

.payments-one__item>svg {
	display: block;
}

.payments-one.is-small .payments-one__item>svg {
	width: 40px;
	height: 40px;
}

.payments-one.is-medium .payments-one__item>svg {
	width: 60px;
	height: 60px;
}

.payments-one .icon-mastercard__tile-0 {
	fill: #ff5e00;
}

.payments-one .icon-mastercard__tile-1 {
	fill: #eb001b;
}

.payments-one .icon-mastercard__tile-2 {
	fill: #f7a01d;
}

.payments-one .icon-visa__tile-0 {
	fill: #0153b7;
}

.payments-one .icon-visa__tile-1 {
	fill: #e6a741;
}

.payments-one .icon-mir__tile-0 {
	fill: #049fd7;
}

.payments-one .icon-mir__tile-1 {
	fill: #4bb45d;
}

.payments-one .icon-webmoney {
	fill: #036bb5;
}

.payments-one .icon-sberbank {
	fill: #299e31;
}

.payments-one .icon-alphabank {
	fill: #ef2c25;
}

.payments-one .icon-yookassa {
	fill: #0153b7;
}

.popup-four {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	z-index: 200;
}

.popup-four.is-active,.popup-one.is-active {
	opacity: 1;
	visibility: visible;
	transition-duration: .2s;
}

.popup-four.is-active .popup-four__wrapper {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	animation: puff-in-popup .4s cubic-bezier(.47,0,.745,.715);
}

.popup-four.is-fullscreen .popup-four__wrapper {
	height: 100vh;
	width: 100vw;
	max-height: unset!important;
	max-width: unset!important;
	margin: unset;
	padding: unset;
	box-shadow: unset;
	border-radius: unset;
}

.popup-four.is-fullscreen .popup-four__content {
	max-height: unset!important;
	height: 100%;
}

.popup-four__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
}

.popup-four__wrapper {
	position: relative;
	width: 100%;
	min-height: 100px;
	padding: 5px;
	margin: var(--gap-small);
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-moderate);
	opacity: 0;
	visibility: hidden;
	transform: scale(.95);
	transition: opacity .3s ease,transform .3s ease;
	transition-delay: .2s;
}

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

@media (min-width:992px) {
	.popup-four__wrapper {
		border-radius: var(--border-radius-normal);
	}

	.popup-four__content {
		max-height: var(--popup-four-height);
	}
}

.popup-one {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: 0s ease-in-out;
	z-index: 200;
}

.popup-one.is-active .popup-one__wrapper {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.popup-one__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: hsla(var(--ah),var(--as),var(--al),.8);
	backdrop-filter: blur(5px);
}

.popup-one__wrapper {
	position: relative;
	width: 100%;
	padding: 2.25rem .75rem 2rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-moderate);
	opacity: 0;
	visibility: hidden;
	transform: scale(.95);
	transition: .3s ease;
	transition-delay: .2s;
}

.popup-one__content {
	height: 100%;
	box-sizing: border-box;
	overflow-y: auto;
}

.popup-one__content::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: transparent;
}

.popup-one__content::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: 4px;
	margin-left: 5px;
}

.popup-one__close {
	position: absolute;
	top: 8px;
	right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: unset;
	background-color: hsl(var(--ah),var(--as),var(--al));
	padding: 6px;
	cursor: pointer;
	z-index: 1;
}

.popup-one__close>svg {
	width: 10px;
	height: 10px;
	fill: hsl(var(--th),var(--ts),var(--tl));
	opacity: .3;
	transition: .2s ease;
}

.popup-one__close:hover>svg {
	opacity: 1;
}

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

@media (min-width:768px) {
	.popup-one__content {
		padding: 1px 1rem;
	}
}

.popup-three {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	opacity: 0;
	visibility: hidden;
	transition: all .4s ease;
	z-index: 200;
}

.popup-three.is-active {
	opacity: 1;
	visibility: visible;
}

.popup-three.is-active .popup-three__wrapper {
	opacity: 1;
	visibility: visible;
	transform: translate(0);
}

.popup-three__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
}

.popup-three__wrapper {
	position: relative;
	width: 100%;
	max-width: 768px;
	box-sizing: border-box;
	border-top-left-radius: var(--border-radius-large);
	border-top-right-radius: var(--border-radius-large);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-moderate);
	opacity: 0;
	visibility: hidden;
	transition: transform .3s;
}

.popup-three__content {
	height: 100%;
	max-height: calc(var(--vh, 1vh)*88);
	box-sizing: border-box;
	overflow-y: auto;
}

.popup-three__content::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: transparent;
}

.popup-three__content::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: 4px;
	margin-left: 5px;
}

.popup-three__swipe {
	width: 100%;
	padding: 1rem 0;
	background-color: transparent;
	border: unset;
	outline: unset;
}

.popup-three__bar {
	display: block;
	width: 45px;
	height: 3px;
	margin: 0 auto;
	border-radius: 2px;
	background: hsl(var(--ah),var(--as),calc(var(--al) - 20%));
	touch-action: pan-x;
	user-select: none;
	-webkit-user-drag: none;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
}

.popup-three__close {
	position: absolute;
	top: 5px;
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: unset;
	background-color: transparent;
	padding: 6px;
	cursor: pointer;
	z-index: 1;
}

.popup-three__close>svg {
	width: 12px;
	height: 12px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 20%));
}

@media (max-width:767px) {
	.popup-three__wrapper {
		transform: translateY(100%);
	}
}

@media (min-width:768px) {
	.popup-three__swipe {
		display: none;
	}

	.popup-three__close {
		background-color: hsl(var(--ah),var(--as),var(--al));
	}

	.popup-three__close>svg {
		width: 10px;
		height: 10px;
		fill: hsl(var(--th),var(--ts),var(--tl));
		transition: .2s ease;
		opacity: .5;
	}

	.popup-three__close:hover>svg {
		opacity: 1;
	}

	.popup-three__content {
		max-height: 100vh;
	}

	.popup-three__wrapper {
		height: 100%;
		max-width: 450px;
		border-radius: unset;
		transform: translateX(-100%);
	}
}

.popup-two {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: 0s ease-in-out;
	z-index: 200;
}

.popup-two.is-active {
	opacity: 1;
	visibility: visible;
	transition-duration: .2s;
}

.popup-two.is-active .popup-two__wrapper {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.popup-two__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim-muted);
	backdrop-filter: blur(5px);
}

.popup-two__wrapper {
	position: relative;
	width: 100%;
	min-height: 100px;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-moderate);
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	transform: scale(.95);
	transition: .3s ease;
	transition-delay: .2s;
}

.popup-two__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: unset;
	background-color: hsl(var(--ah),var(--as),var(--al));
	padding: 6px;
	cursor: pointer;
	z-index: 1;
}

.popup-two__close>svg {
	width: 10px;
	height: 10px;
	fill: hsl(var(--th),var(--ts),var(--tl));
	opacity: .3;
	transition: .2s ease;
}

.popup-two__close:hover>svg,.postcard-four__image-wrapper:hover .postcard-four__image-container::after {
	opacity: 1;
}

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

@media (min-width:992px) {
	.popup-two__wrapper {
		border-radius: var(--border-radius-normal);
	}

	.popup-two__content {
		max-height: var(--popup-two-height);
	}

	.popup-two__close {
		top: 8px;
		right: 8px;
		width: 30px;
		height: 30px;
		padding: 8px;
	}
}

.postcard-four {
	display: flex;
	flex-direction: column;
	max-width: 400px;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: box-shadow .3s ease;
}

.postcard-four--gap {
	margin-bottom: var(--gap-extended);
}

.postcard-four.is-primary {
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.postcard-four.is-secondary,.postcard-four.is-semitone {
	border: 1px solid hsl(var(--ah),var(--as),var(--al));
}

.postcard-four__image-wrapper {
	flex-shrink: 0;
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-top-left-radius: var(--border-radius-normal);
	border-top-right-radius: var(--border-radius-normal);
	overflow: hidden;
	isolation: isolate;
}

.postcard-four__image-wrapper:hover .postcard-four__image {
	transform: scale(1);
}

.postcard-four__image-container {
	display: flex;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	isolation: isolate;
}

.postcard-four__image-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dim);
	opacity: 0;
	transition: all 1s cubic-bezier(.22,1,.36,1);
	z-index: 0;
}

.postcard-four__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	transform: scale(1.02);
	transition: all 1s cubic-bezier(.22,1,.36,1);
	object-fit: cover;
}

.postcard-four__counter {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 2px 8px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	border-radius: var(--border-radius-small);
}

.postcard-four__badges {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	box-sizing: border-box;
	margin-top: -8px;
}

.postcard-four__badges>div {
	margin-right: 8px;
	margin-top: 8px;
}

.postcard-four__content {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem;
	box-sizing: border-box;
}

.postcard-four__credentials {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: var(--gap-small);
	margin-top: -8px;
}

.postcard-four__credentials>* {
	margin-top: 8px;
}

.postcard-four__credentials>:not(:last-child) {
	margin-right: 1rem;
}

.postcard-four__label {
	display: inline-block;
	letter-spacing: .03em;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 50%));
}

.postcard-four__title {
	margin-bottom: var(--gap-small);
	font-size: var(--name-font-size);
	font-weight: 600;
	line-height: 1.45em;
}

.postcard-four__text {
	font-size: .95em;
	line-height: 1.45em;
}

.postcard-four__button-wrapper {
	margin-top: auto;
}

.postcard-four__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	min-width: 36px;
	margin-top: var(--gap);
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),var(--tl));
	border: unset;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
	cursor: pointer;
}

.postcard-four__button:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	transition: background-color .25s ease;
}

.postcard-four__button.is-rounded {
	border-radius: 25px;
}

@media (min-width:768px) {
	.postcard-four__content {
		padding: 1.5rem;
	}
}

.preloader-one {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	transition: all .2s cubic-bezier(.25,.46,.45,.94);
	z-index: 1000;
}

.preloader-one.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.preloader-one svg {
	width: 50px;
	height: 50px;
	animation: spinner-rotate 2s linear infinite;
}

.preloader-one svg circle {
	stroke-linecap: round;
	stroke: hsl(var(--ph),var(--ps),var(--pl));
	stroke-width: 4px;
	animation: spinner-dash 1.5s ease-in-out infinite;
}

.price-one--gap {
	margin-bottom: var(--gap);
}

.price-one__price-wrapper {
	display: flex;
	align-items: flex-end;
}

.price-one.is-small .price-one__price {
	font-size: 16px;
	line-height: 16px;
}

.price-one.is-small .price-one__compare {
	font-size: 13px;
	line-height: 13px;
}

.price-one.is-medium .price-one__price {
	font-size: 17px;
	line-height: 17px;
}

.price-one.is-medium .price-one__compare {
	font-size: 15px;
	line-height: 15px;
}

.price-one.is-large .price-one__price {
	font-size: 20px;
	line-height: 20px;
}

.price-one.is-large .price-one__compare {
	font-size: 17px;
	line-height: 17px;
}

.price-one__price {
	font-weight: 600;
}

.price-one__compare {
	position: relative;
	display: block;
	margin-left: 10px;
	opacity: .5;
}

.price-one__compare::before,.price-three__compare::before,.price-two__compare::before {
	content: '';
	position: absolute;
	left: 0;
	top: 45%;
	display: block;
	width: 100%;
	height: 1px;
	background-color: hsl(var(--th),var(--ts),var(--tl));
	opacity: .5;
}

.price-one__compare.is-hidden,.price-three__compare.is-hidden,.price-three__discount.is-hidden,.price-two__compare.is-hidden,.price-two__discount.is-hidden,.product-carousel__button.swiper-button-lock {
	display: none;
}

.price-three--gap {
	margin-bottom: var(--gap);
}

.price-three__wrapper {
	display: flex;
	align-items: center;
}

.price-three.is-small .price-three__price {
	margin-right: 5px;
	font-size: 15px;
	line-height: 15px;
}

.price-three.is-small .price-three__compare {
	margin-bottom: 5px;
	font-size: 13px;
	line-height: 13px;
}

.price-three.is-medium .price-three__price {
	margin-right: 5px;
	font-size: 17px;
	line-height: 17px;
}

.price-three.is-medium .price-three__compare {
	margin-bottom: 5px;
	font-size: 15px;
	line-height: 15px;
}

.price-three.is-large .price-three__price {
	margin-right: 10px;
	font-size: 23px;
	line-height: 23px;
}

.price-three.is-large .price-three__compare {
	margin-bottom: 5px;
	font-size: 18px;
	line-height: 18px;
}

.price-three__price {
	font-weight: 600;
}

.price-three__compare {
	position: relative;
	display: inline-block;
	opacity: .5;
}

.price-three__text {
	display: block;
	margin-bottom: 5px;
	font-size: 15px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.price-three__discount {
	display: inline-block;
	padding: 2px 6px;
	border-radius: 4px;
	background-color: #fd6363;
	color: hsl(var(--bh),var(--bs),var(--bl));
	font-weight: 500;
	font-size: 13px;
	line-height: 13px;
}

.price-two__wrapper {
	display: flex;
	align-items: flex-end;
}

.price-two--gap {
	margin-bottom: var(--gap);
}

.price-two.is-small .price-two__price {
	font-size: 15px;
	line-height: 15px;
}

.price-two.is-small .price-two__compare {
	font-size: 13px;
	line-height: 13px;
}

.price-two.is-medium .price-two__price {
	font-size: 17px;
	line-height: 17px;
}

.price-two.is-medium .price-two__compare {
	font-size: 15px;
	line-height: 15px;
}

.price-two.is-large .price-two__price {
	font-size: 26px;
	line-height: 26px;
}

.price-two.is-large .price-two__compare {
	font-size: 18px;
	line-height: 18px;
}

.price-two__price,.product-affiliate__table td strong {
	font-weight: 600;
}

.price-two__compare {
	position: relative;
	display: block;
	margin-left: 10px;
	opacity: .5;
}

.price-two__subtitle,.price-two__text {
	display: block;
	margin-bottom: 5px;
	line-height: 1.45em;
}

.price-two__text {
	font-size: 15px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.price-two__subtitle {
	font-weight: 600;
}

.price-two__discount {
	display: inline-block;
	padding: 4px 8px;
	margin-bottom: var(--gap-small);
	border-radius: 4px;
	background-color: #ffea80;
	font-weight: 500;
	font-size: 13px;
	line-height: 13px;
}

.product-affiliate--gap {
	margin-bottom: var(--gap);
}

.product-affiliate__bonus {
	display: block;
	margin-bottom: var(--gap);
}

.product-affiliate__bonus strong {
	padding: 3px 10px;
	margin-left: 5px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
}

.product-affiliate__container {
	overflow: auto;
	position: relative;
	padding-bottom: 10px;
}

.product-affiliate__container::-webkit-scrollbar {
	height: 8px;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.product-affiliate__container::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.product-affiliate__table {
	border-collapse: collapse;
	vertical-align: top;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.product-affiliate__table thead th {
	min-height: 1em;
	padding: .3rem .8rem;
	text-align: left;
	font-weight: 600;
	line-height: 1.45em;
	font-size: .95em;
}

.product-affiliate__table td:nth-of-type(2) {
	min-width: 300px;
}

.product-affiliate__table td:not(:nth-of-type(2)) {
	white-space: nowrap;
}

.product-affiliate__table td.is-right {
	text-align: right;
}

.product-affiliate__table td a {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.product-carousel {
	position: relative;
}

.product-carousel--gap {
	margin-bottom: var(--gap);
}

.product-carousel__button-wrapper {
	position: absolute;
	right: 0;
	bottom: calc(100% + var(--gap));
	display: none;
	align-items: center;
}

.product-carousel__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),var(--al));
	transition: background-color .25s ease;
	outline: 0;
	user-select: none;
	cursor: pointer;
}

.product-carousel__button:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.product-carousel__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.product-carousel__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.product-carousel__button .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.product-carousel__button:not(:last-child) {
	margin-right: var(--gap-small);
}

.product-carousel__slide {
	user-select: none;
}

@media (min-width:1200px) {
	.product-carousel__button-wrapper {
		display: flex;
	}
}

.product-cart {
	min-height: 200px;
	max-height: 700px;
	padding: 1.6rem;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
}

.product-cart::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: transparent;
}

.product-cart::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: 4px;
	margin-left: 5px;
}

.product-cart__header {
	display: flex;
	align-items: center;
	width: 100%;
}

.product-cart__header>:first-child {
	margin-right: auto;
}

.product-cart__form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product-cart__form>:not(:last-child),.product-purchase form>:not(:last-child) {
	margin-bottom: var(--gap);
}

.product-cart__form.is-active .product-cart__quantity {
	display: flex;
}

.product-cart__form.is-active .product-cart__submit {
	background-color: hsl(var(--ah),var(--as),var(--al));
	width: auto;
}

.product-cart__form.is-active .product-cart__submit:hover,.product-one__form.is-active .product-one__submit:hover,.product-purchase form.is-active .product-purchase__submit:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.product-cart__form.is-active .product-cart__submit>svg,.product-one__form.is-active .product-one__submit>svg,.product-purchase form.is-active .product-purchase__submit>svg {
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.product-cart__form[data-price='0'] .product-cart__purchase {
	display: none;
}

.product-cart__form:not([data-price='0']) .product-cart__request {
	display: none;
}

.product-cart__name {
	display: block;
	margin-right: var(--gap);
	font-size: var(--name-font-size);
	font-weight: 600;
	text-decoration: none;
	line-height: 1.45em;
	color: var(--text);
}

.product-cart__footer {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 1rem;
	align-items: flex-end;
	width: 100%;
	padding-top: var(--gap-extended);
	margin-top: auto;
}

.product-cart__purchase,.product-cart__request {
	display: flex;
	align-items: flex-start;
	max-width: 230px;
}

.product-cart__quantity {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-right: 1rem;
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),var(--al));
	border-radius: var(--border-radius-small);
	user-select: none;
}

.product-cart__quantity-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: unset;
	border: unset;
	background-color: transparent;
	font-size: 1.45em;
	cursor: pointer;
}

.product-cart__quantity-button.is-loading {
	opacity: .2;
}

.product-cart__quantity-button:focus {
	outline: 0;
}

.product-cart__quantity-value {
	display: block;
	width: 50px;
	text-align: center;
	font-size: .95em;
}

.product-cart__request-button,.product-cart__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	box-sizing: border-box;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border: unset;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
}

.product-cart__request-button {
	cursor: pointer;
}

.product-cart__request-button:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) - 10%));
	transition: background-color .25s ease;
}

.product-cart__request-button.is-rounded {
	border-radius: 25px;
}

.product-cart__submit {
	overflow: hidden;
	min-width: 36px;
}

.product-cart__submit:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) - 10%));
	transition: background-color .25s ease;
}

.product-cart__submit[disabled] {
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: auto;
}

.product-cart__submit>svg {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	transform: rotate(-90deg);
}

.product-cart__submit.is-rounded {
	border-radius: 25px;
}

.product-cart__submit,.product-code__item {
	position: relative;
	cursor: pointer;
}

.product-code__item.is-hidden {
	display: none;
}

.product-code__item>svg {
	display: inline-block;
	margin-bottom: -3px;
	margin-right: 3px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.product-code__name {
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.product-code__value {
	font-weight: 600;
}

.product-code__message {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	display: block;
	padding: 8px 16px;
	width: auto;
	border-radius: var(--border-radius-normal);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-spread);
	white-space: nowrap;
	text-align: left;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
	opacity: 0;
	transition: .3s ease;
}

.product-code__message.is-visible {
	opacity: 1;
}

.product-code__message.is-hidden {
	opacity: 0;
}

.product-details__item {
	position: relative;
	display: flex;
	justify-content: space-between;
	font-size: .95em;
	line-height: 1.45em;
}

.product-details__item:not(:last-of-type) {
	margin-bottom: 5px;
}

.product-details__item::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 1px;
	border-bottom: 1px dotted hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.product-details__code,.product-details__value {
	position: relative;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	z-index: 1;
}

.product-details__code {
	max-width: 45%;
	padding-right: var(--gap-small);
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.product-details__value {
	width: 50%;
	padding-left: var(--gap-small);
}

.product-details__color-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: -10px;
}

.product-details__color-wrapper>* {
	margin-top: 10px;
}

.product-details__color {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	width: 26px;
	margin-right: 6px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 2px solid hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: 0 0 0 1px hsl(var(--ah),var(--as),calc(var(--al) - 4%)),inset 0 0 4px rgba(0,0,0,.1);
}

.product-features__wrapper {
	padding: 1px 0;
	margin-top: var(--gap);
}

.product-features__item {
	position: relative;
	display: flex;
	justify-content: space-between;
	line-height: 1.45em;
}

.product-features__item:not(:last-of-type) {
	margin-bottom: 8px;
}

.product-features__item::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 1px;
	border-bottom: 2px dotted hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.product-features__code,.product-features__value {
	position: relative;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	z-index: 1;
}

.product-features__code {
	max-width: 45%;
	padding-right: var(--gap-small);
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.product-features__value {
	width: 50%;
	padding-left: var(--gap-small);
}

.product-features__color-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: -10px;
}

.product-features__color-wrapper>* {
	margin-top: 10px;
}

.product-features__color {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	width: 26px;
	margin-right: 6px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 2px solid hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: 0 0 0 1px hsl(var(--ah),var(--as),calc(var(--al) - 4%)),inset 0 0 4px rgba(0,0,0,.1);
}

.product-features__divider {
	margin-bottom: var(--gap-small);
	font-weight: 600;
	line-height: 1.45em;
}

.product-features__divider:not(:first-of-type) {
	margin-top: var(--gap-extended);
}

.product-five {
	max-width: 300px;
	box-sizing: border-box;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.product-five__image-wrapper {
	display: block;
}

.product-five__image,.product-five__loader {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-five__image.is-margins {
	padding: 1rem;
	box-sizing: border-box;
}

.product-five__image.is-margins .product-four__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-five__image.is-cropped-top .product-four__img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}

.product-five__image.is-cropped-center .product-four__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.product-five__image.is-common .product-four__img,.product-four__image.is-margins .product-four__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-five__image:focus {
	outline: 0;
}

.product-five__img {
	height: auto;
	font-size: 0;
	overflow: hidden;
	user-select: none;
}

.product-five__badge {
	position: absolute;
	top: var(--gap-small);
	left: var(--gap-small);
}

.product-five__discount {
	position: absolute;
	bottom: var(--gap-small);
	right: var(--gap-small);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}

.product-five__saving {
	display: inline-block;
	padding: 4px 12px;
	border-radius: var(--border-radius-small);
	background-color: rgba(235,248,255,.65);
	backdrop-filter: blur(10px);
	color: hsl(var(--th),var(--ts),var(--tl));
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2em;
}

.product-five__content {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	box-sizing: border-box;
}

.product-five__content>:not(:last-child),.wa-forms .wa-signup-form-email-confirmed-block p:not(:last-of-type) {
	margin-bottom: 10px;
}

.product-five__name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
	transition: .2s ease;
}

.product-five__name:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.product-five__price {
	margin-top: auto;
}

.product-four {
	max-width: 350px;
}

.product-four__image-wrapper {
	display: block;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.product-four__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-four__image.is-margins {
	padding: 1rem;
	box-sizing: border-box;
}

.product-four__image.is-cropped-top .product-four__img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}

.product-four__image.is-cropped-center .product-four__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.product-four__image.is-common .product-four__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-four__image:focus {
	outline: 0;
}

.product-four__img {
	height: auto;
	font-size: 0;
	overflow: hidden;
	user-select: none;
}

.product-four__discount {
	position: absolute;
	bottom: 8px;
	right: 8px;
}

.product-four__rating {
	position: absolute;
	top: 8px;
	left: 8px;
}

.product-four__content {
	margin-top: var(--gap-small);
}

.product-four__content>:not(:last-child) {
	margin-bottom: 5px;
}

.product-four__name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
	transition: .2s ease;
}

.product-four__name:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.product-gallery-one {
	overflow: hidden;
}

.product-gallery-one__grid {
	position: relative;
}

.product-gallery-one__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	user-select: none;
	z-index: 10;
}

.product-gallery-one__mobile-favorite {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	z-index: 10;
}

.product-gallery-one__mobile-favorite::after {
	display: none!important;
}

.product-gallery-one__video {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 10;
}

.product-gallery-one__button-next,.product-gallery-one__button-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 30px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),var(--al));
	transition: background-color .25s ease;
}

.product-gallery-one__button-next:hover,.product-gallery-one__button-prev:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.product-gallery-one__button-next.swiper-button-disabled,.product-gallery-one__button-prev.swiper-button-disabled,.product-navigation__dropdown-item>a:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.product-gallery-one__button-next.swiper-button-disabled .icon-arrow,.product-gallery-one__button-prev.swiper-button-disabled .icon-arrow {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.product-gallery-one__button-next:not(.swiper-button-disabled),.product-gallery-one__button-prev:not(.swiper-button-disabled) {
	cursor: pointer;
}

.product-gallery-one__button-next .icon-arrow,.product-gallery-one__button-prev .icon-arrow {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.product-gallery-one__button-prev {
	margin-bottom: var(--gap-small);
	transform: rotate(180deg);
}

.product-gallery-one__button-next {
	margin-top: var(--gap-small);
}

.product-gallery-one__thumbs-container {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 94px;
}

.product-gallery-one__thumbs-wrapper {
	height: calc(94px*3 + 20px);
	overflow: hidden;
}

.product-gallery-one__thumb.swiper-slide-thumb-active .product-gallery-one__thumb-image {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
}

.product-gallery-one__thumb-image {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: calc(94px - 2px);
	height: calc(94px - 2px);
	margin: 1px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-small);
	transition: .25s ease;
	cursor: pointer;
	overflow: hidden;
}

.product-gallery-one__thumb-image img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 100%;
	user-select: none;
}

.product-gallery-one__gallery-wrapper {
	position: relative;
}

.product-gallery-one__single-wrapper,.product-gallery-one__slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: var(--border-radius-normal);
}

.product-gallery-one__image-link {
	display: block;
	text-decoration: none;
	cursor: zoom-in;
}

.product-gallery-one__image,.product-gallery-one__single {
	display: flex;
	align-items: flex-start;
	height: 100%;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.product-gallery-one__image img,.product-gallery-one__single img {
	width: 100%;
	margin: 0;
	object-fit: cover;
	border-radius: var(--border-radius-normal);
	user-select: none;
	max-height: 600px;
}

.product-gallery-one__pagination {
	bottom: 15px!important;
}

@media (min-width:580px) {
	.product-gallery-one__mobile-favorite {
		display: none;
	}
}

@media (min-width:1300px) {
	.product-gallery-one__thumbs-container {
		display: block;
	}

	.product-gallery-one__gallery-wrapper {
		width: calc(100% - 94px - 1rem);
		margin-left: calc(94px + 1rem);
	}

	.product-gallery-one__pagination {
		display: none;
	}
}

.product-navigation {
	overflow-x: clip;
}

.product-navigation--gap {
	margin-bottom: var(--gap);
}

.product-navigation__list {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	white-space: nowrap;
	align-items: center;
}

.product-navigation__list>:not(:last-child) {
	margin-right: var(--gap);
}

.product-navigation__list.is-initial {
	visibility: hidden;
	overflow: hidden;
}

.product-navigation__item {
	position: relative;
	display: inline-block;
}

.product-navigation__item.is-hidden {
	display: none;
}

.product-navigation__item>a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: currentColor;
	cursor: pointer;
}

.product-navigation__dropdown-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	padding-top: var(--gap);
}

.product-navigation__dropdown-wrapper.is-bottom-start .product-navigation__dropdown::before {
	left: 2rem;
}

.product-navigation__dropdown-wrapper.is-bottom .product-navigation__dropdown::before {
	left: 50%;
}

.product-navigation__dropdown-wrapper.is-bottom-end .product-navigation__dropdown::before {
	right: 2rem;
}

.product-navigation__item:hover>.product-navigation__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.product-navigation__dropdown,.product-navigation__dropdown::before {
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.product-navigation__dropdown {
	position: relative;
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	max-width: 300px;
	min-width: 160px;
	padding: .5rem;
	border-radius: var(--border-radius-normal);
}

.product-navigation__dropdown::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	transform: translateX(-50%) rotate(45deg);
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
}

.product-navigation__dropdown-item>a {
	display: flex;
	align-items: center;
	padding: .4rem 1rem .4rem .9rem;
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.45em;
	text-decoration: none;
	transition: background-color .1s ease;
	border-radius: var(--border-radius-small);
}

.product-navigation__score {
	margin-left: var(--gap-small);
}

.product-one {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr;
	max-width: 350px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	transition: box-shadow .2s ease;
}

.product-one:hover {
	box-shadow: var(--shadow-card);
	border-color: hsl(var(--ah),var(--as),var(--al));
	z-index: 1;
}

.product-one,.product-one:hover .product-one__content,.product-one__image-wrapper {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.product-one:hover .product-one__dots,.product-one__image:hover .product-one__tab::before {
	opacity: 1;
}

.product-one__image-wrapper {
	display: block;
	border-top-left-radius: var(--border-radius-normal);
	border-top-right-radius: var(--border-radius-normal);
	overflow: hidden;
}

.product-one__image,.product-one__loader {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-one__image.is-margins {
	padding: 1.5rem;
	box-sizing: border-box;
}

.product-one__image.is-margins .product-one__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-one__image.is-cropped-top .product-one__img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}

.product-one__image.is-cropped-center .product-one__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.product-one__image.is-common .product-one__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-one__image:focus {
	outline: 0;
}

.product-one__img {
	height: auto;
	font-size: 0;
	overflow: hidden;
	user-select: none;
}

.product-one__tabs {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	padding: 0 var(--gap-small);
}

.product-one__tab {
	width: 100%;
}

.product-one__dots {
	position: absolute;
	bottom: var(--gap-small);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	opacity: 0;
	transition: opacity .3s ease;
}

.product-one__dot {
	flex-shrink: 0;
	display: block;
	width: 4px;
	height: 4px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: 50%;
	transition: transform .3s ease;
}

.product-one__dot:not(:last-of-type) {
	margin-right: 6px;
}

.product-one__dot.is-active {
	background: hsl(var(--ih),var(--is),var(--il));
	transform: scale(1.4);
}

.product-one__discount {
	position: absolute;
	bottom: var(--gap-small);
	left: var(--gap-small);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.product-one__saving {
	display: inline-block;
	padding: 4px 12px;
	border-radius: var(--border-radius-small);
	background-color: rgba(235,248,255,.65);
	backdrop-filter: blur(10px);
	color: hsl(var(--th),var(--ts),var(--tl));
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2em;
}

.product-one__badge {
	position: absolute;
	top: var(--gap-small);
	left: var(--gap-small);
}

.product-one__content {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	box-sizing: border-box;
	z-index: 2;
}

.product-one__content>:not(.is-hidden):not(:last-child) {
	margin-bottom: 15px;
}

.product-one__name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	font-weight: 600;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
	transition: .2s ease;
}

.product-one__name:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.product-one__footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-top: 15px;
	margin-top: auto;
}

.product-one__compact-price {
	margin-top: auto;
}

.product-one:not(.is-compact) .product-one__compact-price {
	display: none;
}

.product-one__form {
	display: flex;
	align-items: flex-start;
	padding: 0 1rem 1rem;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-bottom-left-radius: var(--border-radius-normal);
	border-bottom-right-radius: var(--border-radius-normal);
}

.product-one__form.is-active .product-one__quantity,.product-purchase form.is-active .product-purchase__quantity {
	display: flex;
}

.product-one__form.is-active .product-one__submit,.product-one__quantity,.product-purchase form.is-active .product-purchase__submit {
	background-color: hsl(var(--ah),var(--as),var(--al));
	width: auto;
}

.product-one__quantity {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-right: 1rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	user-select: none;
}

.product-one__quantity-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 36px;
	padding: unset;
	border: unset;
	background-color: transparent;
	font-size: 1.45em;
	cursor: pointer;
}

.product-one__quantity-button.is-loading {
	opacity: .2;
}

.product-one__quantity-button:focus {
	outline: 0;
}

.product-one__quantity-value {
	display: block;
	width: 50px;
	text-align: center;
	font-size: .95em;
}

.product-one__submit {
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	min-width: 36px;
	box-sizing: border-box;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border: unset;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
	cursor: pointer;
}

.product-one__submit:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) - 2%));
	transition: background-color .25s ease;
}

.product-one__submit[disabled] {
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: auto;
}

.product-one__submit>svg,.product-purchase__submit>svg {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	transform: rotate(-90deg);
}

.product-one__submit.is-rounded {
	border-radius: 25px;
}

@media (max-width:579px) {
	.is-compact .product-one__badge,.is-compact .product-one__compare,.is-compact .product-one__discount,.is-compact .product-one__footer,.is-compact .product-one__form,.is-compact .product-one__score,.is-compact .product-one__stocks {
		display: none;
	}

	.is-compact .product-one__content,.is-compact .product-one__image.is-margins {
		padding: .8rem .5rem;
	}

	.is-compact .product-one__content>:not(.is-hidden):not(:last-child) {
		margin-bottom: 5px;
	}

	.is-compact .product-one__mobile-favorite {
		position: absolute;
		bottom: .5rem;
		right: .5rem;
	}

	.is-compact .product-one__mobile-badge {
		position: absolute;
		top: .5rem;
		left: .5rem;
	}

	.is-compact:hover .product-one__content {
		background-color: transparent;
	}
}

@media (min-width:580px) {
	.is-compact .product-one__compact-price,.is-compact .product-one__mobile-badge,.is-compact .product-one__mobile-favorite,.is-compact .product-one__mobile-score {
		display: none;
	}
}

@media (min-width:768px) {
	.product-one:hover .product-one__form.is-hidden {
		opacity: 1;
		visibility: visible;
		box-shadow: var(--shadow-card);
		pointer-events: auto;
	}

	.product-one__form.is-hidden {
		position: absolute;
		left: -1px;
		top: calc(100% + 0px);
		width: calc(100% + 2px);
		border-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
		border-style: solid;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-right-width: 1px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		z-index: 1;
	}
}

.product-order {
	padding: 1.4rem;
	border-radius: var(--border-radius-normal);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	overflow: hidden;
}

.product-order--gap {
	margin-bottom: var(--gap);
}

.product-order__header {
	display: grid;
	grid-gap: 5px;
	align-items: center;
	padding-bottom: 1rem;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	line-height: 1.45em;
}

.product-order__name {
	font-weight: 600;
}

.product-order__composition a,.product-order__name a {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.product-order__date {
	margin-left: 5px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	font-size: .95em;
}

.product-order__price {
	font-weight: 600;
}

.product-order__body,.product-order__summary {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.product-order__summary {
	margin-right: 5px;
	font-size: .95em;
}

.product-order__body {
	padding-top: 1rem;
	line-height: 1.45em;
}

.product-order__composition {
	display: block;
}

.product-order__composition a {
	font-weight: 600;
	text-decoration: none;
}

.product-order__status {
	display: block;
	margin-top: 5px;
}

.product-order__badge {
	padding: 3px 10px;
	margin-left: 5px;
	border-radius: 4px;
	font-size: 15px;
	line-height: 1.2em;
	color: hsl(var(--bh),var(--bs),var(--bl));
}

@media (min-width:768px) {
	.product-order {
		border: unset;
		background-color: hsl(var(--bh),var(--bs),var(--bl));
		box-shadow: var(--shadow-light);
	}

	.product-order__header {
		grid-template-columns: 1fr auto;
	}
}

.product-purchase {
	padding: 1.6rem;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.product-purchase--gap {
	margin-bottom: var(--gap);
}

.product-purchase__name {
	display: block;
	font-size: var(--name-font-size);
	font-weight: 600;
	line-height: 1.45em;
}

.product-purchase__buttons {
	max-width: 300px;
	margin-top: var(--gap);
}

.product-purchase__buttons>:not(:last-child),.product-services.is-medium .product-services__list>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.product-purchase__purchase {
	display: flex;
	align-items: flex-start;
}

.product-purchase__quantity {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-right: 1rem;
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),var(--al));
	border-radius: var(--border-radius-small);
	user-select: none;
}

.product-purchase__quantity-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: unset;
	border: unset;
	background-color: transparent;
	font-size: 1.45em;
	cursor: pointer;
}

.product-purchase__quantity-button.is-loading {
	opacity: .2;
}

.product-purchase__quantity-button:focus,.product-sorting__item a:focus {
	outline: 0;
}

.product-purchase__quantity-value {
	display: block;
	width: 50px;
	text-align: center;
	font-size: .95em;
}

.product-purchase__one-click,.product-purchase__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	box-sizing: border-box;
	border: unset;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
	transition: background-color .25s ease;
	cursor: pointer;
}

.product-purchase__submit {
	overflow: hidden;
	position: relative;
	min-width: 42px;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.product-purchase__submit:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) - 2%));
}

.product-purchase__submit[disabled] {
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: auto;
}

.product-purchase__submit.is-rounded {
	border-radius: 25px;
}

.product-purchase__one-click {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.product-purchase__one-click:hover {
	background-color: hsla(var(--ph),var(--ps),var(--pl),.15);
}

.product-purchase__one-click[disabled] {
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: auto;
}

.product-purchase__one-click.is-rounded {
	border-radius: 25px;
}

.product-review {
	padding: 15px 0;
}

.product-review--gap {
	margin-bottom: var(--gap);
}

.product-review.is-new .product-review__badge {
	display: inline-flex;
}

.product-review__credentials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: -5px;
	margin-bottom: 5px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.product-review__credentials>* {
	margin-top: 5px;
}

.product-review__credentials>:not(:last-child) {
	margin-right: var(--gap-small);
}

.product-review__datetime {
	display: block;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 35%));
}

.product-review__content {
	position: relative;
	padding-left: 40px;
}

.product-review__content.is-reply::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 13px;
	display: block;
	height: calc(100% - 10px);
	width: 1px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.product-review__title {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	line-height: 1.45em;
}

.product-review__text {
	line-height: 1.6em;
}

.product-review__text .is-highlighted {
	color: #37a834;
}

.product-review__actions {
	display: flex;
	align-items: center;
}

.product-review__actions>:not(:last-child) {
	margin-right: var(--gap);
}

.product-review__action,.product-review__badge {
	align-items: center;
	margin-top: 5px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 35%));
	text-decoration: none;
	line-height: 1.45em;
	font-size: .95em;
}

.product-review__action {
	display: inline-flex;
}

.product-review__action .icon-arrow-left {
	display: block;
	width: 14px;
	height: 14px;
	margin-right: var(--gap-small);
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 35%));
}

.product-review__badge {
	display: none;
}

.product-review__badge .icon-new {
	display: block;
	margin-right: var(--gap-small);
	fill: #37a834;
}

.product-review__images {
	margin-top: var(--gap);
	margin-bottom: 5px;
}

.product-review__image-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1*var(--gap-small));
	margin-right: calc(-.5*var(--gap-small));
	margin-left: calc(-.5*var(--gap-small));
}

.product-review__image {
	position: relative;
	display: block;
	padding-right: calc(var(--gap-small)*.5);
	padding-left: calc(var(--gap-small)*.5);
	margin-top: var(--gap-small);
}

.product-review__image>img {
	display: block;
	width: 90px;
	height: 90px;
	border-radius: var(--border-radius-small);
	font-size: 0;
	transition: filter .2s ease;
	overflow: hidden;
	object-fit: cover;
}

.product-review__image>img:hover {
	filter: brightness(80%);
}

.product-review__image>svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 26px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	transform: translate(-50%,-50%) scale(.5);
	transition: .2s ease;
	opacity: 0;
	pointer-events: none;
}

.product-review__image:hover>svg {
	opacity: 1;
	transform: translate(-50%,-50%) scale(1);
}

.product-reviews--gap {
	margin-bottom: var(--gap);
}

.product-reviews__header {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: var(--gap);
}

.product-reviews__title {
	display: block;
	margin-right: var(--gap-small);
	font-size: var(--subtitle-font-size);
	font-weight: 600;
	line-height: 1.45em;
}

.product-reviews__count {
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.product-reviews__score {
	margin-bottom: var(--gap-extended);
}

.product-reviews__reply {
	padding-left: 37px;
}

.product-reviews__list:not(:empty) {
	margin-top: var(--gap);
}

.product-services--gap {
	margin-bottom: var(--gap);
}

.product-services.is-medium .product-services__variants {
	font-size: .95em;
}

.product-services__title {
	display: block;
	margin-right: 65px;
	margin-bottom: var(--gap-small);
	font-weight: 600;
	line-height: 1.45em;
}

.product-services__list>:not(:last-child) {
	margin-bottom: 15px;
}

.product-services__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 700px;
}

.product-services__item.is-hidden,.radio input[type=radio] {
	display: none;
}

.product-services__variants {
	display: block;
	height: 2rem;
	width: 100%;
	max-width: 400px;
	margin-top: var(--gap-small);
	padding-left: 1rem;
	padding-right: 3rem;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .9em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: .25s ease;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 10 10' style='enable-background:new 0 0 10 10;' xml:space='preserve' fill='hsl(0, 0%25, 66%25)'%3e%3cpath d='M4.3,7.4c0.4,0.4,1,0.4,1.4,0l4-4C10,3.1,10,2.7,9.9,2.3C9.7,1.9,9.4,1.7,9,1.7H1c-0.4,0-0.8,0.2-0.9,0.6 S0,3.1,0.3,3.4L4.3,7.4L4.3,7.4z'/%3e%3c/svg%3e ");
	background-repeat: no-repeat,repeat;
	background-position: right .8rem top 50%;
	background-size: 8px auto,100%;
	overflow: hidden;
	text-overflow: ellipsis;
	appearance: none;
	cursor: pointer;
}

.product-services__variants:disabled {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	cursor: default;
}

.product-services__variants::-ms-expand,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select::-ms-expand,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select::-ms-expand,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select::-ms-expand {
	display: none;
}

.product-services__variants:not(:disabled):focus {
	outline: 0;
	background-color: hsla(var(--ph),var(--ps),var(--pl),.1);
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
}

.product-services__variants:not(:disabled):focus option {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.product-sorting {
	position: relative;
}

.product-sorting--gap {
	margin-bottom: var(--gap);
}

.product-sorting__button {
	display: flex;
	align-items: center;
	height: 42px;
	padding: .4rem 1rem;
	box-sizing: border-box;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	font-weight: 600;
	font-size: .95em;
	outline: 0;
	cursor: pointer;
}

.product-sorting__button .icon-sorting {
	display: block;
	width: 18px;
	height: 18px;
	margin-right: var(--gap-small);
	fill: #a8a8a8;
	transition: fill .25s;
}

.product-sorting__button:hover .icon-sorting,.product-two__form.is-active .product-two__submit>svg {
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.product-sorting__dropdown-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	max-width: 400px;
	min-width: 160px;
	padding-top: 5px;
}

.product-sorting__dropdown-wrapper.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.product-sorting__dropdown {
	position: relative;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	overflow: hidden;
}

.product-sorting__item,.search-one>form {
	position: relative;
}

.product-sorting__item:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.product-sorting__item a {
	display: block;
	height: 36px;
	padding: .4rem calc(1rem + 12px) .4rem 1rem;
	font-size: .95em;
	line-height: 1.45em;
	white-space: nowrap;
	transition: background-color .25s;
	cursor: pointer;
}

.product-sorting__item a:hover,.product-sorting__item.is-active a {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.product-sorting__icon {
	position: absolute;
	right: .4rem;
	top: 50%;
	transform: translateY(-50%);
}

.product-sorting__icon .icon-sort {
	display: block;
	fill: #a8a8a8;
}

.product-sorting__icon.is-down .icon-sort {
	transform: rotate(180deg) scaleX(-1);
}

.product-sorting__item a,.product-three {
	box-sizing: border-box;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.product-three {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: var(--gap-small);
	align-items: flex-start;
	width: 100%;
	padding: var(--gap-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	transition: box-shadow .2s ease;
}

.product-three:hover {
	box-shadow: var(--shadow-card);
	border-color: hsl(var(--ah),var(--as),var(--al));
	z-index: 1;
}

.product-three,.product-three:hover .product-three__content,.product-three__image-wrapper {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.product-three__image-wrapper {
	display: block;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.product-three__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-three__image.is-margins {
	padding: 1.5rem;
	box-sizing: border-box;
}

.product-three__image.is-margins .product-three__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-three__image.is-cropped-top .product-three__img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}

.product-three__image.is-cropped-center .product-three__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.product-three__image.is-common .product-three__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-three__image:focus {
	outline: 0;
}

.product-three__image:hover .product-three__tab::before {
	opacity: 1;
}

.product-three__img {
	height: auto;
	font-size: 0;
	overflow: hidden;
	user-select: none;
}

.product-three__content {
	position: relative;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	z-index: 2;
}

.product-three__cart>:not(.is-hidden):not(:last-child),.product-three__content>:not(.is-hidden):not(:last-child) {
	margin-bottom: var(--gap-small);
}

.product-three__cart {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
}

.product-three__name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	font-weight: 600;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
	transition: .2s ease;
}

.product-three__name:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.product-three__compact-price,.product-three__price {
	margin-top: auto;
}

.product-three:not(.is-compact) .product-three__compact-price {
	display: none;
}

@media (max-width:579px) {
	.is-compact .product-three__price,.is-compact .product-three__stocks {
		display: none;
	}

	.is-compact .product-three__content>:not(.is-hidden):not(:last-child) {
		margin-bottom: 5px;
	}
}

@media (min-width:580px) {
	.is-compact .product-three__compact-price {
		display: none;
	}

	.product-three {
		grid-template-columns: 80px 1fr 225px;
		grid-gap: 1rem;
	}

	.product-three__content {
		padding: .5rem 0;
	}

	.product-three__cart {
		align-items: flex-end;
	}
}

.product-two {
	position: relative;
	display: grid;
	align-items: flex-start;
	width: 100%;
	padding: var(--gap-small);
	box-sizing: border-box;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-normal);
	transition: box-shadow .2s ease;
}

.product-two:hover {
	box-shadow: var(--shadow-card);
	border-color: hsl(var(--ah),var(--as),var(--al));
	z-index: 1;
}

.product-two,.product-two:hover .product-two__content,.product-two__image-wrapper {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.product-two:hover .product-two__dots,.product-two__image:hover .product-two__tab::before {
	opacity: 1;
}

.product-two__image-wrapper {
	display: block;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.product-two__image,.product-two__loader {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-two__image.is-margins {
	padding: 1.5rem;
	box-sizing: border-box;
}

.product-two__image.is-margins .product-two__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-two__image.is-cropped-top .product-two__img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}

.product-two__image.is-cropped-center .product-two__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.product-two__image.is-common .product-two__img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.product-two__image:focus {
	outline: 0;
}

.product-two__img {
	height: auto;
	font-size: 0;
	overflow: hidden;
	user-select: none;
}

.product-two__tabs {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	padding: 0 var(--gap-small);
}

.product-two__tab {
	width: 100%;
}

.product-two__dots {
	position: absolute;
	bottom: var(--gap-small);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	opacity: 0;
	transition: opacity .3s ease;
}

.product-two__dot {
	flex-shrink: 0;
	display: block;
	width: 4px;
	height: 4px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: 50%;
	transition: transform .3s ease;
}

.product-two__dot:not(:last-of-type) {
	margin-right: 6px;
}

.product-two__dot.is-active {
	background: hsl(var(--ih),var(--is),var(--il));
	transform: scale(1.4);
}

.product-two__badge {
	position: absolute;
	top: var(--gap-small);
	left: var(--gap-small);
}

.product-two__discount {
	position: absolute;
	bottom: var(--gap-small);
	right: var(--gap-small);
}

.product-two__mobile-favorite {
	position: absolute;
	top: var(--gap-small);
	right: var(--gap-small);
}

.product-two__content-wrapper {
	display: grid;
	grid-gap: var(--gap-small);
	align-items: flex-start;
	justify-content: flex-start;
	height: 100%;
	box-sizing: border-box;
}

.product-two__content {
	position: relative;
	display: grid;
	grid-gap: var(--gap-small);
	z-index: 2;
}

.product-two__name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-decoration: none;
	font-size: .95em;
	line-height: 1.45em;
	font-weight: 600;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
	transition: .2s ease;
}

.product-two__name:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.product-two__header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.product-two__header>:not(.is-hidden):not(:last-child) {
	margin-right: 1rem;
}

.product-two__cart {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-two__cart>:not(.is-hidden):not(:last-child) {
	margin-bottom: var(--gap-small);
}

.product-two__compact-price,.product-two__price {
	margin-top: auto;
}

.product-two:not(.is-compact) .product-two__compact-price {
	display: none;
}

.product-two__form {
	display: flex;
	align-items: flex-start;
	box-sizing: border-box;
}

.product-two__form.is-active .product-two__quantity {
	display: flex;
}

.product-two__form.is-active .product-two__submit,.product-two__quantity {
	background-color: hsl(var(--ah),var(--as),var(--al));
	width: auto;
}

.product-two__form.is-active .product-two__submit:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.product-two__quantity {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-right: 1rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	user-select: none;
}

.product-two__quantity-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 36px;
	padding: unset;
	border: unset;
	background-color: transparent;
	font-size: 1.45em;
	cursor: pointer;
}

.product-two__quantity-button.is-loading {
	opacity: .2;
}

.product-two__quantity-button:focus,.review-form__image-description>textarea:focus {
	outline: 0;
}

.product-two__quantity-value {
	display: block;
	width: 50px;
	text-align: center;
	font-size: .95em;
}

.product-two__submit {
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	min-width: 36px;
	box-sizing: border-box;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border: unset;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
	cursor: pointer;
}

.product-two__submit:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) - 2%));
	transition: background-color .25s ease;
}

.product-two__submit[disabled] {
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: auto;
}

.product-two__submit>svg {
	display: block;
	width: 12px;
	height: 12px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	transform: rotate(-90deg);
}

.product-two__submit.is-rounded {
	border-radius: 25px;
}

@media (max-width:579px) {
	.is-compact.product-two {
		grid-template-rows: auto 1fr;
		grid-gap: var(--gap-small);
	}

	.is-compact .product-two__discount,.is-compact .product-two__features,.is-compact .product-two__form,.is-compact .product-two__header,.is-compact .product-two__price,.is-compact .product-two__stocks {
		display: none;
	}

	.product-two:not(.is-compact) {
		grid-template-rows: auto 1fr;
		grid-gap: 1rem;
	}

	.product-two:not(.is-compact) .product-two__score {
		display: none;
	}
}

@media (min-width:580px) {
	.is-compact .product-two__compact-price,.is-compact .product-two__mobile-score {
		display: none;
	}

	.product-two {
		grid-template-columns: 200px 1fr;
		grid-gap: 1rem;
	}

	.product-two__form {
		max-width: 200px;
	}
}

@media (min-width:992px) {
	.product-two__content {
		padding: var(--gap-small) 0;
	}
}

@media (min-width:1400px) {
	.product-two {
		grid-template-columns: 200px 1fr;
	}

	.product-two__content-wrapper {
		grid-template-columns: 1fr 200px;
		grid-gap: 1rem;
	}
}

.product-view {
	display: grid;
	grid-template-columns: repeat(3,42px);
	grid-gap: 5px;
}

.product-view--gap {
	margin-bottom: var(--gap);
}

.product-view__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
	outline: 0;
	cursor: pointer;
}

.product-view__item.is-selected svg {
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.product-view__item:hover:not(.is-selected) svg {
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.product-view__item svg {
	height: 11px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 16%));
	transition: fill .25s;
}

.product-view__item.is-loading {
	pointer-events: none;
}

.promotion-one {
	display: block;
	max-width: 500px;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.promotion-one--gap {
	margin-bottom: var(--gap);
}

.promotion-one__image-container {
	position: relative;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	overflow: hidden;
	isolation: isolate;
}

.promotion-one__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	object-fit: cover;
}

.promotion-one__counter {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	display: flex;
	padding: 4px 12px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	line-height: 1.2em;
	font-size: 14px;
}

.promotion-one__counter>svg {
	width: 13px;
	height: 13px;
	margin-right: 5px;
	fill: hsl(var(--th),var(--ts),var(--tl));
}

.promotion-one__wrapper>:not(:last-child) {
	margin-bottom: 5px;
}

.promotion-one__wrapper:has(*) {
	margin-top: var(--gap);
}

.promotion-one__title {
	font-size: var(--name-font-size);
	font-weight: 600;
	line-height: 1.45em;
}

.promotion-one__text {
	font-size: .95em;
	line-height: 1.45em;
}

.qr-one {
	display: grid;
	grid-gap: 1rem;
	max-width: 400px;
}

.qr-one--gap {
	margin-bottom: var(--gap);
}

.qr-one.is-primary {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.qr-one.is-primary .qr-one__link {
	background-color: hsla(var(--sh),var(--ss),var(--sl),.15);
	color: hsl(var(--sh),var(--ss),var(--sl));
}

.qr-one.is-primary .qr-one__link .core-link {
	fill: hsl(var(--sh),var(--ss),var(--sl));
}

.qr-one.is-secondary,.qr-one.is-secondary .qr-one__link {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.qr-one.is-secondary .qr-one__link {
	background-color: hsla(var(--ah),var(--as),var(--al),.15);
}

.qr-one.is-secondary .qr-one__link .core-link {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.qr-one__text {
	font-size: .95em;
	line-height: 1.45em;
}

.qr-one__image {
	display: block;
	max-width: 140px;
	width: 100%;
}

.qr-one__link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 140px;
	padding: 2px 10px;
	box-sizing: border-box;
	margin-top: 10px;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .95em;
	text-align: center;
}

.qr-one__link .core-link {
	display: block;
	width: 13px;
	height: 13px;
	margin-left: 5px;
}

@media (min-width:480px) {
	.qr-one {
		grid-template-columns: 1fr auto;
	}
}

.radio {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	grid-gap: var(--gap-small);
}

.radio--gap {
	margin-bottom: var(--gap);
}

.radio.is-disabled .radio__circle {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	cursor: default;
}

.radio.is-disabled .radio__circle::before {
	background: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	transform: scale(1);
}

.radio.is-disabled .radio__label {
	cursor: default;
}

.radio input[type=radio]:checked~.radio__circle {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.radio input[type=radio]:checked~.radio__circle::before {
	background: hsl(var(--ph),var(--ps),var(--pl));
	transform: scale(1);
}

.radio__circle {
	position: relative;
	display: block;
	height: 16px;
	width: 16px;
	margin-top: 2px;
	border: 2px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: 50%;
	transition: border-color .2s cubic-bezier(.25,.46,.45,.94);
	cursor: pointer;
	z-index: 5;
}

.radio__circle::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	display: block;
	height: 10px;
	width: 10px;
	margin: auto;
	border-radius: 50%;
	transform: scale(.5);
	transition: all .2s cubic-bezier(.25,.46,.45,.94);
}

.radio__label {
	font-size: .95em;
	line-height: 1.45em;
	cursor: pointer;
}

.rating-one {
	display: inline-flex;
	flex-direction: column;
	padding: .8rem 1rem;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	line-height: 1.45em;
}

.rating-one--gap {
	margin-bottom: var(--gap);
}

.rating-one.is-primary {
	color: hsl(var(--bh),var(--bs),calc(var(--bl) - 20%));
	background-color: hsl(var(--ih),var(--is),calc(var(--il) + 8%));
	border: 1px solid hsla(var(--bh),var(--bs),var(--bl),.15);
}

.rating-one.is-secondary {
	color: hsl(var(--th),var(--ts),var(--tl));
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.rating-one__title {
	display: block;
	margin-bottom: 3px;
	font-weight: 600;
}

.rating-one__stars {
	display: flex;
	align-items: center;
}

.rating-one__number {
	font-size: 1.1em;
	margin-right: var(--gap-small);
}

.rating-one__star {
	display: block;
	margin-left: 5px;
}

.rating-one__star>svg {
	width: 18px;
	height: 18px;
}

.rating-one__text {
	font-size: 15px;
	opacity: .5;
}

.relay {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	grid-gap: var(--gap-small);
}

.relay--gap {
	margin-bottom: var(--gap);
}

.relay input {
	display: none;
	visibility: hidden;
	height: 0;
	width: 0;
}

.relay input:checked+.relay__switch {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.relay input:checked+.relay__switch::after {
	left: calc(100% - 2px);
	transform: translateX(-100%);
}

.relay__switch {
	position: relative;
	display: block;
	width: 40px;
	height: 20px;
	margin-top: 2px;
	background-color: #a8a8a8;
	border-radius: 100px;
	cursor: pointer;
	text-indent: -9999px;
}

.relay__switch:active:after {
	width: 24px;
}

.relay__switch::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 90px;
	transition: .3s;
	will-change: transform;
}

.relay__label {
	font-size: .95em;
	line-height: 1.45em;
	cursor: pointer;
}

.review-form--gap {
	margin-bottom: var(--gap);
}

.review-form__form {
	max-width: 1050px;
}

.review-form__form.is-reply {
	margin-bottom: unset;
	margin-top: var(--gap-small);
}

.review-form__form .is-error {
	display: block;
	margin-top: 5px;
	font-style: normal;
	font-size: 16px;
	line-height: 1.45em;
	color: #fd6363;
}

.review-form__form.is-reply .review-form__cancel {
	display: flex;
}

.review-form__header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.review-form__title {
	display: block;
	margin-right: 1rem;
	font-size: var(--subtitle-font-size);
	font-weight: 600;
}

.review-form__cancel {
	display: none;
	align-items: center;
	cursor: pointer;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 35%));
}

.review-form__cancel>svg {
	display: block;
	width: 10px;
	height: 10px;
	margin-right: 5px;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 35%));
}

.review-form__textarea-wrapper {
	position: relative;
	width: 100%;
}

.review-form__textarea {
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	display: block;
	padding: .6rem 5.2rem .6rem 1.2rem;
	font-size: .95em;
	line-height: 1.45em;
	overflow-y: hidden;
	resize: none;
}

.review-form__textarea:hover:not(:disabled):not(:focus),.review-signup__input:hover:not(:disabled):not(:focus) {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.review-form__textarea:focus,.review-form__textarea:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.review-form__textarea:focus {
	outline: 0;
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.review-form__textarea:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.review-form__textarea.error,.review-form__textarea.error:focus,.review-form__textarea.error:hover,.review-form__textarea.is-error,.review-form__textarea.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.review-form__textarea::-webkit-input-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.review-form__textarea:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.review-form__clip,.review-form__submit {
	position: absolute;
	bottom: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: unset;
	border: unset;
	cursor: pointer;
}

.review-form__submit {
	right: 10px;
	border-radius: 50%;
	box-sizing: border-box;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.review-form__submit .icon-arrow-top {
	display: block;
	width: 15px;
	height: 15px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.review-form__image-description>textarea.is-hidden,.review-form__submit.is-active .icon-arrow-top {
	display: none;
}

.review-form__submit .core-spinner {
	display: none;
	width: 20px;
	height: 20px;
	animation: spinner-rotate 2s linear infinite;
}

.review-form__submit .core-spinner__path {
	stroke-linecap: round;
	stroke-width: 5px;
	animation: spinner-dash 1.5s ease-in-out infinite;
	stroke: hsl(var(--bh),var(--bs),var(--bl));
}

.review-form__submit.is-active .core-spinner {
	display: block;
}

.review-form__clip {
	right: 50px;
	background-color: unset;
	border-radius: var(--border-radius-normal);
	transition: all .15s ease-in;
}

.review-form__clip.is-active,.review-form__clip:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.review-form__clip .icon-paperclip {
	display: block;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 25%));
}

.review-form__notice {
	margin-top: 5px;
	font-style: normal;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.review-form__agreement-hint,.review-form__notice {
	font-size: 16px;
	line-height: 1.45em;
}

.review-form__agreement {
	margin-top: var(--gap-small);
}

.review-form__agreement a {
	cursor: pointer;
	text-decoration: underline;
	color: currentColor;
}

.review-form__errors {
	font-style: normal;
	font-size: 16px;
	line-height: 1.45em;
	color: #fd6363;
}

.review-form__errors:not(:empty) {
	margin-top: 5px;
}

.review-form__attached:not(:empty) {
	display: flex;
	flex-wrap: wrap;
	margin-top: -10px;
	margin-bottom: var(--gap);
}

.review-form__image-container {
	margin-right: 10px;
	margin-top: 10px;
}

.review-form__image-description>textarea,.review-form__image-wrapper {
	width: 145px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
}

.review-form__image-wrapper {
	position: relative;
	display: block;
	height: 145px;
	padding: 10px;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.review-form__image {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.review-form__image-description>a {
	display: block;
	margin-top: 5px;
	font-size: 15px;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.review-form__image-description>textarea {
	display: inline-block;
	margin-top: 5px;
	padding: .3rem .6rem .4rem;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	font-family: inherit;
	font-size: 14px;
	line-height: 1.45em;
	overflow: hidden;
	resize: none;
	white-space: nowrap;
}

@media (min-width:768px) {
	.review-form__textarea {
		min-height: 46px;
	}

	.review-form__image-description>textarea {
		width: 180px;
	}

	.review-form__image-wrapper {
		width: 180px;
		height: 180px;
	}

	.review-form__clip,.review-form__submit {
		bottom: 8px;
	}
}

.review-one {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.review-one--gap {
	margin-bottom: var(--gap);
}

.review-one__product {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 1rem;
	align-items: center;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.review-one__product-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.review-one__product-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-decoration: none;
	line-height: 1.45em;
	font-weight: 600;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
	transition: .2s ease;
}

.review-one__product-name:hover {
	color: hsl(var(--ph),var(--ps),var(--pl));
}

.review-one__product-image {
	max-width: 60px;
}

.review-one__product-image img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius-small);
}

.review-one__score {
	margin-top: 5px;
	padding-right: 1rem;
}

.review-one__content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.review-one__content>:not(:last-child) {
	margin-bottom: 1rem;
}

.review-one__text {
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.review-one__footer-wrapper {
	margin-top: auto;
}

.review-one__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -10px;
}

.review-one__footer>* {
	margin-top: 10px;
}

.review-one__author {
	display: flex;
	align-items: center;
	font-size: .95em;
	line-height: 1.45em;
}

.review-one__author .icon-quote {
	flex-shrink: 0;
	display: block;
	margin-right: var(--gap-small);
	width: 18px;
	height: 18px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

@media (min-width:768px) {
	.review-one {
		padding: 1.5rem;
	}

	.review-one__text {
		font-size: 1em;
	}
}

.review-signup {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.review-signup__wrapper {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 320px;
}

.review-signup__title {
	display: block;
	margin-bottom: 15px;
	text-align: center;
	font-size: var(--subtitle-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.review-signup__separator {
	display: flex;
	align-items: center;
	margin: 1rem auto 0;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 35%));
}

.review-signup__separator::after,.review-signup__separator::before {
	content: '';
	display: block;
	width: 100px;
	height: 1px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.review-signup__separator::before {
	margin-right: 5px;
}

.review-signup__separator::after {
	margin-left: 5px;
}

.review-signup__adapters {
	margin-top: 1rem;
}

.review-signup__login {
	position: relative;
	display: grid;
	align-items: center;
	padding: .5rem 2.5rem;
	min-height: 46px;
	margin-top: 1rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--ah),var(--as),var(--al));
	text-decoration: none;
	text-align: center;
	color: inherit;
	font-weight: 600;
	font-size: .95em;
	line-height: 1.45em;
	transition: background-color .25s ease;
}

.review-signup__login:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.review-signup__login.is-rounded {
	border-radius: 25px;
}

.review-signup__login>svg {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 24px;
	height: 24px;
}

.review-signup__signup {
	display: block;
	margin-top: 1rem;
	text-align: center;
}

.review-signup__signup>a {
	color: hsl(var(--ph),var(--ps),var(--pl));
	text-decoration: none;
}

.review-signup__form {
	display: flex;
	flex-direction: column;
}

.review-signup__input {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	margin-top: 1rem;
}

.review-signup__input:focus,.review-signup__input:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.review-signup__input:focus {
	outline: 0;
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.review-signup__input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.review-signup__input.error,.review-signup__input.error:focus,.review-signup__input.error:hover,.review-signup__input.is-error,.review-signup__input.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.review-signup__input::-webkit-input-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.review-signup__input:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.review-signup__captcha {
	margin: 1rem auto 0;
}

.review-signup__captcha .wa-captcha p:first-of-type .wa-captcha-input {
	width: 100%;
}

.review-signup__submit {
	max-width: unset;
	width: 100%!important;
	margin-top: 1rem;
}

.review-signup__rating {
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-signup__rating.is-locked {
	pointer-events: none;
	opacity: .5;
}

.review-signup__rating>:not(:last-child) {
	margin-right: 15px;
}

.review-signup__rating-icon {
	cursor: pointer;
	margin-top: 2px;
}

.review-signup__rating-icon svg {
	width: 22px;
	height: 22px;
	transition: .1s linear;
}

.review-signup__rating-icon.is-empty svg {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.review-signup__rating-icon.is-filled svg {
	fill: #fa0;
}

.score-five {
	display: flex;
	align-items: baseline;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.score-five--gap {
	margin-bottom: var(--gap);
}

.score-five>:not(:last-child) {
	margin-right: 8px;
}

.score-five.is-small .icon-star {
	width: 13px;
	height: 13px;
}

.score-five.is-small .score-five__rating>:not(:last-child) {
	margin-right: 2px;
}

.score-five.is-medium .icon-star {
	width: 16px;
	height: 16px;
}

.score-five.is-medium .score-five__rating>:not(:last-child) {
	margin-right: 4px;
}

.score-five__rating,.score-four {
	display: flex;
	align-items: center;
}

.score-five__rating-item .icon-star {
	display: inline-block;
}

.score-five__rating-item.is-empty,.score-five__rating-item.is-half .is-left {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.score-five__rating-item.is-fill,.score-five__rating-item.is-half .is-right {
	fill: #fa0;
}

.score-four {
	align-items: baseline;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.score-four--gap {
	margin-bottom: var(--gap);
}

.score-four>:not(:last-child) {
	margin-right: 8px;
}

.score-four.is-small {
	font-size: 15px;
}

.score-four__rating {
	display: flex;
	align-items: center;
}

.score-four__rating>:not(:last-child) {
	margin-right: 2px;
}

.score-four__rating-item .icon-star {
	display: inline-block;
	width: 12px;
	height: 12px;
}

.score-four__rating-item.is-empty,.score-four__rating-item.is-half .is-left {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.score-four__rating-item.is-fill,.score-four__rating-item.is-half .is-right {
	fill: #fa0;
}

.score-four__count {
	font-size: .95em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.score-one {
	display: flex;
	align-items: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.score-one--gap {
	margin-bottom: var(--gap);
}

.score-one.is-small {
	font-size: 15px;
}

.score-one .icon-star {
	display: block;
	margin-right: 5px;
	fill: #fa0;
	width: 14px;
	height: 14px;
	margin-top: -2px;
}

.score-one__rating {
	display: block;
	margin-right: var(--gap-small);
}

.score-six {
	max-width: 600px;
}

.score-six--gap {
	margin-bottom: var(--gap);
}

.score-six.is-small {
	font-size: 15px;
}

.score-six.is-small .score-six__rating-item .icon-star {
	width: 18px;
	height: 18px;
}

.score-six__wrapper {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 1rem;
	align-items: center;
}

.score-six__rating {
	display: flex;
	align-items: center;
}

.score-six__rating>:not(:last-child) {
	margin-right: 6px;
}

.score-six__count {
	font-size: var(--subtitle-font-size);
	font-weight: 600;
	line-height: 1.45em;
}

.score-six__rating-item .icon-star {
	display: inline-block;
	width: 22px;
	height: 22px;
}

.score-six__rating-item.is-empty,.score-six__rating-item.is-half .is-left {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.score-six__rating-item.is-fill,.score-six__rating-item.is-half .is-right {
	fill: #fa0;
}

.score-six__description {
	margin-top: var(--gap-small);
	padding-top: var(--gap-small);
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	font-size: .95em;
	line-height: 1.45em;
}

.score-three {
	display: flex;
	align-items: center;
	border-radius: 4px;
	background-color: hsla(var(--th),var(--ts),var(--tl),.5);
	color: hsl(var(--bh),var(--bs),var(--bl));
	line-height: 1.2em;
}

.score-three--gap {
	margin-bottom: var(--gap);
}

.score-three.is-small {
	padding: 3px 6px;
	font-size: 13px;
}

.score-three.is-small .icon-star {
	width: 12px;
	height: 12px;
}

.score-three.is-medium {
	padding: 3px 10px;
	font-size: 15px;
}

.score-three.is-medium .icon-star {
	width: 14px;
	height: 14px;
}

.score-three .icon-star {
	display: block;
	margin-right: 5px;
	width: 14px;
	height: 14px;
	fill: #fa0;
}

.score-two {
	display: flex;
	align-items: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.score-two--gap {
	margin-bottom: var(--gap);
}

.score-two>:not(:last-child) {
	margin-right: 8px;
}

.score-two.is-small {
	font-size: 15px;
}

.score-two__rating {
	display: flex;
	align-items: center;
}

.score-two__rating>:not(:last-child) {
	margin-right: 2px;
}

.score-two__rating-item .icon-star {
	display: inline-block;
	width: 14px;
	height: 14px;
}

.score-two__rating-item.is-empty,.score-two__rating-item.is-half .is-left {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
}

.score-two__rating-item.is-fill,.score-two__rating-item.is-half .is-right {
	fill: #fa0;
}

.score-two__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.search-one__input {
	width: 100%;
	min-height: 38px;
	padding: .2rem 2.2rem .2rem 1rem;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	outline: 0;
	transition: border-color .25s ease,box-shadow .25s ease;
}

.search-one__input.is-active,.search-one__input:focus {
	outline: 0;
}

.search-one.is-primary .search-one__input {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 12%));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.search-one.is-primary .search-one__input::placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.search-one.is-primary .search-one__input.is-active,.search-one.is-primary .search-one__input:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 0 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.search-one.is-secondary .search-one__input {
	backdrop-filter: blur(10px);
	background-color: hsla(var(--bh),var(--bs),var(--bl),.2);
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.search-one.is-secondary .search-one__input::placeholder {
	color: hsla(var(--bh),var(--bs),var(--bl),.75);
}

.search-one.is-secondary .search-one__input.is-active,.search-one.is-secondary .search-one__input:focus {
	border-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: 0 0 1px 1px hsl(var(--bh),var(--bs),var(--bl));
}

.search-one__layout {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	border-radius: var(--border-radius-normal);
}

.search-one__overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
	transition: 0s ease-in-out;
	opacity: 0;
	visibility: hidden;
	z-index: 200;
}

.search-one__button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: .3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: unset;
	background-color: transparent;
	cursor: pointer;
}

.search-one__button .icon-search {
	display: block;
	width: 18px;
	height: 18px;
}

.search-one.is-primary .search-one__button .icon-search {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 25%));
}

.search-one.is-secondary .search-one__button .icon-search {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.search-one__dropdown,.search-one__loader {
	position: absolute;
	visibility: hidden;
	opacity: 0;
}

.search-one__loader {
	top: 50%;
	right: calc(42px + .6rem + .6rem);
	transform: translateY(-50%);
	z-index: 1;
}

.search-one__loader.is-active {
	visibility: visible;
	opacity: 1;
}

.search-one__dropdown {
	top: calc(100% + 20px);
	left: 0;
	display: block;
	width: 100%;
	border-radius: var(--border-radius-small);
	box-shadow: var(--shadow-light);
	transition: all .2s ease;
	pointer-events: none;
	z-index: 150;
}

.search-one__dropdown.is-active {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	top: calc(100% + 10px);
}

.search-one__dropdown-inner {
	max-height: 320px;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-small);
	overflow-y: auto;
	clip-path: inset(0 round var(--border-radius-small));
}

.search-one__dropdown-inner::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.search-one__dropdown-inner::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	margin-left: 5px;
}

.search-one__cross {
	position: absolute;
	top: 50%;
	right: calc(42px + .6rem);
	padding: 8px;
	visibility: hidden;
	transform: translateY(-50%);
	cursor: pointer;
	opacity: 0;
	z-index: 1;
}

.search-one__cross.is-active {
	visibility: visible;
	opacity: 1;
}

.search-one__cross .core-cross {
	display: block;
	width: 10px;
	height: 10px;
}

.search-one.is-primary .search-one__cross .core-cross {
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.search-one.is-secondary .search-one__cross .core-cross {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.search-one__header {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	padding: 0 1rem;
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),var(--al));
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: .95em;
}

.search-one__header>a,.search-three__header>a,.search-two__header>a {
	margin-left: 1rem;
}

.search-one__dropdown-link,.search-one__header-link {
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.search-one__header-link {
	line-height: 1.45em;
}

.search-one__dropdown-link {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: auto 1fr;
	align-items: center;
	height: 90px;
	padding: 0 1rem;
	box-sizing: border-box;
	transition: background-color .25s ease;
}

.search-one__dropdown-link:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.search-one__dropdown-link:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.search-one__dropdown-link:focus {
	outline: 0;
}

.search-one__dropdown-image {
	display: block;
	flex: none;
	width: 65px;
	height: 65px;
	text-align: center;
}

.search-one__dropdown-image img,.search-three__dropdown-image img,.search-two__dropdown-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border-radius: var(--border-radius-small);
	overflow: hidden;
}

.search-one__dropdown-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.search-one__dropdown-price {
	font-size: 15px;
	line-height: 15px;
	font-weight: 600;
}

@media (min-width:992px) {
	.search-one__input {
		min-height: 42px;
		padding: .2rem 2.8rem .2rem 1.4rem;
	}

	.search-one__button {
		right: .6rem;
		width: 42px;
		height: 42px;
	}
}

.search-three>form {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	border-radius: 25px;
}

.search-three__input {
	position: relative;
	width: 100%;
	min-height: 38px;
	padding: .2rem 3rem .2rem 1.6rem;
	box-sizing: border-box;
	border-radius: 25px;
	border: unset;
	background-color: transparent;
	font-size: .95em;
	font-family: inherit;
	outline: 0;
	z-index: 1;
}

.search-three__input::placeholder,.search-two.is-primary .search-two__input::placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.search-three__input.is-active,.search-three__input:focus {
	border-color: transparent;
	z-index: 220;
}

.search-three__input.is-active~.search-three__overlay,.search-three__input:focus~.search-three__overlay {
	opacity: 1;
	visibility: visible;
	transition-duration: .2s;
}

.search-three__input.is-active~.search-three__button,.search-three__input.is-active~.search-three__cross,.search-three__input.is-active~.search-three__loader,.search-three__input:focus~.search-three__button,.search-three__input:focus~.search-three__cross,.search-three__input:focus~.search-three__loader {
	z-index: 220;
}

.search-three__input.is-active~.search-three__layout,.search-three__input:focus~.search-three__layout {
	border-color: hsl(var(--bh),var(--bs),var(--bl))!important;
	background-color: hsl(var(--bh),var(--bs),var(--bl))!important;
	box-shadow: var(--shadow-light);
	z-index: 210;
}

.search-three__overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--dim);
	transition: 0s ease-in-out;
	opacity: 0;
	visibility: hidden;
	z-index: 200;
}

.search-three__layout {
	position: absolute;
	top: -2px;
	right: -2px;
	left: -2px;
	bottom: -2px;
	border-width: 2px;
	border-style: solid;
	border-radius: 25px;
	transition: box-shadow .2s ease-in-out;
}

.search-three.is-primary .search-three__layout {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.search-three.is-secondary .search-three__layout {
	backdrop-filter: blur(10px);
	border-color: hsl(var(--bh),var(--bs),var(--bl));
	background-color: hsla(var(--bh),var(--bs),var(--bl),.75);
}

.search-three__button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	height: calc(38px - 6px);
	width: calc(38px - 6px);
	margin: 3px;
	border-radius: 50%;
	border: unset;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	outline: 0;
	cursor: pointer;
	z-index: 1;
}

.search-three__button .icon-search {
	display: block;
	width: 18px;
	height: 18px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.search-three__loader {
	position: absolute;
	top: 50%;
	right: calc(38px + .6rem);
	visibility: hidden;
	transform: translateY(-50%);
	opacity: 0;
	z-index: 1;
}

.search-three__loader.is-active {
	visibility: visible;
	opacity: 1;
}

.search-three__dropdown {
	position: absolute;
	top: calc(100% + 20px);
	left: 0;
	display: block;
	width: 100%;
	border-radius: var(--border-radius-normal);
	box-shadow: var(--shadow-light);
	transition: all .2s ease;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: 220;
}

.search-three__dropdown.is-active {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	top: calc(100% + 10px);
}

.search-three__dropdown-inner {
	max-height: 320px;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-normal);
	overflow-y: auto;
	clip-path: inset(0 round var(--border-radius-normal));
}

.search-three__dropdown-inner::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.search-three__dropdown-inner::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	margin-left: 5px;
}

.search-three__cross {
	position: absolute;
	top: 50%;
	right: 40px;
	padding: 8px;
	visibility: hidden;
	transform: translateY(-50%);
	cursor: pointer;
	opacity: 0;
	z-index: 1;
}

.search-three__cross.is-active {
	visibility: visible;
	opacity: 1;
}

.search-three__cross .core-cross {
	display: block;
	width: 10px;
	height: 10px;
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.search-three__header {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	padding: 0 1rem;
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),var(--al));
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: .95em;
}

.search-three__dropdown-link,.search-three__header-link {
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.search-three__header-link {
	line-height: 1.45em;
}

.search-three__dropdown-link {
	display: grid;
	grid-gap: 1rem;
	align-items: center;
	height: 90px;
	padding: 0 1rem;
	box-sizing: border-box;
	transition: background-color .25s ease;
}

.search-three__dropdown-link:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.search-three__dropdown-link:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.search-three__dropdown-link:focus,.search-two__input.is-active,.search-two__input:focus {
	outline: 0;
}

.search-three__dropdown-image {
	display: none;
	flex: none;
	width: 65px;
	height: 65px;
	text-align: center;
}

.search-three__dropdown-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.search-three__dropdown-price {
	font-size: 15px;
	line-height: 15px;
	font-weight: 600;
}

@media (min-width:1200px) {
	.search-three__dropdown-image {
		display: block;
	}

	.search-three__dropdown-link {
		grid-template-columns: auto 1fr;
	}
}

.search-two {
	width: 100%;
}

.search-two>form {
	position: relative;
}

.search-two__input {
	width: 100%;
	min-height: 38px;
	padding: .2rem 3rem .2rem calc(1rem + 38px);
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border-width: 1px;
	border-style: solid;
	font-size: .95em;
	font-family: inherit;
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.search-two.is-primary .search-two__input {
	background-color: hsl(var(--ah),var(--as),var(--al));
	border-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),var(--tl));
}

.search-two.is-primary .search-two__input.is-active,.search-two.is-primary .search-two__input:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.search-two.is-secondary .search-two__input {
	backdrop-filter: blur(10px);
	background-color: hsla(var(--bh),var(--bs),var(--bl),.2);
	border-color: hsla(var(--bh),var(--bs),var(--bl),.3);
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.search-two.is-secondary .search-two__input::placeholder {
	color: hsla(var(--bh),var(--bs),var(--bl),.75);
}

.search-two.is-secondary .search-two__input.is-active,.search-two.is-secondary .search-two__input:focus {
	border-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: 0 0 1px 1px hsl(var(--bh),var(--bs),var(--bl));
}

.search-two__button,.search-two__loader {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.search-two__loader {
	right: 1.2rem;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

.search-two__loader.is-active {
	visibility: visible;
	opacity: 1;
}

.search-two__button {
	left: .6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: unset;
	background-color: transparent;
	cursor: pointer;
}

.search-two__button .icon-search {
	display: block;
	width: 18px;
	height: 18px;
}

.search-two.is-primary .search-two__button .icon-search {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 25%));
}

.search-two.is-secondary .search-two__button .icon-search {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.search-two__dropdown {
	position: absolute;
	top: calc(100% + 20px);
	left: 0;
	display: block;
	width: 100%;
	border-radius: var(--border-radius-small);
	box-shadow: var(--shadow-light);
	transition: all .2s ease;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: 220;
}

.search-two__dropdown.is-active {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	top: calc(100% + 10px);
}

.search-two__dropdown-inner {
	max-height: 320px;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-small);
	overflow-y: auto;
	clip-path: inset(0 round var(--border-radius-small));
}

.search-two__dropdown-inner::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.search-two__dropdown-inner::-webkit-scrollbar-thumb {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	margin-left: 5px;
}

.search-two__cross {
	position: absolute;
	top: 50%;
	right: .6rem;
	padding: 8px;
	visibility: hidden;
	transform: translateY(-50%);
	cursor: pointer;
	opacity: 0;
	z-index: 1;
}

.search-two__cross.is-active {
	visibility: visible;
	opacity: 1;
}

.search-two__cross .core-cross {
	display: block;
	width: 10px;
	height: 10px;
}

.search-two.is-primary .search-two__cross .core-cross {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 25%));
}

.search-two.is-secondary .search-two__cross .core-cross {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.search-two__header {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	padding: 0 1rem;
	box-sizing: border-box;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: .95em;
}

.search-two__dropdown-link,.search-two__header-link {
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.search-two__header-link {
	line-height: 1.45em;
}

.search-two__dropdown-link {
	display: grid;
	grid-gap: 1rem;
	align-items: center;
	height: 90px;
	padding: 0 1rem;
	box-sizing: border-box;
	transition: background-color .25s ease;
}

.search-two__dropdown-link:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.search-two__dropdown-link:hover {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.search-two__dropdown-link:focus {
	outline: 0;
}

.search-two__dropdown-image {
	display: none;
	flex: none;
	width: 65px;
	height: 65px;
	text-align: center;
}

.search-two__dropdown-name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.search-two__dropdown-price {
	font-size: 15px;
	line-height: 15px;
	font-weight: 600;
}

@media (min-width:992px) {
	.search-two__input {
		min-height: 42px;
	}
}

@media (min-width:1200px) {
	.search-two__dropdown-image {
		display: block;
	}

	.search-two__dropdown-link {
		grid-template-columns: auto 1fr;
	}
}

.share--gap {
	margin-bottom: var(--gap);
}

.ya-share2,.ya-share2 * {
	line-height: normal;
	font-family: inherit;
}

.ya-share2 {
	position: relative;
	z-index: 1;
}

.ya-share2 :link:hover,.ya-share2 :visited:hover {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.ya-share2 input {
	color: inherit;
	font: inherit;
	margin: 0;
	line-height: normal;
}

.ya-share2__list_direction_vertical>.ya-share2__item {
	display: block;
	margin-right: 0;
}

.ya-share2__list {
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.ya-share2__item {
	margin: 5px 6px 5px 0;
	font-family: inherit,sans-serif;
	display: inline-block;
}

.ya-share2__badge,.ya-share2__icon {
	display: inline-block;
	vertical-align: top;
}

.ya-share2__icon {
	height: 26px;
	width: 26px;
	background-size: 26px;
}

.ya-share2__badge {
	border-radius: 3px;
	color: hsl(var(--bh),var(--bs),var(--bl));
	overflow: hidden;
	position: relative;
}

.ya-share2__badge+.ya-share2__title {
	margin-left: 10px;
}

.ya-share2__item_more {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	box-sizing: border-box;
}

.ya-share2__icon_more {
	box-sizing: border-box;
	position: relative;
	height: 18px;
	width: 18px;
	background-size: 16px 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 800 800' xml:space='preserve' width='22' height='22' fill='%23666666'%3E%3Cpath d='M640,480c-48.1,0-91.2,21.3-120.6,55L316.5,433.5c2.3-10.8,3.5-22,3.5-33.5c0-11.5-1.2-22.7-3.5-33.5L519.4,265 c29.4,33.7,72.5,55,120.6,55c88.2,0,160-71.8,160-160S728.2,0,640,0S480,71.8,480,160c0,11.5,1.2,22.7,3.5,33.5L280.6,295 c-29.4-33.7-72.5-55-120.6-55C71.8,240,0,311.8,0,400c0,88.2,71.8,160,160,160c48.1,0,91.3-21.3,120.6-55l202.9,101.5 c-2.3,10.8-3.5,22-3.5,33.5c0,88.2,71.8,160,160,160s160-71.8,160-160S728.2,480,640,480z M640,80c44.1,0,80,35.9,80,80 s-35.9,80-80,80c-44.1,0-80-35.9-80-80S595.9,80,640,80z M160,480c-44.1,0-80-35.9-80-80s35.9-80,80-80s80,35.9,80,80 S204.1,480,160,480z M640,720c-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C720,684.1,684.1,720,640,720z'/%3E%3C/svg%3E");
}

.ya-share2__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	white-space: nowrap;
	user-select: none;
}

.ya-share2__link:focus {
	outline: 0;
}

.ya-share2__title {
	display: inline-block;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.ya-share2__popup {
	position: absolute;
	top: calc(100% + 20px);
	right: 0;
	display: block;
	min-width: 170px;
	padding: 5px 10px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-modal);
	transition: all .2s cubic-bezier(.25,.46,.45,.94);
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: 80;
}

.ya-share2__popup_visible {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	top: calc(100% + 10px);
}

.ya-share2__item_service_twitter .ya-share2__badge {
	background-color: #00aced;
}

.ya-share2__item_service_twitter .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIzIDguNzNhNy4zOCA3LjM4IDAgMCAxLTIuMTIuNTgzIDMuNzA2IDMuNzA2IDAgMCAwIDEuNjIzLTIuMDQzIDcuMzk3IDcuMzk3IDAgMCAxLTIuMzQ2Ljg5NiAzLjY5MyAzLjY5MyAwIDAgMC02LjI5MyAzLjM2OCAxMC40ODUgMTAuNDg1IDAgMCAxLTcuNjEtMy44NThjLS4zMi41NDUtLjUgMS4xOC0uNSAxLjg1NiAwIDEuMjguNjUgMi40MSAxLjY0MiAzLjA3M2EzLjY4MyAzLjY4MyAwIDAgMS0xLjY3My0uNDYydi4wNDdjMCAxLjc4OCAxLjI3MyAzLjI4IDIuOTYyIDMuNjJhMy43MTggMy43MTggMCAwIDEtMS42NjcuMDYzIDMuNjk3IDMuNjk3IDAgMCAwIDMuNDUgMi41NjRBNy40MSA3LjQxIDAgMCAxIDUgMTkuOTY3YTEwLjQ1MyAxMC40NTMgMCAwIDAgNS42NiAxLjY1OGM2Ljc5NCAwIDEwLjUwOC01LjYyNiAxMC41MDgtMTAuNTA1IDAtLjE2LS4wMDMtLjMyLS4wMS0uNDc4QTcuNTA3IDcuNTA3IDAgMCAwIDIzIDguNzMyeiIgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+Cg==);
}

.ya-share2__item_service_vkontakte .ya-share2__badge {
	background-color: #48729e;
}

.ya-share2__item_service_vkontakte .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0Ljg4MyAxOS4zOTZzLjMyNS0uMDM2LjQ5LS4yMThjLjE1NC0uMTY3LjE1LS40OC4xNS0uNDhzLS4wMjMtMS40NjguNjQ4LTEuNjg0Yy42Ni0uMjEzIDEuNTEgMS40MTggMi40MDggMi4wNDYuNjguNDc0IDEuMTk3LjM3IDEuMTk3LjM3bDIuNDA0LS4wMzRzMS4yNTYtLjA4LjY2LTEuMDg0Yy0uMDUtLjA4Mi0uMzQ4LS43NDMtMS43ODgtMi4xMDItMS41MDctMS40MjMtMS4zMDUtMS4xOTIuNTEtMy42NTMgMS4xMDYtMS40OTggMS41NDgtMi40MTIgMS40MS0yLjgwNC0uMTMyLS4zNzMtLjk0NS0uMjc1LS45NDUtLjI3NWwtMi43MDYuMDE3cy0uMi0uMDI4LS4zNS4wNjNjLS4xNDQuMDg4LS4yMzguMjk1LS4yMzguMjk1cy0uNDI4IDEuMTYtMSAyLjE0NmMtMS4yMDQgMi4wOC0xLjY4NiAyLjE5LTEuODgzIDIuMDYtLjQ2LS4zLS4zNDUtMS4yMS0uMzQ1LTEuODU1IDAtMi4wMTcuMy0yLjg1Ny0uNTg2LTMuMDc1LS4yOTUtLjA3Mi0uNTEyLS4xMi0xLjI2NC0uMTI4LS45NjYtLjAxLTEuNzgzLjAwMy0yLjI0Ni4yMzQtLjMwOC4xNTMtLjU0Ni40OTUtLjQuNTE0LjE3OC4wMjUuNTgzLjExLjc5OC40MS4yNzcuMzgyLjI2OCAxLjI0NC4yNjggMS4yNDRzLjE2IDIuMzczLS4zNzMgMi42NjhjLS4zNjUuMjAyLS44NjUtLjIxLTEuOTQtMi4wOTgtLjU1LS45NjctLjk2Ni0yLjAzNi0uOTY2LTIuMDM2cy0uMDgtLjItLjIyMy0uMzA2Yy0uMTczLS4xMy0uNDE2LS4xNy0uNDE2LS4xN2wtMi41Ny4wMTZzLS4zODguMDEtLjUzLjE4MmMtLjEyNS4xNTItLjAxLjQ2Ni0uMDEuNDY2czIuMDE0IDQuNzkgNC4yOTQgNy4yMDJjMi4wOSAyLjIxNCA0LjQ2NSAyLjA2OCA0LjQ2NSAyLjA2OGgxLjA3NnoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=);
}

.ya-share2__item_service_facebook .ya-share2__badge {
	background-color: #3c5a98;
}

.ya-share2__item_service_facebook .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjEgMjN2LTguMjFoMi43NzNsLjQxNS0zLjJIMTUuMVY5LjU0N2MwLS45MjcuMjYtMS41NTggMS41OTYtMS41NThsMS43MDQtLjAwMlY1LjEyNkEyMi43ODcgMjIuNzg3IDAgMCAwIDE1LjkxNyA1QzEzLjQ2IDUgMTEuNzggNi40OTIgMTEuNzggOS4yM3YyLjM2SDl2My4yaDIuNzhWMjNoMy4zMnoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=);
}

.ya-share2__item_service_linkedin .ya-share2__badge {
	background-color: #0083be;
}

.ya-share2__item_service_linkedin .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNNS4yNzYgMTAuNTczaDMuODM3VjIyLjE0SDUuMjc2ek03LjIxOCA1LjAyYy0xLjMxMyAwLTIuMTcuODY2LTIuMTcgMiAwIDEuMTEuODMgMS45OTggMi4xMiAxLjk5OGguMDI0YzEuMzM3IDAgMi4xNy0uODkgMi4xNy0xLjk5OC0uMDI1LTEuMTM0LS44MzMtMi0yLjE0NC0yek0xOC41MjUgMTAuMzI2Yy0yLjAzNSAwLTIuOTQ2IDEuMTIyLTMuNDU3IDEuOTF2LTEuNjM4aC0zLjgzNWMuMDUgMS4wODUgMCAxMS41NjYgMCAxMS41NjZoMy44MzV2LTYuNDZjMC0uMzQ1LjAyNS0uNjkuMTI3LS45MzguMjc3LS42OS45MDgtMS40MDUgMS45NjgtMS40MDUgMS4zODcgMCAxLjk0MyAxLjA2MiAxLjk0MyAyLjYxNnY2LjE4OGgzLjgzNnYtNi42MzJjMC0zLjU1My0xLjg5My01LjIwNi00LjQxNy01LjIwNnoiLz48L2c+PC9zdmc+Cg==);
}

.ya-share2__item_service_moimir .ya-share2__badge {
	background-color: #4776a6;
}

.ya-share2__item_service_moimir .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEwLjUgMTFhMS41IDEuNSAwIDEgMCAwLTMgMS41IDEuNSAwIDAgMCAwIDN6bTcgMGExLjUgMS41IDAgMSAwIDAtMyAxLjUgMS41IDAgMCAwIDAgM3ptNS4zNjcgNi44NzJsLTIuMDI4LTMuNDA3YS45ODguOTg4IDAgMCAwLTEuMzM4LS4zNDUuOTUuOTUgMCAwIDAtLjM1IDEuMzEybC4yNC40MDVhNy41NDggNy41NDggMCAwIDEtNS4zOTUgMi4yNDUgNy41NSA3LjU1IDAgMCAxLTUuMzktMi4yNGwuMjQyLS40MWEuOTUuOTUgMCAwIDAtLjM1Mi0xLjMxMi45ODguOTg4IDAgMCAwLTEuMzM4LjM0NWwtMi4wMjcgMy40MDdhLjk1Ljk1IDAgMCAwIC4zNTIgMS4zMTIuOTkuOTkgMCAwIDAgMS4zMzctLjM0NWwuNzctMS4yOTJBOS41MjQgOS41MjQgMCAwIDAgMTMuOTk2IDIwYTkuNTIgOS41MiAwIDAgMCA2LjQxLTIuNDU2bC43NyAxLjI5NWEuOTkuOTkgMCAwIDAgMS4zMzcuMzQ1Ljk1Ljk1IDAgMCAwIC4zNTMtMS4zMTN6IiBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4K);
}

.ya-share2__item_service_odnoklassniki .ya-share2__badge {
	background-color: #ff9f4d;
}

.ya-share2__item_service_odnoklassniki .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTMuNTYzIDE0LjEyNmMyLjU3OCAwIDQuNjY4LTIuMDQgNC42NjgtNC41NTUgMC0yLjUxNS0yLjA5LTQuNTU1LTQuNjY3LTQuNTU1LTIuNTc4IDAtNC42NjcgMi4wNC00LjY2NyA0LjU1NiAwIDIuNTE3IDIuMDkgNC41NTYgNC42NjcgNC41NTZ6bTAtNi43OTZjMS4yNjggMCAyLjI5NyAxLjAwMyAyLjI5NyAyLjI0IDAgMS4yNC0xLjAzIDIuMjQyLTIuMjk3IDIuMjQyLTEuMjY4IDAtMi4yOTYtMS4wMDMtMi4yOTYtMi4yNCAwLTEuMjQgMS4wMjgtMi4yNDIgMi4yOTYtMi4yNDJ6Ii8+PHBhdGggZD0iTTE2Ljk4IDE0LjQ4MmMtMS4zMSAxLjAwOC0zLjQxNyAxLjAwOC0zLjQxNyAxLjAwOHMtMi4xMDYgMC0zLjQxNy0xLjAwOGMtLjk3LS43NDYtMS43LS4zMTctMS45NjMuMi0uNDYuOS4wNiAxLjMzNiAxLjIzIDIuMDcgMS4wMDIuNjI3IDIuMzc2Ljg2MiAzLjI2NC45NWwtLjc0LjcyMmMtMS4wNDUgMS4wMi0yLjA1MiAyLjAwMi0yLjc1IDIuNjg1YTEuMDI3IDEuMDI3IDAgMCAwIDAgMS40NzZsLjEyNS4xMjNhMS4wOSAxLjA5IDAgMCAwIDEuNTEzIDBsMi43NS0yLjY4NSAyLjc1IDIuNjg0YTEuMDkgMS4wOSAwIDAgMCAxLjUxNSAwbC4xMjYtLjEyNGExLjAyNyAxLjAyNyAwIDAgMCAwLTEuNDc3bC0yLjc1LTIuNjg2LS43NDQtLjcyNWMuODg4LS4wOSAyLjI0OC0uMzI2IDMuMjQtLjk0OCAxLjE3Mi0uNzM0IDEuNjktMS4xNyAxLjIzLTIuMDctLjI2Mi0uNTE3LS45OTItLjk0Ni0xLjk2Mi0uMnoiLz48L2c+PC9zdmc+Cg==);
}

.ya-share2__item_service_reddit .ya-share2__badge {
	background-color: #ff4500;
}

.ya-share2__item_service_reddit .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOCAyOCI+PHBhdGggZD0iTTIwLjM2NiAxMS40MTJjLTEuNTMtLjg4Mi0zLjQ1NC0xLjQzLTUuNTczLTEuNTVMMTUuOTEgNi41NWwzLjAyMy44ODJhMi40MSAyLjQxIDAgMCAwIDIuNDE0IDIuNDFjMS4zMzQgMCAyLjQzMy0xLjA3NyAyLjQzMy0yLjQxQzIzLjc4IDYuMDc4IDIyLjY4IDUgMjEuMzQ3IDVjLS44NDQgMC0xLjU5LjQ1LTIuMDIgMS4wOThsLTMuNjctMS4wNThhLjY2OC42NjggMCAwIDAtLjg0NS40M2wtMS40NyA0LjM5M2MtMi4xLjExOC00LjAyNC42NjctNS41NTQgMS41NWEyLjc1MiAyLjc1MiAwIDAgMC0yLjAyLS44NjRBMi43NjIgMi43NjIgMCAwIDAgMyAxMy4zMTNjMCAxLjA0LjU5IDEuOTQgMS40MzIgMi40MS0uMDQuMjM3LS4wNTguNDcyLS4wNTguNzA3IDAgMy42MyA0LjM1NiA2LjU3IDkuNzEzIDYuNTcgNS4zMzcgMCA5LjY5My0yLjk0IDkuNjkzLTYuNTcgMC0uMjM0LS4wMi0uNDctLjA2LS43MDVhMi43MzMgMi43MzMgMCAwIDAgMS40MzQtMi40MSAyLjc2MyAyLjc2MyAwIDAgMC0yLjc2Ny0yLjc2NmMtLjgwNSAwLTEuNTEuMzMzLTIuMDIuODYyek0xMC42MTQgMTRjLjc2NSAwIDEuMzkyLjYyOCAxLjM5MiAxLjM5MmExLjM4IDEuMzggMCAwIDEtMS4zOTIgMS4zNzMgMS4zNjUgMS4zNjUgMCAwIDEtMS4zNzQtMS4zNzNBMS4zOCAxLjM4IDAgMCAxIDEwLjYxNCAxNHptNi45MjYgMGExLjM4IDEuMzggMCAwIDAtMS4zNzQgMS4zOTJjMCAuNzY1LjYxIDEuMzczIDEuMzc0IDEuMzczLjc2NSAwIDEuMzkzLS42MDggMS4zOTMtMS4zNzMgMC0uNzY0LS42MjgtMS4zOTItMS4zOTMtMS4zOTJ6bS03LjM0IDQuOThhLjY3LjY3IDAgMCAxLS4xMTYtLjk2Yy4yMTYtLjMxNC42NjctLjM1My45Ni0uMTE4Ljc4Ni42MDggMi4wNDIuOTQyIDMuMDQzLjk0Mi45OCAwIDIuMjM3LS4zMzQgMy4wNC0uOTQyYS42Ny42NyAwIDAgMSAuOTYzLjExNy42ODcuNjg3IDAgMCAxLS4xMTguOTZjLTEuMDIuODA1LTIuNjEgMS4yNTYtMy44ODUgMS4yNTYtMS4yOTUgMC0yLjg2NS0uNDUtMy44ODYtMS4yNTV6TTIxLjM0OCA4LjQ3Yy0uNTcgMC0xLjA0LS40Ny0xLjA0LTEuMDQgMC0uNTg3LjQ3LTEuMDM4IDEuMDQtMS4wMzguNTcgMCAxLjA0LjQ1IDEuMDQgMS4wNCAwIC41NjgtLjQ3IDEuMDQtMS4wNCAxLjA0eiIgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+Cg==);
}

.ya-share2__item_service_telegram .ya-share2__badge {
	background-color: #64a9dc;
}

.ya-share2__item_service_telegram .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE4LjkyIDYuMDg5TDQuNzQ3IDExLjU1NWMtLjk2Ny4zODgtLjk2Mi45MjgtLjE3NiAxLjE2OGwzLjUzNCAxLjEwNCAxLjM1MyA0LjE0NmMuMTY0LjQ1NC4wODMuNjM0LjU2LjYzNC4zNjggMCAuNTMtLjE2OC43MzYtLjM2OC4xMy0uMTI3LjkwMy0uODggMS43NjctMS43MTlsMy42NzcgMi43MTdjLjY3Ni4zNzMgMS4xNjUuMTggMS4zMzMtLjYyOGwyLjQxNC0xMS4zNzRjLjI0Ny0uOTktLjM3OC0xLjQ0LTEuMDI1LTEuMTQ2ek04LjY2IDEzLjU3M2w3Ljk2Ny01LjAyNmMuMzk4LS4yNDIuNzYzLS4xMTIuNDYzLjE1NGwtNi44MjIgNi4xNTUtLjI2NSAyLjgzMy0xLjM0My00LjExNnoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
}

.ya-share2__item_service_viber .ya-share2__badge {
	background-color: #7b519d;
}

.ya-share2__item_service_viber .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMjEuMjM4IDE4LjAyYy0uNTQ1LS40NC0xLjEyNy0uODM1LTEuNy0xLjI0LTEuMTQyLS44MDYtMi4xODgtLjg3LTMuMDQuNDMtLjQ4LjcyOC0xLjE1Ljc2LTEuODUuNDQtMS45MzMtLjg4LTMuNDI1LTIuMjM4LTQuMy00LjIxMi0uMzg2LS44NzMtLjM4LTEuNjU2LjUyNC0yLjI3NC40OC0uMzI3Ljk2Mi0uNzEzLjkyMy0xLjQyNy0uMDUtLjkzLTIuMy00LjA0Mi0zLjE4Ni00LjM3YTEuNjA3IDEuNjA3IDAgMCAwLTEuMTEgMEM1LjQyIDYuMDcgNC41NTggNy43OSA1LjM4NCA5LjgyOGMyLjQ2NCA2LjA4IDYuOCAxMC4zMSAxMi43NjggMTIuODk0LjM0LjE0OC43Mi4yMDYuOTEuMjYgMS4zNi4wMTMgMi45NS0xLjMwMyAzLjQxLTIuNjEuNDQzLTEuMjU1LS40OTItMS43NTQtMS4yMzItMi4zNTN6TTE0LjU0NiA1Ljk5YzQuMzYzLjY3NSA2LjM3NiAyLjc2IDYuOTMgNy4xNzguMDUzLjQwOC0uMDk4IDEuMDIyLjQ4IDEuMDMzLjYwNi4wMTMuNDYtLjU5Mi40NjUtMSAuMDUyLTQuMTYtMy41NTYtOC4wMTgtNy43NDgtOC4xNi0uMzE2LjA0Ni0uOTctLjIyLTEuMDEuNDkzLS4wMjguNDguNTIzLjQwMi44ODQuNDU3eiIvPjxwYXRoIGQ9Ik0xNS40IDcuMjAyYy0uNDItLjA1LS45NzQtLjI1LTEuMDcyLjMzNS0uMTAzLjYxNS41MTUuNTUyLjkxMi42NDIgMi42OTUuNjA0IDMuNjMzIDEuNTkgNC4wNzcgNC4yNzcuMDY0LjM5Mi0uMDY0IDEgLjU5OC45LjQ5LS4wNzUuMzEzLS41OTcuMzU1LS45MDMuMDItMi41OC0yLjE3OC00LjkyNy00Ljg3LTUuMjUyeiIvPjxwYXRoIGQ9Ik0xNS42NDcgOS4zMWMtLjI4LjAwOC0uNTU1LjA0LS42NTguMzQtLjE1Ni40NS4xNy41NTYuNS42MSAxLjEwNi4xNzggMS42ODguODM0IDEuOCAxLjk0Mi4wMjguMy4yMTguNTQ0LjUwNy41MS40LS4wNDguNDM3LS40MDcuNDI1LS43NDcuMDItMS4yNDUtMS4zOC0yLjY4NC0yLjU3NS0yLjY1NHoiLz48L2c+PC9zdmc+Cg==);
}

.ya-share2__item_service_whatsapp .ya-share2__badge {
	background-color: #65bc54;
}

.ya-share2__item_service_whatsapp .ya-share2__icon {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIzIDEzLjc2OGMwIDQuODQzLTMuOTU2IDguNzY4LTguODM2IDguNzY4YTguODUzIDguODUzIDAgMCAxLTQuMjcyLTEuMDlMNSAyM2wxLjU5NS00LjcwNGE4LjY3OCA4LjY3OCAwIDAgMS0xLjI2OC00LjUyOEM1LjMyNyA4LjkyNiA5LjI4MyA1IDE0LjE2NCA1IDE5LjA0NCA1IDIzIDguOTI2IDIzIDEzLjc2OHptLTguODM2LTcuMzcyYy00LjA5NyAwLTcuNDMgMy4zMDgtNy40MyA3LjM3MiAwIDEuNjEzLjUyNiAzLjEwNyAxLjQxNSA0LjMyMmwtLjkzIDIuNzM4IDIuODU2LS45MDhhNy40MjUgNy40MjUgMCAwIDAgNC4wODggMS4yMmM0LjA5NiAwIDcuNDMtMy4zMDcgNy40My03LjM3MiAwLTQuMDY0LTMuMzM0LTcuMzcyLTcuNDMtNy4zNzJ6bTQuNDYyIDkuMzljLS4wNTUtLjA4OC0uMi0uMTQyLS40MTUtLjI1LS4yMTYtLjEwNy0xLjI4Mi0uNjI3LTEuNDgtLjY5OC0uMi0uMDcyLS4zNDMtLjEwOC0uNDg3LjEwNy0uMTQ1LjIxNi0uNTYuNy0uNjg2Ljg0Mi0uMTI3LjE0NC0uMjUzLjE2Mi0uNDcuMDU0LS4yMTYtLjEwNi0uOTE0LS4zMzMtMS43NC0xLjA2NS0uNjQ1LS41Ny0xLjA4LTEuMjczLTEuMjA2LTEuNDg4LS4xMjYtLjIxNS0uMDEzLS4zMzIuMDk2LS40NC4wOTctLjA5NS4yMTYtLjI1LjMyNS0uMzc1LjExLS4xMjYuMTQ1LS4yMTUuMjE3LS4zNi4wNzMtLjE0Mi4wMzYtLjI2Ny0uMDE4LS4zNzUtLjA1NS0uMTA4LS40ODgtMS4xNjUtLjY3LTEuNTk1LS4xOC0uNDMtLjM2LS4zNi0uNDg2LS4zNi0uMTI3IDAtLjI3LS4wMTctLjQxNS0uMDE3YS44LjggMCAwIDAtLjU4LjI3Yy0uMTk3LjIxNC0uNzU3LjczNC0uNzU3IDEuNzkgMCAxLjA2Ljc3NiAyLjA4Ljg4NCAyLjIyNC4xMS4xNDIgMS40OTggMi4zODMgMy43IDMuMjQ0IDIuMjAzLjg2IDIuMjAzLjU3MyAyLjYuNTM3LjM5Ny0uMDM1IDEuMjgtLjUyIDEuNDYyLTEuMDIuMTgtLjUwMi4xOC0uOTMzLjEyNi0xLjAyM3oiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=);
}

.ya-share2__item_copy .ya-share2__badge {
	background-color: rgba(0,0,0,.03);
}

.ya-share2__item_copy .ya-share2__icon {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2a1 1 0 001 1h7.5a.5.5 0 01.5.5v7.497a1 1 0 002 0V3.5A2.5 2.5 0 0012.5 1H5a1 1 0 00-1 1zM2.5 4h8A1.5 1.5 0 0112 5.5v8a1.5 1.5 0 01-1.5 1.5h-8A1.5 1.5 0 011 13.5v-8A1.5 1.5 0 012.5 4zM3 6v7h7V6H3z' fill='%23999'/%3E%3C/svg%3E");
	background-size: 16px 16px;
	background-position: center;
	background-repeat: no-repeat;
}

.side-buttons,.ya-share2__item_copy .ya-share2__input_copy {
	display: none;
}

.side-buttons--gap {
	margin-bottom: var(--gap);
}

.side-buttons__list {
	display: flex;
	flex-direction: column;
	border-top-left-radius: var(--border-radius-small);
	border-bottom-left-radius: var(--border-radius-small);
	background: linear-gradient(180deg,hsla(var(--ah),var(--as),calc(var(--al) - 8%),.3) 0,hsla(var(--bh),var(--bs),var(--bl),0) 100%);
	background-color: hsla(var(--ah),var(--as),calc(var(--al) + 2%),.8);
	backdrop-filter: blur(10px);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-right: unset;
	pointer-events: auto;
}

.side-buttons__item-wrapper:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.side-buttons__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	border: unset;
	background-color: unset;
	cursor: pointer;
}

.side-buttons__item>svg {
	display: block;
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	cursor: pointer;
}

.side-buttons__item:focus {
	outline: 0;
}

.side-buttons__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.side-buttons__icon>svg {
	display: block;
	width: 20px;
	height: 20px;
}

.side-buttons__icon .icon-compare,.side-buttons__icon>svg {
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.side-buttons__icon .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.side-buttons__counter {
	position: absolute;
	right: -10px;
	top: -6px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.side-buttons__counter.is-active {
	display: flex;
}

@media (min-width:1600px) {
	.side-buttons {
		position: fixed;
		right: 0;
		top: 0;
		display: grid;
		place-items: center;
		height: 100%;
		pointer-events: none;
		z-index: 140;
	}
}

.sidebar-banner {
	position: relative;
	display: block;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	overflow: hidden;
}

.sidebar-banner__image {
	display: block;
	max-width: 100%;
}

.sidebar-banner__icon {
	position: absolute;
	bottom: 1.6rem;
	right: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	box-sizing: border-box;
	border: 1px solid hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 50%;
}

.sidebar-banner__icon .icon-arrow-top-right {
	display: block;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.sidebar-banner__sticker {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 1;
}

.sidebar-contacts {
	padding: 0 1.4rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.sidebar-contacts__title {
	position: relative;
	display: block;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	padding: 1rem 0;
	line-height: 1.45em;
	font-weight: 600;
}

.sidebar-contacts__title::after,.sidebar-cta__title::after,.sidebar-news__title::after,.sidebar-products__title::after,.sidebar-tags__title::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	height: 1px;
	width: 30px;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.sidebar-contacts__list {
	padding: 1.4rem 0;
}

.sidebar-contacts__item:not(:last-of-type) {
	margin-bottom: 1rem;
}

.sidebar-contacts__name {
	display: inline-block;
	margin-bottom: 5px;
	padding: 5px 10px;
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	border-radius: var(--border-radius-small);
}

.sidebar-contacts__value {
	display: block;
	font-size: 16px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-cta {
	display: flex;
	flex-direction: column;
	padding: 0 1.45em;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.sidebar-cta__title {
	position: relative;
	display: block;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	padding: 1rem 0;
	line-height: 1.45em;
	font-weight: 600;
}

.sidebar-cta__content {
	padding: 1rem 0 1.4rem;
}

.sidebar-cta__text {
	display: block;
	font-size: 16px;
	line-height: 1.45em;
	text-align: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-cta__button {
	display: block;
	margin-top: 1rem;
}

.sidebar-cta__button>div {
	display: flex;
	justify-content: center;
}

.sidebar-cta__button .element {
	width: 100%;
}

.sidebar-list {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.sidebar-list__item {
	padding: 1.4rem;
}

.sidebar-list__item:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.sidebar-list__header {
	display: flex;
	align-items: center;
	margin-bottom: var(--gap-small);
}

.sidebar-list__title {
	line-height: 1.45em;
	font-weight: 600;
}

.sidebar-list__text {
	display: block;
	font-size: 16px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	flex-shrink: 0;
}

.sidebar-list__icon .icon-set {
	width: 34px;
	height: 34px;
	fill: #566a81;
}

.sidebar-list__icon>img {
	display: block;
	max-width: 24px;
	height: auto;
}

.sidebar-news {
	padding: 0 1.4rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.sidebar-news__error {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	padding: 1.4rem 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 16px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-news__title {
	position: relative;
	display: block;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	padding: 1rem 0;
	line-height: 1.45em;
	font-weight: 600;
}

.sidebar-news__post {
	display: block;
	padding: 1rem 0;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.sidebar-news__post:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.sidebar-news__date,.sidebar-news__name {
	display: block;
	font-size: 16px;
	line-height: 1.45em;
}

.sidebar-news__date {
	margin-top: 5px;
	font-size: 15px;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-photos {
	padding: 0 1.4rem 1.4rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.sidebar-photos__error {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	box-sizing: border-box;
	text-align: center;
	font-size: 16px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-photos__title {
	display: block;
	padding: 1rem 0;
	line-height: 1.45em;
	font-weight: 600;
}

.sidebar-photos__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}

.sidebar-photos__item {
	position: relative;
}

.sidebar-photos__item>svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	transform: translate(-50%,-50%) scale(.5);
	transition: .2s ease;
	opacity: 0;
	pointer-events: none;
}

.sidebar-photos__item:hover>svg {
	opacity: 1;
	transform: translate(-50%,-50%) scale(1);
}

.sidebar-photos__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-small);
	transition: filter .2s ease;
}

.sidebar-photos__image:hover {
	filter: brightness(80%);
}

.sidebar-photos__link {
	display: inline-block;
	padding: 5px 10px;
	margin-top: 1.2rem;
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	border-radius: var(--border-radius-small);
}

.sidebar-products {
	padding: 0 1.4rem;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.sidebar-products__error {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	padding: 1.4rem 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 16px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-products__title {
	position: relative;
	display: block;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	padding: 1rem 0;
	line-height: 1.45em;
	font-weight: 600;
}

.sidebar-products__item {
	display: grid;
	grid-template-columns: 60px 1fr;
	grid-gap: 10px;
	align-items: start;
	padding: 1rem 0;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.sidebar-products__item:not(:last-of-type) {
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.sidebar-products__image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
}

.sidebar-products__image {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	border-radius: var(--border-radius-small);
	font-size: 0;
}

.sidebar-products__name {
	display: block;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-tags {
	padding: 0 1.45em;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.sidebar-tags__error {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	padding: 1.4rem 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 16px;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sidebar-tags__title {
	position: relative;
	display: block;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	padding: 1rem 0;
	line-height: 1.45em;
	font-weight: 600;
}

.sidebar-tags__list {
	padding: 1.2rem 0 1.4rem;
	margin-top: -8px;
	overflow: hidden;
}

.sidebar-tags__item {
	display: inline-block;
	padding: 6px 12px;
	margin-right: 8px;
	margin-top: 8px;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: var(--border-radius-small);
}

.sidebar {
	display: flex;
	flex-direction: column;
}

.sidebar__item {
	max-width: 450px;
	width: 100%;
	margin: 0 auto;
}

.sidebar__item:not(:last-of-type) {
	margin-bottom: 1rem;
}

.sidebar__frame {
	padding: 1.4rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

@media (min-width:992px) {
	.sidebar__item {
		max-width: 340px;
	}
}

.slide-one {
	position: relative;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.slide-one__image-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.slide-one__image,.slide-one__image-mobile {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-size: 0;
}

.slide-one__image-mobile {
	display: block;
}

.slide-one__image {
	display: none;
}

.slide-one__video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	pointer-events: none;
}

.slide-one__video {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

.slide-one__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 450px;
	padding: 1.6rem 1.6rem 2rem;
	box-sizing: border-box;
}

.slide-one__content.is-primary {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.slide-one__content.is-secondary {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.slide-one__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--dim);
}

.slide-one__name,.slide-one__text {
	max-width: 600px;
	margin-bottom: var(--gap);
}

.slide-one__name {
	font-size: var(--title-font-size);
	font-weight: 600;
	line-height: calc(1em + 12px);
}

.slide-one__text {
	display: block;
	font-size: .95em;
	line-height: 1.45em;
}

@media (min-width:768px) {
	.slide-one__content {
		padding: 2rem;
	}

	.slide-one__text {
		font-size: 1em;
	}

	.slide-one__image-mobile {
		display: none;
	}

	.slide-one__image {
		display: block;
	}
}

@media (min-width:992px) {
	.slide-one__content {
		padding: 4rem 5rem;
	}

	.slide-one__name.is-bold {
		font-weight: 700;
	}
}

@media (min-width:1200px) {
	.slide-one__content {
		padding: 4rem 6rem;
	}
}

.slide-two {
	position: relative;
	overflow: hidden;
}

.slide-two--gap {
	margin-bottom: var(--gap);
}

.slide-two__image-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.slide-two__image,.slide-two__image-mobile {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-size: 0;
}

.slide-two__image-mobile {
	display: block;
}

.slide-two__image {
	display: none;
}

.slide-two__image-additional {
	position: relative;
	display: none;
	max-width: 500px;
}

.slide-two__image-additional.is-bottom {
	align-self: flex-end;
}

.slide-two__image-additional.is-center {
	align-self: center;
}

.slide-two__image-additional img {
	display: block;
	max-width: 100%;
	height: auto;
}

.slide-two__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--dim);
}

.slide-two__wrapper {
	max-width: var(--frame-width);
	margin: 0 auto;
	box-sizing: border-box;
}

.slide-two__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: var(--frame-padding-mobile);
	padding-bottom: var(--frame-padding-mobile);
	box-sizing: border-box;
}

.slide-two__content.is-primary {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.slide-two__content.is-secondary,.text a {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.slide-two__name {
	max-width: 800px;
	margin-bottom: var(--gap);
	font-size: var(--headline-font-size);
	font-weight: 600;
	line-height: calc(1em + 12px);
}

.slide-two__text {
	display: block;
	max-width: 600px;
	margin-bottom: var(--gap);
	font-size: .95em;
	line-height: 1.45em;
}

@media (max-width:767px) {
	.slide-two__content {
		min-height: 600px;
	}
}

@media (min-width:768px) {
	.slide-two__content {
		min-height: 700px;
		padding-top: var(--frame-padding);
		padding-bottom: var(--frame-padding);
	}

	.slide-two__image-mobile {
		display: none;
	}

	.slide-two__image {
		display: block;
	}

	.slide-two__text {
		font-size: 1em;
	}
}

@media (min-width:992px) {
	.slide-two__content {
		min-height: var(--slide-two-height, 700px);
	}

	.slide-two__content.is-overlay {
		min-height: calc(var(--slide-two-height, 700px) + var(--header-height) + var(--top-bar-height));
	}

	.slide-two__name.is-bold {
		font-weight: 700;
	}
}

@media (min-width:1200px) {
	.slide-two__wrapper.is-grid {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-gap: 2rem;
	}

	.slide-two__image-additional {
		display: block;
	}
}

.social-one.is-secondary .social-one__item>svg {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.social-one--gap {
	margin-bottom: var(--gap);
}

.social-one__wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: -10px;
}

.social-one__item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	margin-top: 10px;
}

.social-one__item>svg {
	display: block;
	width: 30px;
	height: 30px;
}

.sticker-one {
	position: relative;
	display: inline-block;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.sticker-one--gap {
	margin-bottom: var(--gap);
}

.sticker-one__name-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px 8px;
	border-radius: 30px;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: var(--shadow-light);
}

.sticker-one__name-wrapper .icon-dots {
	display: block;
	width: 10px;
	height: 10px;
	transform: rotate(90deg);
}

.sticker-one__name {
	display: inline-block;
	margin-right: 3px;
	font-size: 14px;
	line-height: 1.2em;
}

.sticker-one__dropdown-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	top: 100%;
	padding-top: var(--gap-small);
}

.sticker-one__dropdown-wrapper.is-left {
	left: -5px;
}

.sticker-one__dropdown-wrapper.is-right {
	right: -5px;
}

.sticker-one__name-wrapper:hover>.sticker-one__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sticker-one__dropdown,.sticker-one__dropdown::before {
	box-sizing: border-box;
	background-color: hsl(var(--th),var(--ts),var(--tl));
}

.sticker-one__dropdown {
	position: relative;
	max-width: 400px;
	min-width: 200px;
	padding: .5rem;
	border-radius: var(--border-radius-normal);
	box-shadow: var(--shadow-modal);
	color: hsl(var(--bh),var(--bs),var(--bl));
	font-size: 14px;
	line-height: 1.45em;
}

.sticker-one__dropdown::before {
	content: '';
	position: absolute;
	display: block;
	height: 6px;
	width: 6px;
	transform: translateX(-50%) rotate(45deg);
}

.sticker-one__dropdown.is-left::before {
	top: -3px;
	left: 20px;
}

.sticker-one__dropdown.is-right::before {
	top: -3px;
	right: 20px;
}

.sticky-navigation {
	position: fixed;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 65px;
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: 0 -1px 5px rgba(0,0,0,.15);
	overflow: hidden;
	z-index: 140;
}

.sticky-navigation__icon,.sticky-navigation__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sticky-navigation__item {
	flex-shrink: 0;
	flex-direction: column;
	width: 25%;
	padding: 0 5px;
	box-sizing: border-box;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.sticky-navigation__icon {
	position: relative;
}

.sticky-navigation__icon>svg {
	display: block;
	width: 22px;
	height: 22px;
}

.sticky-navigation__icon .icon-compare,.sticky-navigation__icon>svg {
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.sticky-navigation__icon .icon-compare__tile-1 {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.sticky-navigation__counter {
	position: absolute;
	right: -10px;
	top: -6px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	box-sizing: border-box;
	background-color: hsl(var(--sh),var(--ss),var(--sl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

.sticky-navigation__counter.is-active {
	display: flex;
}

.sticky-navigation__name {
	display: block;
	font-size: 14px;
}

@media (min-width:992px) {
	.sticky-navigation {
		display: none;
	}
}

.stocks {
	display: inline-block;
	white-space: nowrap;
}

.stocks__item.is-hidden,.swatch__select input,.wa-captcha strong {
	display: none;
}

.stocks.is-small .stocks__wrapper {
	grid-gap: 6px;
}

.stocks.is-small .stocks__text {
	font-size: 15px;
}

.stocks.is-small .stocks__icon {
	padding: 4px;
}

.stocks.is-small .stocks__icon svg {
	width: 8px;
	height: 8px;
}

.stocks.is-medium .stocks__wrapper {
	grid-gap: 10px;
}

.stocks.is-medium .stocks__text {
	font-size: 1em;
}

.stocks.is-medium .stocks__icon {
	padding: 5px;
}

.stocks.is-medium .stocks__icon svg {
	width: 10px;
	height: 10px;
}

.stocks__wrapper {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	align-items: center;
}

.stocks__wrapper.is-preorder .stocks__icon {
	background-color: #fa0;
}

.stocks__wrapper.is-preorder .stocks__icon svg {
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.stocks__wrapper.is-instock .stocks__icon {
	background-color: #37a834;
}

.stocks__wrapper.is-instock .stocks__icon svg {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.stocks__wrapper.is-few .stocks__icon {
	background-color: #fa0;
}

.stocks__wrapper.is-few .stocks__icon svg {
	fill: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.stocks__wrapper.is-outofstock .stocks__icon {
	background-color: #fd6363;
}

.stocks__wrapper.is-outofstock .stocks__icon svg {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.stocks__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.stocks__text,.wa-order-dialog .wa-dialog-body .wa-section-header a {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.stocks__storage-info {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.stocks__storage-info .icon-dots {
	display: block;
	margin-left: 8px;
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 30%));
}

.stocks__storage-info:hover .stocks__dropdown-wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.stocks__dropdown-wrapper {
	position: absolute;
	transition: transform .2s ease,opacity .3s ease,visibility 0s ease 0s;
	transition-delay: .1s;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	z-index: 155;
	top: 100%;
	right: -1rem;
	padding-top: var(--gap-small);
}

.stocks__dropdown,.stocks__dropdown::before {
	box-sizing: border-box;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.stocks__dropdown {
	position: relative;
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	width: 240px;
	padding: 1rem;
	border-radius: var(--border-radius-normal);
}

.stocks__dropdown::before {
	content: '';
	position: absolute;
	display: block;
	height: 10px;
	width: 10px;
	transform: translateX(-50%) rotate(45deg);
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	top: -5px;
	right: 1rem;
}

.stocks__dropdown>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.stocks__storage-name {
	display: block;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 50%));
	white-space: normal;
}

.subcategories--gap {
	margin-bottom: var(--gap);
}

.subcategories__grid {
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1*var(--gap-small));
	margin-right: calc(-.5*var(--gap-small));
	margin-left: calc(-.5*var(--gap-small));
}

.subcategories__item-wrapper {
	flex: 0 0 auto;
	padding-right: calc(var(--gap-small)*.5);
	padding-left: calc(var(--gap-small)*.5);
	margin-top: var(--gap-small);
	box-sizing: border-box;
}

.subcategories__item {
	display: flex;
	padding: .4rem .8rem;
	margin: 1px;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border: 1px solid transparent;
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-light);
	transition: .2s ease;
}

.subcategories__item:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	box-shadow: 0 0 1px 1px hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.subcategories__item-content {
	display: flex;
	align-items: center;
	min-height: 42px;
}

.subcategories__image {
	flex-shrink: 0;
	width: 42px;
	margin-right: var(--gap-small);
}

.subcategories__image img {
	border-radius: var(--border-radius-small);
	overflow: hidden;
	display: block;
	width: 100%;
	height: auto;
}

.subcategories__image svg {
	display: block;
	width: 100%;
	height: auto;
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.subcategories__name {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: .95em;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-all;
	overflow: hidden;
}

.subcategories__count {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 17px;
	min-width: 17px;
	padding: 0 5px;
	margin-left: var(--gap-small);
	box-sizing: border-box;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 16%));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: 12px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 700;
	word-break: keep-all;
}

@media (max-width:479px) {
	.subcategories__item-wrapper {
		width: 100%;
	}
}

@media (min-width:480px) {
	.subcategories__item {
		max-width: 340px;
	}
}

.swatch--gap {
	margin-bottom: var(--gap);
}

.swatch__inline-wrapper:not(:last-of-type) {
	margin-bottom: var(--gap);
}

.swatch__inline-wrapper.is-loading .swatch__color,.swatch__inline-wrapper.is-loading .swatch__inline-item,.swatch__select-wrapper.is-loading .swatch__select {
	opacity: .7;
}

.swatch__select-wrapper:not(:last-of-type) {
	margin-bottom: var(--gap-small);
}

.swatch__title {
	display: block;
	margin-bottom: 5px;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 40%));
}

.swatch__current-value {
	font-weight: 600;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.swatch__inline-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: -6px;
}

.swatch__inline-list>* {
	margin-top: 6px;
	margin-right: 6px;
}

.swatch__color,.swatch__inline-item {
	display: flex;
	box-sizing: border-box;
	cursor: pointer;
}

.swatch__inline-item {
	align-items: baseline;
	padding: 8px 16px 5px;
	border-width: 1px;
	border-style: solid;
	border-radius: var(--border-radius-small);
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	font-size: 15px;
	line-height: 1.45em;
	transition: .2s ease;
	user-select: none;
}

.swatch__inline-item .core-check {
	flex-shrink: 0;
	display: none;
	width: 12px;
	height: 12px;
	margin-right: 8px;
	fill: hsl(var(--ph),var(--ps),var(--pl));
	animation: scale-in .2s linear forwards;
}

.swatch__inline-item:hover {
	border-color: hsla(var(--ph),var(--ps),var(--pl),.3);
	box-shadow: 0 0 0 1px hsla(var(--ph),var(--ps),var(--pl),.3);
}

.swatch__inline-item.is-selected {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 0 1px hsl(var(--ph),var(--ps),var(--pl));
}

.swatch__inline-item.is-selected .core-check {
	display: block;
}

.swatch__color {
	align-items: center;
	justify-content: center;
	min-height: 40px;
	min-width: 40px;
	border-radius: 50%;
	border: 4px solid hsl(var(--bh),var(--bs),var(--bl));
	box-shadow: 0 0 0 1px hsl(var(--ah),var(--as),calc(var(--al) - 4%)),inset 0 0 4px rgba(0,0,0,.1);
}

.swatch__color.is-selected .core-check {
	display: block;
	animation: scale-in .2s linear forwards;
}

.swatch__color .core-check {
	display: none;
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.swatch__select,.swatch__select label {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.swatch__select {
	display: inline-block;
	width: 100%;
	max-width: 400px;
	min-height: 2rem;
	max-height: 2rem;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	white-space: nowrap;
	font-size: .95em;
	outline: 0;
	transition: .25s ease;
}

.swatch__select .icon-more {
	position: absolute;
	right: .8rem;
	top: .8rem;
	display: block;
	width: 8px;
	height: 8px;
	fill: #a8a8a8;
	transition: .25s ease;
}

.swatch__select label {
	display: block;
	height: 2rem;
	padding-left: 1rem;
	padding-right: 3rem;
	box-sizing: border-box;
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	line-height: 2rem;
	transition: background-color .25s ease;
	text-overflow: ellipsis;
	user-select: none;
}

.swatch__select label:nth-child(2) {
	margin-top: 2rem;
	border-top: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.swatch__select input:checked+label {
	position: absolute;
	top: 0;
	display: block;
	width: 100%;
	border-top: none;
}

.swatch__select input:checked+label:nth-child(2) {
	margin-top: 0;
	position: relative;
}

.swatch__select.is-active {
	max-height: 15rem;
	padding: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background: hsl(var(--bh),var(--bs),var(--bl));
	overflow-y: auto;
}

.swatch__select.is-active::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.swatch__select.is-active label {
	border-top: 1px solid hsla(var(--ph),var(--ps),var(--pl),.2);
}

.swatch__select.is-active .icon-more {
	transform: rotate(-180deg);
	transform-origin: center;
}

.swatch__radio-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.swatch__radio-wrapper>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.swatch__radio-item.is-loading {
	opacity: .7;
}

.tabs-one {
	min-width: 0;
}

.tabs-one--gap {
	margin-bottom: var(--gap);
}

.tabs-one__button,.tabs-one__tab {
	align-items: center;
	user-select: none;
}

.tabs-one__tab {
	display: flex;
	width: auto;
	min-height: 36px;
	padding: .4rem 1rem;
	margin: 1px;
	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: var(--border-radius-small);
	color: hsl(var(--th),var(--ts),var(--tl));
	font-size: .95em;
	line-height: 1.45em;
	text-decoration: none;
	transition: .2s ease;
	outline: 0;
	cursor: pointer;
}

.tabs-one__tab.is-primary {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.tabs-one__tab.is-secondary,.tabs-one__tab.is-semitone {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.tabs-one__tab.is-active {
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.tabs-one__tab.is-active:hover {
	border-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 20%));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),calc(var(--pl) + 20%));
}

.tabs-one__tab:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
	box-shadow: 0 0 1px 1px hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.tabs-one__button {
	position: absolute;
	top: 0;
	display: none;
	height: 100%;
	width: 26px;
	z-index: 1;
}

.tabs-one__button.is-primary {
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.tabs-one__button.is-secondary {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.tabs-one__button.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.tabs-one__button .icon-arrow {
	width: 12px;
	height: 12px;
}

.tabs-one__button.is-next {
	right: 0;
	justify-content: flex-end;
}

.tabs-one__button.is-next .icon-arrow {
	transform: rotate(-90deg);
}

.tabs-one__button.is-prev {
	left: 0;
	justify-content: flex-start;
}

.tabs-one__button.is-prev .icon-arrow {
	transform: rotate(90deg);
}

.tabs-one__button.is-active {
	display: flex;
}

@media (min-width:768px) {
	.tabs-one__tab {
		min-height: 40px;
	}
}

.teaser-one {
	position: relative;
	display: flex;
	flex-direction: column;
	max-width: 550px;
	box-sizing: border-box;
	border-radius: var(--border-radius-normal);
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.teaser-one--gap {
	margin-bottom: var(--gap);
}

.teaser-one__image-container {
	position: relative;
	display: flex;
	border-radius: var(--border-radius-normal);
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border: 7px solid hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	box-shadow: 0 1px 5px hsla(var(--th),var(--ts),var(--tl),.1);
	isolation: isolate;
	cursor: pointer;
	overflow: hidden;
}

.teaser-one__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	object-fit: cover;
}

.teaser-one__button {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	padding: 0;
	border: 0;
	font: inherit;
	background-color: transparent;
	transform: translate(-50%,-50%);
	cursor: pointer;
	z-index: 1;
}

.teaser-one__button .icon-video {
	display: block;
	transition: all .125s cubic-bezier(.25,.46,.45,.94);
	width: 54px;
}

.teaser-one__button .icon-video__shape {
	fill: hsl(var(--th),var(--ts),var(--tl));
	fill-opacity: .7;
	transition: all .125s cubic-bezier(.25,.46,.45,.94);
}

.teaser-one__button .icon-video__icon {
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.teaser-one__button:hover .icon-video__shape {
	fill: red;
	fill-opacity: 1;
}

.teaser-one__credentials {
	display: flex;
	margin-top: 1rem;
}

.teaser-one__avatar {
	flex-shrink: 0;
	display: block;
	height: 40px;
	width: 40px;
	margin-right: 1rem;
	overflow: hidden;
	border-radius: 50%;
}

.teaser-one__avatar>img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.teaser-one__wrapper>:not(:last-child) {
	margin-bottom: 5px;
}

.teaser-one__name {
	display: block;
	font-size: var(--name-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.teaser-one__text {
	display: block;
	font-size: .95em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	text-decoration: none;
}

@media (min-width:768px) {
	.teaser-one__avatar {
		height: 45px;
		width: 45px;
	}
}

.text {
	display: block;
}

.text--small {
	font-size: .9em;
	line-height: 1.45em;
}

.text--large,.text--medium {
	font-size: .95em;
	line-height: 1.45em;
}

.text--large {
	font-size: 1.05em;
}

.text--gap {
	margin-bottom: var(--gap);
}

.text--center,.text--left {
	margin-right: auto;
	text-align: left;
}

.text--center {
	margin-left: auto;
	text-align: center;
}

.text--right {
	margin-left: auto;
	text-align: right;
}

@media (min-width:768px) {
	.text--medium {
		font-size: 1em;
	}

	.text--large {
		font-size: 1.1em;
	}

	.text--2,.text--3 {
		column-count: 2;
	}
}

@media (min-width:992px) {
	.text--3 {
		column-count: 3;
	}
}

.tile-one {
	position: relative;
	display: block;
	max-width: 500px;
	border-radius: var(--border-radius-normal);
	text-decoration: none;
	overflow: hidden;
}

.tile-one.is-primary {
	color: hsl(var(--bh),var(--bs),var(--bl));
}

.tile-one.is-secondary {
	color: hsl(var(--th),var(--ts),var(--tl));
}

.tile-one--gap {
	margin-bottom: var(--gap);
}

.tile-one__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--dim-intense);
}

.tile-one__image-wrapper {
	position: relative;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
	border-radius: var(--border-radius-normal);
	overflow: hidden;
	isolation: isolate;
}

.tile-one__video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	pointer-events: none;
}

.tile-one__video {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

.tile-one__image-container {
	display: flex;
	background-color: hsl(var(--ah),var(--as),var(--al));
	isolation: isolate;
}

.tile-one__image {
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
	border-radius: var(--border-radius-normal);
	object-fit: cover;
}

.tile-one__content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	z-index: 1;
}

.tile-one__content.has-layer {
	transition: opacity .2s ease;
}

.tile-one:hover .tile-one__content.has-layer {
	opacity: 0;
}

.tile-one__label {
	display: inline-block;
	margin-bottom: 5px;
	letter-spacing: .03em;
	font-size: .95em;
	line-height: 1.45em;
	opacity: .85;
}

.tile-one__title {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top: auto;
	font-size: var(--subtitle-font-size);
	font-weight: 600;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.tile-one__text {
	margin-top: var(--gap-small);
	line-height: 1.45em;
	font-size: .95em;
	opacity: .85;
}

.tile-one__layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1rem;
	background-color: var(--dim);
	color: hsl(var(--bh),var(--bs),var(--bl));
	visibility: hidden;
	opacity: 0;
	transition: .2s ease;
}

.tile-one:hover .tile-one__layer {
	visibility: visible;
	opacity: 1;
}

@media (min-width:768px) {
	.tile-one__content,.tile-one__layer {
		padding: 1.6rem;
	}
}

.title {
	display: block;
	max-width: 800px;
	line-height: calc(1em + 12px);
	font-weight: 600;
}

.title--extra {
	font-size: 42px;
}

.title--big {
	font-size: 34px;
}

.title--medium {
	font-size: 26px;
}

.title--small {
	font-size: 22px;
}

.title--tiny {
	font-size: 18px;
}

.title--gap {
	margin-bottom: var(--gap);
}

.title--center,.title--left {
	margin-right: auto;
	text-align: left;
}

.title--center {
	margin-left: auto;
	text-align: center;
}

.title--right {
	margin-left: auto;
	text-align: right;
}

.title .is-highlighted {
	position: relative;
	display: inline-block;
}

.title .is-highlighted>svg {
	position: absolute;
	bottom: -.125em;
	left: 0;
	width: 100%;
	height: auto;
	max-height: .475em;
	transition-delay: inherit;
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

@media (min-width:768px) {
	.title--extra {
		font-size: 44px;
	}

	.title--big {
		font-size: 36px;
	}

	.title--medium {
		font-size: 28px;
	}

	.title--small {
		font-size: 24px;
	}

	.title--tiny {
		font-size: 20px;
	}
}

@media (min-width:992px) {
	.title--extra {
		font-size: 46px;
	}

	.title--big {
		font-size: 38px;
	}

	.title--medium {
		font-size: 30px;
	}

	.title--small {
		font-size: 26px;
	}

	.title--tiny {
		font-size: 22px;
	}

	.title--bold {
		font-weight: 700;
	}
}

@media (min-width:1300px) {
	.title--extra {
		font-size: 48px;
	}

	.title--big {
		font-size: 40px;
	}

	.title--medium {
		font-size: 32px;
	}

	.title--small {
		font-size: 28px;
	}

	.title--tiny {
		font-size: 24px;
	}
}

.tooltip-one,.tooltip-one::before {
	position: absolute;
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.tooltip-one {
	color: hsl(var(--th),var(--ts),var(--tl));
	box-shadow: var(--shadow-modal);
	display: none;
	padding: .5rem 1rem;
	border-radius: var(--border-radius-small);
	white-space: nowrap;
	font-size: .95em;
	z-index: 155;
}

.tooltip-one::before {
	content: '';
	display: block;
	height: 10px;
	width: 10px;
	box-sizing: border-box;
	transform: translateX(-50%) rotate(45deg);
	border-top: 1px solid #f1efef;
	border-left: 1px solid #f1efef;
	border-color: #f1efef;
	border-style: solid;
}

.tooltip-one--gap {
	margin-bottom: var(--gap);
}

.tooltip-one.is-bottom-left {
	top: 100%;
	right: -1rem;
	margin-top: 15px;
}

.tooltip-one.is-bottom-left::before {
	top: -5px;
	right: 1rem;
	border-width: 1px 0 0 1px;
}

.tooltip-one.is-bottom {
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 15px;
}

.tooltip-one.is-bottom::before {
	top: -5px;
	left: 50%;
	border-width: 1px 0 0 1px;
}

.tooltip-one.is-bottom-right {
	top: 100%;
	left: -1rem;
	margin-top: 15px;
}

.tooltip-one.is-bottom-right::before {
	top: -5px;
	left: 1.5rem;
	border-width: 1px 0 0 1px;
}

.tooltip-one.is-top-left {
	bottom: 100%;
	right: -1rem;
	margin-bottom: 15px;
}

.tooltip-one.is-top-left::before {
	bottom: -5px;
	right: 1rem;
	border-width: 0 1px 1px 0;
}

.tooltip-one.is-top {
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 15px;
}

.tooltip-one.is-top::before {
	bottom: -5px;
	left: 50%;
	border-width: 0 1px 1px 0;
}

.tooltip-one.is-top-right {
	bottom: 100%;
	left: -1rem;
	margin-bottom: 15px;
}

.tooltip-one.is-top-right::before {
	bottom: -5px;
	left: 1.5rem;
	border-width: 0 1px 1px 0;
}

.tooltip-one.is-left {
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	margin-right: 15px;
}

.tooltip-one.is-left::before {
	top: 50%;
	right: -5px;
	transform: translateY(-50%) rotate(45deg);
	border-width: 1px 1px 0 0;
}

.tooltip-one.is-right {
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 15px;
}

.tooltip-one.is-right::before {
	top: 50%;
	left: -5px;
	transform: translateY(-50%) rotate(45deg);
	border-width: 0 0 1px 1px;
}

.tooltip-one__trigger,.top-bar {
	position: relative;
	align-items: center;
}

.tooltip-one__trigger {
	display: inline-flex;
	pointer-events: auto;
}

.tooltip-one__trigger:hover .tooltip-one {
	display: block;
}

.top-bar {
	display: flex;
	justify-content: center;
	min-height: 45px;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	text-decoration: none;
	overflow: hidden;
}

.top-bar:not(.is-marquee) {
	display: none;
}

.top-bar__item {
	display: flex;
	align-items: center;
	padding: 10px 1rem;
	font-size: .95em;
}

.top-bar__item>svg {
	margin-right: 1rem;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	flex-shrink: 0;
}

.top-bar__close {
	position: absolute;
	top: 50%;
	right: .5rem;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: 0 0;
	border: unset;
	cursor: pointer;
}

.top-bar__close>svg {
	width: 11px;
	height: 11px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
	opacity: .8;
	transition: .3s ease;
}

.top-bar__close:hover>svg {
	opacity: 1;
}

@media (min-width:768px) {
	.top-bar:not(.is-marquee) {
		display: flex;
	}

	.top-bar__close {
		right: 1.5rem;
	}
}

.tracker-one {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.tracker-one.is-small .tracker-one__value {
	font-size: .9em;
}

.tracker-one.is-small>svg {
	width: 19px;
	height: 19px;
}

.tracker-one.is-medium .tracker-one__value {
	font-size: .95em;
}

.tracker-one.is-medium>svg {
	width: 22px;
	height: 22px;
}

.tracker-one.is-large .tracker-one__value {
	font-size: 1em;
}

.tracker-one.is-large>svg {
	width: 26px;
	height: 26px;
}

.tracker-one--gap {
	margin-bottom: var(--gap);
}

.tracker-one__value {
	line-height: 1.4em;
}

.tracker-one>svg {
	flex-shrink: 0;
	display: block;
	margin-right: 8px;
	fill: currentColor;
}

.video-one {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 30px;
	background-color: hsl(var(--ah),var(--as),var(--al));
	color: hsl(var(--th),var(--ts),var(--tl));
	cursor: pointer;
}

.video-one--gap {
	margin-bottom: var(--gap);
}

.video-one__button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
}

.video-one__button .icon-play {
	width: 12px;
	height: 12px;
	margin-right: -4px;
	fill: hsl(var(--bh),var(--bs),var(--bl));
}

.video-one__button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	border-radius: 50%;
	border: 1px solid hsl(var(--ph),var(--ps),var(--pl));
	opacity: 0;
	transform: scale(1);
	animation: pulse 1.5s linear 0s infinite;
	transform-origin: center;
}

.video-one__content {
	display: flex;
	flex-direction: column;
	padding-left: 15px;
	padding-right: 15px;
	font-size: .9em;
}

.video-one__text {
	font-weight: 600;
}

.video-one__description {
	opacity: .7;
}

.video-one__description.is-error {
	color: #fd6363;
	opacity: 1;
}

.video-two {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.video-two--gap {
	margin-bottom: var(--gap);
}

.video-two .icon-play-alter {
	display: block;
}

.video-two .icon-play-alter__tile-0 {
	fill: hsla(var(--ph),var(--ps),var(--pl),.15);
}

.video-two .icon-play-alter__tile-1 {
	fill: hsl(var(--ph),var(--ps),var(--pl));
}

.video-two__content {
	display: flex;
	flex-direction: column;
	margin-left: 1rem;
	font-size: .9em;
}

.video-two__text {
	font-weight: 600;
}

.video-two__description {
	opacity: .7;
}

.video-two__description.is-error {
	color: #fd6363;
	opacity: 1;
}

.wa-captcha p:first-of-type {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 10px;
	margin-bottom: 5px;
}

.wa-captcha p:first-of-type .wa-captcha-input {
	width: 150px;
	min-width: 150px!important;
}

.wa-captcha-input {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	margin-bottom: 10px;
}

.wa-captcha-input:hover:not(:disabled):not(:focus),.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]):hover:not(:disabled):not(:focus),.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]):hover:not(:disabled):not(:focus),.wa-forms .wa-field .wa-value select:hover:not(:disabled):not(:focus),.wa-forms .wa-field .wa-value textarea:hover:not(:disabled):not(:focus),.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=email]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=password]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=text]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=email]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=password]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=text]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=email]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=password]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=text]:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select:hover:not(:disabled):not(:focus),.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea:hover:not(:disabled):not(:focus) {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.wa-captcha-input:focus,.wa-captcha-input:hover:focus,.wa-forms .wa-field .wa-value select:hover:focus,.wa-forms .wa-field .wa-value textarea:hover:focus,.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select:hover:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=email]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=password]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=text]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select:hover:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea:hover:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=email]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=password]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=text]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select:hover:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea:hover:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=email]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=password]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=text]:hover:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select:hover:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.wa-captcha-input:focus {
	outline: 0;
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-captcha-input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-captcha-input.error,.wa-captcha-input.error:focus,.wa-captcha-input.error:hover,.wa-captcha-input.is-error,.wa-captcha-input.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.wa-captcha-input::-webkit-input-placeholder,.wa-forms .wa-field .wa-value select::-webkit-input-placeholder,.wa-forms .wa-field .wa-value textarea::-webkit-input-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.wa-captcha-input:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.wa-captcha-img {
	display: block;
	height: 42px;
	margin: 1px 0;
}

.wa-captcha-refresh {
	font-size: .85em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.wa-captcha-refresh:focus,.wa-order-dialog .wa-dialog-body .wa-section-header a:focus {
	outline: 0;
}

@media (min-width:768px) {
	.wa-captcha-section {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-column-gap: 15px;
		align-items: start;
	}

	.wa-captcha-input {
		min-height: 46px;
		margin-bottom: unset;
	}

	.wa-captcha-img {
		height: 46px;
	}
}

.wa-order-dialog .wa-dialog-body {
	border-radius: var(--border-radius-normal)!important;
	font-size: initial;
	overflow: hidden;
}

.wa-order-dialog .wa-dialog-body .wa-dialog-header {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.wa-order-dialog .wa-dialog-body .wa-dialog-header .wa-header {
	font-size: var(--subtitle-font-size)!important;
	font-weight: 600!important;
}

.wa-order-dialog .wa-dialog-body .wa-dialog-footer {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: flex-start;
	grid-gap: var(--gap-small);
}

.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button {
	margin-right: unset!important;
}

.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=submit],.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=submit],.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=submit],.wa-order-dialog .wa-dialog-body input.wa-button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	min-height: 36px;
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	line-height: 1.45em;
	font-family: inherit;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	transition: background-color .1s ease;
	overflow: hidden;
	cursor: pointer;
	color: hsl(var(--bh),var(--bs),var(--bl));
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	border: unset;
}

.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child:active,.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child:focus,.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child:hover,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=submit]:active,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=submit]:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=submit]:hover,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=submit]:active,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=submit]:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=submit]:hover,.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button:active,.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button:focus,.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button:hover,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=submit]:active,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=submit]:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=submit]:hover,.wa-order-dialog .wa-dialog-body input.wa-button:active,.wa-order-dialog .wa-dialog-body input.wa-button:focus,.wa-order-dialog .wa-dialog-body input.wa-button:hover {
	outline: 0;
}

.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child:hover,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=submit]:hover,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=submit]:hover,.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button:hover,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=submit]:hover,.wa-order-dialog .wa-dialog-body input.wa-button:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 6%));
}

.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child) {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	min-height: 36px;
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	line-height: 1.45em;
	font-family: inherit;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	transition: background-color .1s ease;
	overflow: hidden;
	cursor: pointer;
	color: hsl(var(--th),var(--ts),var(--tl));
	background-color: transparent;
	border: 2px solid hsl(var(--th),var(--ts),var(--tl));
}

.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child):active,.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child):focus,.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child):hover {
	outline: 0;
}

.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child):hover {
	background-color: transparent;
}

.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-captcha-section .wa-captcha-code,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-captcha-section .wa-captcha-code,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-captcha-section .wa-captcha-code {
	margin-top: unset;
}

.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-field-terms-accepted a,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-forgotpassword-url,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-url a,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-signup-url a,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-field-terms-accepted a,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-forgotpassword-url,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-url a,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-signup-url a,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-field-terms-accepted a,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-forgotpassword-url,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-url a,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-signup-url a {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-field-terms-accepted a:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-forgotpassword-url:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-url a:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-signup-url a:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-field-terms-accepted a:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-forgotpassword-url:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-url a:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-signup-url a:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-field-terms-accepted a:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-forgotpassword-url:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-url a:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-signup-url a:focus {
	outline: 0;
}

.wa-order-dialog .wa-dialog-body .wa-forgotpassword-button,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-forgotpassword-url,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-forgotpassword-url,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-forgotpassword-url {
	margin-top: var(--gap-small);
}

.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=email],.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=password],.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=text],.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=email],.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=password],.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=text],.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=email],.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=password],.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=text],.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	min-width: 90px!important;
	width: 100%;
	padding: .2rem .8rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=email]:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=password]:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=text]:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select:focus,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=email]:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=password]:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=text]:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select:focus,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=email]:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=password]:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=text]:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select:focus,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=email]:disabled,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=password]:disabled,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=text]:disabled,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select:disabled,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea:disabled,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=email]:disabled,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=password]:disabled,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=text]:disabled,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select:disabled,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea:disabled,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=email]:disabled,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=password]:disabled,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=text]:disabled,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select:disabled,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select,.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select {
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 399 399' xmlns='http://www.w3.org/2000/svg' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23D1CDC6;%7D%3C/style%3E%3Cpath class='st0' d='M199,251.9c-4.7,0-9.4-1.8-13-5.3l-68.8-67.7c-7.3-7.2-7.4-18.9-0.2-26.2c7.2-7.3,18.9-7.4,26.2-0.2l55.8,54.9 l55.8-54.9c7.3-7.2,19-7.1,26.2,0.2c7.2,7.3,7.1,19-0.2,26.2L212,246.5C208.4,250.1,203.7,251.9,199,251.9z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat,repeat;
	background-position: right .6em top 50%;
	background-size: 1.6em auto,100%;
}

.wa-order-dialog .wa-dialog-body .wa-info-messages {
	line-height: 1.45em;
}

@media (min-width:768px) {
	.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button,.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type=submit],.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type=submit],.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button,.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type=submit],.wa-order-dialog .wa-dialog-body input.wa-button {
		min-height: 40px;
	}
}

.wa-forms--sfpro .wa-name,.wa-order.is-sfpro .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name,.wa-order.is-sfpro .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-contact-name,.wa-order.is-sfpro .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-header {
	font-family: 'sfpro',sans-serif;
}

.wa-forms--open-sans .wa-name,.wa-order.is-open-sans .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name,.wa-order.is-open-sans .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-contact-name,.wa-order.is-open-sans .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-header {
	font-family: 'open-sans',sans-serif;
}

.wa-forms--gilroy .wa-name,.wa-order.is-gilroy .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name,.wa-order.is-gilroy .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-contact-name,.wa-order.is-gilroy .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-header {
	font-family: 'gilroy',sans-serif;
}

.wa-forms--raleway .wa-name,.wa-order.is-raleway .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name,.wa-order.is-raleway .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-contact-name,.wa-order.is-raleway .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-header {
	font-family: 'raleway',sans-serif;
}

.wa-forms--mulish .wa-name,.wa-order.is-mulish .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name,.wa-order.is-mulish .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-contact-name,.wa-order.is-mulish .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-header {
	font-family: 'mulish',sans-serif;
}

.wa-forms .wa-field .field:not(:last-of-type),.wa-forms .wa-field:not(:last-of-type) {
	margin-bottom: 15px;
}

.wa-forms .wa-field .field {
	display: block;
}

.wa-forms .wa-field .field.wa-required .wa-forms span::after,.wa-forms .wa-field.wa-required .wa-name::after {
	content: ' *';
	color: #fd6363;
}

.wa-forms .wa-field .field span {
	line-height: 1.45em;
}

.wa-forms .wa-field .field span,.wa-forms .wa-field .hint,.wa-forms .wa-field .wa-name {
	display: block;
	margin-bottom: 5px;
	font-size: .95em;
}

.wa-forms .wa-field .wa-name {
	display: inline-block;
	font-weight: 600;
}

.wa-forms--grid .wa-field {
	display: grid;
	max-width: 700px;
}

.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]),.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]) {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]):hover:focus,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]):hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]):focus,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]):focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]):disabled,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]):disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]).error,.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]).error:focus,.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]).error:hover,.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]).is-error,.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]).wa-error,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]).error,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]).error:focus,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]).error:hover,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]).is-error,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]).wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha])::-webkit-input-placeholder,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha])::-webkit-input-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]):-moz-placeholder,.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]):-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.wa-forms .wa-field .wa-value input[type=password][name='customer[birthday][year]'],.wa-forms .wa-field .wa-value input[type=password][name='data[birthday][year]'],.wa-forms .wa-field .wa-value input[type=password][name='profile[birthday][year]'],.wa-forms .wa-field .wa-value input[type=text][name='customer[birthday][year]'],.wa-forms .wa-field .wa-value input[type=text][name='data[birthday][year]'],.wa-forms .wa-field .wa-value input[type=text][name='profile[birthday][year]'] {
	width: 33.33%!important;
}

.wa-forms .wa-field .wa-value select {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 399 399' xmlns='http://www.w3.org/2000/svg' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23D1CDC6;%7D%3C/style%3E%3Cpath class='st0' d='M199,251.9c-4.7,0-9.4-1.8-13-5.3l-68.8-67.7c-7.3-7.2-7.4-18.9-0.2-26.2c7.2-7.3,18.9-7.4,26.2-0.2l55.8,54.9 l55.8-54.9c7.3-7.2,19-7.1,26.2,0.2c7.2,7.3,7.1,19-0.2,26.2L212,246.5C208.4,250.1,203.7,251.9,199,251.9z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat,repeat;
	background-position: right .6em top 50%;
	background-size: 1.6em auto,100%;
}

.wa-forms .wa-field .wa-value select:focus,.wa-forms .wa-field .wa-value textarea:focus,.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-forms .wa-field .wa-value select:disabled,.wa-forms .wa-field .wa-value textarea:disabled,.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-forms .wa-field .wa-value select.error,.wa-forms .wa-field .wa-value select.error:focus,.wa-forms .wa-field .wa-value select.error:hover,.wa-forms .wa-field .wa-value select.is-error,.wa-forms .wa-field .wa-value select.wa-error,.wa-forms .wa-field .wa-value textarea.error,.wa-forms .wa-field .wa-value textarea.error:focus,.wa-forms .wa-field .wa-value textarea.error:hover,.wa-forms .wa-field .wa-value textarea.is-error,.wa-forms .wa-field .wa-value textarea.wa-error {
	border-color: #fd6363;
	box-shadow: 0 0 1px 1px #fd6363;
}

.wa-forms .wa-field .wa-value select:-moz-placeholder,.wa-forms .wa-field .wa-value textarea:-moz-placeholder {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
}

.wa-forms .wa-field .wa-value select::-ms-expand,.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select::-ms-expand,.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select::-ms-expand {
	display: none;
}

.wa-forms .wa-field .wa-value select[name='customer[birthday][day]'],.wa-forms .wa-field .wa-value select[name='customer[birthday][month]'],.wa-forms .wa-field .wa-value select[name='data[birthday][day]'],.wa-forms .wa-field .wa-value select[name='data[birthday][month]'],.wa-forms .wa-field .wa-value select[name='profile[birthday][day]'],.wa-forms .wa-field .wa-value select[name='profile[birthday][month]'] {
	margin-bottom: 15px;
}

.wa-forms .wa-field .wa-value textarea {
	display: inline-block;
	min-height: 42px;
	min-width: 90px!important;
	width: 100%;
	padding: .6rem 1rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),var(--tl));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.wa-forms .wa-field .wa-value a {
	text-decoration: underline;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
	font-size: .95em;
}

.wa-forms .wa-field .wa-value .errormsg,.wa-forms .wa-field .wa-value .wa-error-msg,.wa-forms .wa-uncaught-errors .wa-error-msg {
	display: block;
	margin-top: 5px;
	font-size: .85em;
	line-height: 1.45em;
	font-style: normal;
	color: #fd6363;
}

.wa-forms .wa-field .wa-value .radio:not(:last-of-type) {
	margin-right: var(--gap-small);
}

.wa-forms .wa-field-address.is-hidden,.wa-forms .wa-field-password.is-hidden {
	display: none;
}

.wa-forms .wa-field-phone .wa-value>:not(:last-child) {
	margin-bottom: 15px;
}

.wa-forms .wa-info-messages {
	margin-bottom: var(--gap-small);
	text-align: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	font-size: .95em;
	line-height: 1.45em;
}

.wa-forms .wa-app-url-link,.wa-forms .wa-buttons-wrapper input[type=submit],.wa-forms .wa-done-signup-button,.wa-forms .wa-forgotpassword-button input[type=submit],.wa-forms .wa-request-onetime-password-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	padding: 8px 30px;
	box-sizing: border-box;
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	color: hsl(var(--bh),var(--bs),var(--bl));
	border: unset;
	border-radius: var(--border-radius-small);
	text-decoration: none;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.45em;
	user-select: none;
	overflow: hidden;
	cursor: pointer;
}

.wa-forms .wa-app-url-link:hover,.wa-forms .wa-buttons-wrapper input[type=submit]:hover,.wa-forms .wa-done-signup-button:hover,.wa-forms .wa-forgotpassword-button input[type=submit]:hover,.wa-forms .wa-request-onetime-password-button:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 6%));
	transition: background-color .25s ease;
}

.wa-forms .wa-done-signup-buttons-wrapper {
	margin-top: 20px;
}

.wa-forms .wa-buttons-wrapper,.wa-forms .wa-request-onetime-password-button-wrapper {
	margin-bottom: 15px;
	margin-top: 15px;
}

.wa-forms .wa-onetime-password-input-message {
	margin-top: 5px;
}

.wa-forms .wa-forgotpassword-button {
	margin-top: 20px;
}

.wa-forms .drop-zone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
}

.wa-forms .drop-zone:hover {
	border-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.wa-forms .wa-field-photo .wa-value {
	display: grid;
	grid-gap: 15px;
	margin-top: 10px;
}

.wa-forms .wa-field-photo .wa-value img,.wa-forms .wa-field-photo .wa-value svg {
	display: block;
	width: 100%;
	max-width: 90px;
	height: auto;
	overflow: hidden;
	border-radius: 50%;
}

.wa-forms .wa-field-photo .wa-value svg {
	fill: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.wa-forms .wa-forgotpassword-form-wrapper,.wa-forms .wa-login-form-wrapper,.wa-forms .wa-set-password-form-wrapper,.wa-forms .wa-signup-form-wrapper {
	display: block;
	width: 100%;
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
}

.wa-forms .wa-section-header {
	margin: 0 auto 10px;
}

.wa-forms .wa-section-divider {
	margin: 0 auto 20px;
}

.wa-forms .wa-section-divider,.wa-forms .wa-section-header {
	position: relative;
	display: block;
	text-align: center;
	font-size: .95em;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.wa-forms .wa-section-divider::after,.wa-forms .wa-section-divider::before,.wa-forms .wa-section-header::after,.wa-forms .wa-section-header::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 8%));
}

.wa-forms .wa-section-divider::after,.wa-forms .wa-section-header::after {
	left: calc(100% + 1rem);
}

.wa-forms .wa-section-divider::before,.wa-forms .wa-section-header::before {
	right: calc(100% + 1rem);
}

.wa-forms .wa-field-terms-accepted a,.wa-forms .wa-login-forgotpassword-url,.wa-forms .wa-login-url a,.wa-forms .wa-send-again-onetime-password-link,.wa-forms .wa-send-onetime-password-edit-link,.wa-forms .wa-signup-url a {
	color: hsl(var(--ph),var(--ps),var(--pl));
	text-decoration: none;
}

.wa-forms .wa-login-url {
	margin-top: 15px;
}

.wa-forms .wa-login-forgotpassword-url,.wa-forms .wa-send-again-onetime-password-link,.wa-forms .wa-send-onetime-password-edit-link {
	display: inline-block;
	margin-top: 5px;
}

.wa-forms .wa-login-forgotpassword-url:focus,.wa-forms .wa-send-again-onetime-password-link:focus,.wa-forms .wa-send-onetime-password-edit-link:focus {
	outline: 0;
}

.wa-forms .wa-info-msg {
	text-align: center;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	font-size: .95em;
	line-height: 1.45em;
}

@media (min-width:768px) {
	.wa-forms--grid .wa-field:not(.wa-field-terms-accepted) {
		grid-template-columns: 160px 1fr;
		grid-gap: 1rem;
	}

	.wa-forms .wa-field-photo .wa-value {
		margin-top: unset;
	}

	.wa-forms .wa-field .wa-value input[type=password]:not([name=captcha]),.wa-forms .wa-field .wa-value input[type=text]:not([name=captcha]) {
		min-height: 46px;
	}

	.wa-forms .wa-field select,.wa-forms .wa-field textarea {
		min-height: 46px;
	}
}

.wa-order .wa-order-cart-wrapper,.wa-order .wa-order-form-wrapper {
	font-size: initial;
	line-height: 1.45em;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product {
	padding: var(--gap) 0;
	border-bottom: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 2%));
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body>* {
	display: block;
	padding-right: unset;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body>.wa-column-image {
	flex-shrink: 0;
	width: 80px;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body>.wa-column-details {
	width: 100%;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body>.wa-column-price {
	flex-shrink: 0;
	width: 100px;
	margin-left: auto;
	align-self: center;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body .wa-quantity-cart-section {
	margin-top: var(--gap);
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name {
	margin-right: unset;
	font-size: initial;
	line-height: 1.45em;
	font-weight: 600;
	color: hsl(var(--th),var(--ts),var(--tl));
	text-decoration: none;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-sku {
	font-size: initial;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services {
	margin-top: var(--gap-small);
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service {
	margin-top: 5px;
	line-height: 1.45em;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-label {
	padding-left: 1.5rem;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant {
	margin-left: 1.5rem;
	margin-top: 5px;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	min-width: 90px!important;
	width: 100%;
	padding: .2rem .8rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 399 399' xmlns='http://www.w3.org/2000/svg' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23D1CDC6;%7D%3C/style%3E%3Cpath class='st0' d='M199,251.9c-4.7,0-9.4-1.8-13-5.3l-68.8-67.7c-7.3-7.2-7.4-18.9-0.2-26.2c7.2-7.3,18.9-7.4,26.2-0.2l55.8,54.9 l55.8-54.9c7.3-7.2,19-7.1,26.2,0.2c7.2,7.3,7.1,19-0.2,26.2L212,246.5C208.4,250.1,203.7,251.9,199,251.9z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat,repeat;
	background-position: right .6em top 50%;
	background-size: 1.6em auto,100%;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--gap-small);
	margin-top: 5px;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-actions .wa-action {
	display: flex;
	align-items: center;
	margin-right: unset;
	font-size: .9em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-actions .wa-action .wa-icon {
	margin-right: 3px;
}

.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-price-section .wa-price-total {
	font-size: 1em;
	line-height: 1.45em;
	font-weight: 600;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details {
	display: grid;
	grid-gap: 1rem;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	min-height: 36px;
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	line-height: 1.45em;
	font-family: inherit;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	transition: background-color .1s ease;
	overflow: hidden;
	cursor: pointer;
	color: hsl(var(--bh),var(--bs),var(--bl));
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	border: unset;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button:active,.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button:focus,.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button:hover {
	outline: 0;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 6%));
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-bonus-details .wa-active-state .wa-text {
	display: inline-block;
	margin-bottom: var(--gap-small);
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-order-bonus {
	margin-top: var(--gap-small);
	line-height: 1.45em;
	font-size: .95em;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-column-price {
	width: 100%;
	text-align: left;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-bonus-details .wa-details,.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-price-section .wa-price-discount {
	margin-bottom: var(--gap-small);
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-price-section .wa-price-total {
	margin: unset;
	font-size: 1.1em;
	line-height: 1.45em;
	font-weight: 600;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-column-price>* {
	margin-top: var(--gap-small);
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-inactive-state {
	display: flex;
	width: 100%;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	min-width: 90px!important;
	width: 100%;
	padding: .2rem .8rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input:hover:not(:disabled):not(:focus) {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button {
	flex-shrink: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	min-height: 36px;
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	line-height: 1.45em;
	font-family: inherit;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	transition: background-color .1s ease;
	overflow: hidden;
	cursor: pointer;
	color: hsl(var(--bh),var(--bs),var(--bl));
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	border: unset;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:active,.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:focus,.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:hover {
	outline: 0;
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 6%));
}

.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-text {
	display: inline-block;
	margin-bottom: var(--gap-small);
}

.wa-order .wa-order-form-wrapper .wa-step-section {
	margin-top: var(--gap-extended);
}

.wa-order .wa-order-form-wrapper .wa-step-section>.wa-section-header {
	margin-bottom: var(--gap);
}

.wa-order .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-contact-name,.wa-order .wa-order-form-wrapper .wa-step-section>.wa-section-header>.wa-header {
	font-size: var(--subtitle-font-size);
	line-height: 1.45em;
	font-weight: 600;
}

.wa-order .wa-order-form-wrapper .wa-step-section>.wa-section-header .wa-login-link,.wa-order .wa-order-form-wrapper .wa-step-section>.wa-section-header .wa-logout-link {
	text-decoration: none;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
	font-size: .9em;
	line-height: 1.45em;
}

.wa-order .wa-order-form-wrapper .wa-step-section .wa-payment-name a,.wa-order .wa-order-form-wrapper .wa-step-section .wa-type-wrapper .wa-name a {
	text-decoration: none;
	color: hsl(var(--th),var(--ts),var(--tl));
}

.wa-order .wa-order-form-wrapper .wa-step-shipping-section .wa-delivery-variants-section>.wa-header {
	font-size: .9em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	min-width: 90px!important;
	width: 100%;
	padding: .2rem .8rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.wa-order .wa-order-form-wrapper .wa-dropdown>.wa-dropdown-toggle:hover:not(:disabled):not(:focus),.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input:hover:not(:disabled):not(:focus),.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select:hover:not(:disabled):not(:focus),.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea:hover:not(:disabled):not(:focus) {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.wa-order .wa-order-form-wrapper .wa-dropdown>.wa-dropdown-toggle:hover:focus,.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input:hover:focus,.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select:hover:focus,.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea:hover:focus {
	border-color: hsl(var(--ph),var(--ps),var(--pl));
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	min-width: 90px!important;
	width: 100%;
	padding: .2rem .8rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 399 399' xmlns='http://www.w3.org/2000/svg' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23D1CDC6;%7D%3C/style%3E%3Cpath class='st0' d='M199,251.9c-4.7,0-9.4-1.8-13-5.3l-68.8-67.7c-7.3-7.2-7.4-18.9-0.2-26.2c7.2-7.3,18.9-7.4,26.2-0.2l55.8,54.9 l55.8-54.9c7.3-7.2,19-7.1,26.2,0.2c7.2,7.3,7.1,19-0.2,26.2L212,246.5C208.4,250.1,203.7,251.9,199,251.9z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat,repeat;
	background-position: right .6em top 50%;
	background-size: 1.6em auto,100%;
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-label {
	font-size: .9em;
	line-height: 1.45em;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-form-wrapper .wa-dropdown>.wa-dropdown-toggle,.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	min-width: 90px!important;
	width: 100%;
	padding: .2rem .8rem;
	box-sizing: border-box;
	appearance: none;
	border: 1px solid hsl(var(--ah),var(--as),calc(var(--al) - 8%));
	border-radius: var(--border-radius-small);
	font-size: .95em;
	font-family: inherit;
	background-color: hsl(var(--ah),var(--as),calc(var(--al) + 2%));
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 20%));
	transition: border-color .25s ease,background-color .25s ease,box-shadow .25s ease;
}

.wa-order .wa-order-form-wrapper .wa-dropdown>.wa-dropdown-toggle:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-order .wa-order-form-wrapper .wa-dropdown>.wa-dropdown-toggle:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea:focus {
	outline: 0;
	border-color: hsl(var(--ph),var(--ps),var(--pl));
	box-shadow: 0 0 1px 1px hsl(var(--ph),var(--ps),var(--pl));
	background-color: hsl(var(--bh),var(--bs),var(--bl));
}

.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea:disabled {
	opacity: .7;
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-form-wrapper .wa-step-confirm-section {
	padding-top: var(--gap);
}

.wa-order .wa-order-form-wrapper .wa-form-footer .wa-line a,.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-link {
	color: hsl(var(--th),var(--ts),calc(var(--tl) + 30%));
}

.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	min-height: 36px;
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: var(--border-radius-small);
	line-height: 1.45em;
	font-family: inherit;
	font-size: .95em;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	user-select: none;
	transition: background-color .1s ease;
	overflow: hidden;
	cursor: pointer;
	color: hsl(var(--bh),var(--bs),var(--bl));
	background-color: hsl(var(--ph),var(--ps),var(--pl));
	border: unset;
}

.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button:active,.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button:focus,.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button:hover {
	outline: 0;
}

.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button:hover {
	background-color: hsl(var(--ph),var(--ps),calc(var(--pl) + 6%));
}

.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-total-section .wa-item.wa-item-total .wa-value .wa-price {
	font-size: 1.2em;
	line-height: 1.45em;
	font-weight: 600;
}

.wa-order .wa-order-form-wrapper .wa-form-footer {
	margin-top: var(--gap);
}

@media screen and (min-width:761px) {
	.wa-order .wa-fields-group.line>.wa-field-wrapper {
		padding-top: var(--gap);
		padding-right: var(--gap);
	}
}

@media (min-width:768px) {
	.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button,.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button {
		min-height: 40px;
	}
}

@media (min-width:1300px) {
	.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body {
		grid-template-columns: auto 1fr auto auto;
	}

	.wa-order .wa-order-cart-wrapper .wa-cart-details {
		grid-template-columns: 1fr 210px;
	}

	.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-column-price {
		text-align: right;
	}
}

@media (min-width:1500px) {
	.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body {
		flex-wrap: nowrap;
	}

	.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body>.wa-column-image {
		width: 48px;
	}

	.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body>.wa-column-quantity {
		margin-left: auto;
	}

	.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body>.wa-column-price {
		margin-left: unset;
		align-self: unset;
	}
}

.widget-one {
	max-width: 950px;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
}

.widget-one.is-primary {
	background-color: hsl(var(--ah),var(--as),var(--al));
}

.widget-one.is-secondary,.widget-one.is-semitone {
	background-color: hsl(var(--ah),var(--as),calc(var(--al) - 4%));
}

.widget-one--gap {
	margin-bottom: var(--gap);
}

.widget-one__wrapper {
	padding: 1rem;
}

.widget-one__wrapper>:not(:last-child) {
	margin-bottom: var(--gap-small);
}

.widget-one__text,.widget-one__title {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 1.45em;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow: hidden;
}

.widget-one__title {
	-webkit-line-clamp: 2;
	font-size: var(--subtitle-font-size);
	font-weight: 600;
}

.widget-one__text {
	-webkit-line-clamp: 5;
	font-size: .95em;
}

.widget-one__image-wrapper {
	display: none;
	align-items: center;
	justify-content: flex-end;
}

.widget-one__image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	height: auto;
	font-size: 0;
	object-fit: cover;
}

@media (min-width:768px) {
	.widget-one__wrapper {
		padding: 1.5rem;
	}
}

@media (min-width:1200px) {
	.widget-one.has-image {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.widget-one__image-wrapper {
		display: flex;
	}
}