:root {
	--web-width: 1400px;
	--header-padding: 15px;
}

html {
	background: #818181;
}

body {
	background: #FFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 12pt;
	margin: 0 auto;
}

body.no-scroll {
	overflow: hidden;
}

body * {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	text-decoration: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body > section > div {
	margin: 0 auto;
	max-width: 1400px;
	max-width: var(--web-width);
}

section:not(.header) > div > header {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 30px;
	padding: 0 20px;
}

section:not(.header) > div > header > h1,
section:not(.header) > div > header > h2 {
/*	color: #FFF;
	background: #E30613;*/
	border-radius: 5px;
	font-size: 200%;
	font-weight: 700;
	line-height: 110%;
	text-transform: uppercase;
/*	padding: .15em .35em;
	display: inline-block;*/
}

section:not(.header) > div > header > h1 > span,
section:not(.header) > div > header > h2 > span {
	display: inline-block;
	transform: skewX(-9.75deg);
}

section:not(.header) > div > header > h1 > span > span,
section:not(.header) > div > header > h2 > span > span {
	color: #E30613;
	text-transform: none;
}

section:not(.header) > div > header > span {
	color: #6C6C6C;
	font-size: 90%;
}

section:not(.header) > div > header > span > a {
	text-decoration: underline;
}

section:not(.header) > div > header > span > a:hover {
	color: #000;
}

section.breadcrumb + section > div > header {
	margin-top: 30px;
}

section.top {
	color: #FFF;
	background: #E30613;
}

section.top > div {
	display: flex;
	flex-wrap: wrap;
}

section.top > div > div {
	font-size: 90%;
	padding: 15px 20px;
	position: relative;
}

section.top > div > div:first-child {
	flex: 1;
}

section.top > div > div:before {
	content: '';
	background: #FFF;
	background-image: linear-gradient(0deg, #E30613 25%, #FFF, #E30613 75%);
	display: block;
	width: 1px;
	position: absolute;
	top: 5px;
	left: 0;
	bottom: 5px;
}

section.top > div > div:first-child:before {
	display: none;
}

section.top > div > div > i {
	font-size: 110%;
	margin-right: 10px;
}

section.header {
	color: #000;
	background: #FFF;
	margin-bottom: -1px;
	width: 100%;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 99;
	box-shadow: 0 10px 20px -10px rgba(0,0,0,.25);
	transition: box-shadow 1s;
}

section.header.no-shadow {
	box-shadow: none;
}

section.header > div {
	padding: 0 20px;
}

section.header > div:last-child {
	background: #818181;
	padding: 0;
	max-width: 100%;
	scrollbar-color: #CCC #EEE;
	scrollbar-width: thin;
}

section.header > div:last-child:focus {
	outline: 1px dotted #000;
	box-shadow: none;
	scrollbar-color: #E30613 #EEE;
}

section.header > div > header {
	padding-top: var(--header-padding);
	padding-bottom: var(--header-padding);
	display: flex;
	align-items: center;
	position: relative;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

section.header > div > header > *:first-child {
	padding: 5px 0 4px 0;
}

section.header > div > header > *:last-child {
	flex: 1;
}

section.header > div > header > *:first-child > a {
	display: inline-block;
}

section.header > div > header > *:first-child > a:focus {
	outline: 1px dotted #000;
	outline-offset: 5px;
}

section.header > div > header > *:first-child > a > img {
	border-radius: 5px;
	vertical-align: middle;
	min-width: 125px;
	max-width: 100%;
	position: relative;
	top: 0;
	transform: translateY(0);
	transition: all 250ms;
}

section.header > div > header > input {
	position: absolute;
	opacity: 0;
}

section.header > div > header > input#menu-switch {
	display: none;
}

section.header > div > header > div > ul {
	list-style: none;
	margin: 0 0 0 20px;
	padding: 0;
	display: flex;
	align-items: center;
}

section.header > div > header > div > ul > li {
	padding: 0 20px;
}

section.header > div > header > div > ul > li:last-child {
	padding-right: 5px;
}

section.header > div > header > div > ul > li.menu-switch {
	display: none;
}

section.header > div > header > div > ul > li.menu-switch > label > i:last-child {
	display: none;
}

section.header > div > header > div > ul > li > a,
section.header > div > header > div > ul > li > label:not(:empty) {
	padding: 10px 15px;
	display: flex;
	align-items: center;	
	cursor: pointer;
}

section.header > div > header > div > ul > li > *:focus {
	outline: 1px dotted #000;
	outline-offset: -5px;
	box-shadow: none;
}

section.header > div > header > input#menu-switch:not(:checked) + div > ul > li.icon > a:focus {
	outline: none;
}

section.header > div > header > input#menu-switch:not(:checked) + div > ul > li.icon > a:focus > i > img {
	outline: 1px dotted #000;
	outline-offset: 5px;
}

section.header > div > header > div > ul > li.icon > a,
section.header > div > header > div > ul > li.icon > label:not(:empty) {
	margin: 0 -5px;
	padding: 10px;
}

section.header > div > header > div > ul > li.icon > * > i {
	font-size: 200%;
	display: inline;
	position: relative;
}

section.header > div > header > div > ul > li.icon > * > i:before {
	position: relative;
	top: 0;
	transition: all 250ms;
}

section.header > div > header > div > ul > li.icon > * > i[data-after]:after {
	content: attr(data-after);
	color: #FFF;
	background: #4B2;
	border-radius: 1em;
	font-size: 40%;
	font-weight: 700;
	font-style: normal;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 0px 8px;
	max-width: 220%;
	position: absolute;
	left: 50%;
	bottom: -.85em;
	transform: translateX(-50%);
}

section.header > div > header > div > ul > li.icon.cart > * > i[data-count]:after {
	content: attr(data-count);
	color: #FFF;
	background: #4B2;
	border-radius: 1em;
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40%;
	margin-top: 0;
	padding: 0 .25em;
	display: flex;
	justify-content: center;
	min-width: 1.406em;
	position: absolute;
	top: 30%;
	left: 0;
	opacity: 1;
	transform: translate(-50%, -50%);
	transition: all 750ms ease;
	box-shadow: 0 0 0 2px #FFF;
	box-sizing: border-box;
}

section.header > div > header > div > ul > li.icon.cart > * > i[data-count=""]:after {
	opacity: 0;
	transform: translate(-50%, -50%) translateY(-.75em);
	transition: none;
}

section.header > div > header > div > ul > li:not(.icon) > * > i {
	font-size: 200%;
	vertical-align: middle;
	margin-right: .45em;
}

section.header > div > header > div > ul > li > * > span {
	display: inline-block;
	position: relative;
}

section.header > div > header > div > ul > li.icon > * > i + span {
	display: none;
}

section.header > div > header > div > ul > li > * > span:after {
	content: '';
	background: #818181;
	border-radius: 2px;
	display: block;
	position: absolute;
	left: 25%;
	right: 25%;
	bottom: -6px;
	height: 4px;
	opacity: 0;
	transition: all 250ms;
}

section.header > div > header > div > ul > li > *:hover > span:after {
	left: -2px;
	right: -2px;
	opacity: 1;
	transition: all 50ms;
}

section.header > div > header > div > ul > li.text > a > i {
	font-size: 200%;
	vertical-align: middle;
	margin-right: .45em;
	display: none;
}

section.header > div > header > div > ul > li.search-switch {
	flex-grow: 1;
}

section.header > div > header > div > ul > li.search-switch > input {
	position: absolute;
	opacity: 0;
}

section.header > div > header > div > ul > li.search-switch > input:not(:checked) {
	display: none;
}

section.header > div > header > div > ul > li.search-switch > input + label {
	display: none;
}

section.header > div > header > div > ul > li.search-switch > input:focus + label {
	outline: 1px dotted #000;
	outline-offset: -5px;
}

section.header > div > header > div > ul > li.search-switch > input + label + label {
	margin: 0;
	padding: 0;
	opacity: 0;
	cursor: default;
}

section.header > div > header > div > ul > li.search-switch > input:checked + label + label {
	background: rgba(0,0,0,.3);
	background-image: linear-gradient(transparent, rgba(0,0,0,.4));
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	transition: opacity 1s;
	z-index: 99;
}

section.header > div > header > div > ul > li.search-switch > div {
	margin: 0;
	padding: 0;
	cursor: default;
}

section.header > div > header > div > ul > li.search-switch > input:checked + label + label + div {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 100;
}

section.header > div > header > div > ul > li.search-switch > div > form {
	width: 100%;
}

section.header > div > header > div > ul > li.search-switch > div > form > div {
	color: #000;
	background: #FFF;
	border: 2px solid #EEE;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
}

section.header > div > header > div > ul > li.search-switch > div > form > div > input {
	border: none;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	margin-left: 5px;
	padding: 10px 15px;
	flex: 1;
	min-width: 0;
}

section.header > div > header > div > ul > li.search-switch > div > form > div > input:focus {
	outline: none;
	box-shadow: none;
}

section.header > div > header > div > ul > li.search-switch > div > form > div > input:invalid {
	box-shadow: none;
}

section.header > div > header > div > ul > li.search-switch > div > form > div > button {
	color: #000;
	background: #FFF;
	border: none;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	font-size: 200%;
	padding: 5px 15px;
	cursor: pointer;
	transition: background-color 250ms;
}

section.header > div > header > div > ul > li.search-switch > div > form > div > button:focus {
	outline: 1px dotted #000;
	outline-offset: -2px;
	box-shadow: none;
}

section.header > div > header > div > ul > li.search-switch > div > form > div > button > i {
	display: flex;
}

section.header > div > header > div > ul > li.search-switch > div > form > div > input:invalid + button {
	background: #FFF;
}

section.header > div > header > div > ul > li.info.contact > div > i {
	font-size: 100%;
	vertical-align: baseline;
	margin-right: .25em;
}

section.header > div > header > div > ul > li.info.contact > div > a {
	font-size: 90%;
	font-weight: 600;
}

section.header > div > header > div > ul > li.info.contact > div > a:focus {
	outline: 1px dotted #000;
	box-shadow: none;
}

section.header > div > nav {
	color: #FFF;
	background: #818181;
	margin: 0 auto;
	padding: 10px 0;
	max-width: 1400px;
	max-width: var(--web-width);
}

section.header > div > nav > ul {
	list-style: none;
	margin: 0 10px;
	display: flex;
	align-items: center;
	position: relative;
}

section.header > div > nav > ul > li {
	border-left: 2px solid #BBB;
	padding: 0 10px;
}

section.header > div > nav > ul > li:empty {
	flex-grow: 1;
}

section.header > div > nav > ul > li:first-child,
section.header > div > nav > ul > li:empty + li {
	border-left: none;
}

section.header > div > nav > ul > li > a {
	color: #DDD;
	border-radius: 3px;
	padding: 10px;
	padding: calc(var(--header-padding) / 15 * 10) 10px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

section.header > div > nav > ul > li > a:focus {
	outline: 1px dotted #FFF;
	box-shadow: none;
}

section.header > div > nav > ul > li:hover > a,
section.header > div > nav > ul > li > a:hover {
	color: #FFF;
	background-color: rgba(255,255,255,.1);
}

section.header > div > nav > ul > li > ul {
	color: #000;
	background: #FFF;
	border: 2px solid #818181;
	border-top-width: 10px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	list-style: none;
	overflow-y: auto;
	padding: 15px;
	display: none;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	max-height: calc(100vh - 82.8px - 2 * var(--header-padding) - 42px - 2 * var(--header-padding) / 15 * 10);
	position: absolute;
	left: 0;
	right: 0;
	box-shadow: 0 10px 20px -10px rgba(0,0,0,.25);
	scrollbar-color: #CCC #EEE;
	scrollbar-width: thin;
}

section.header > div > nav > ul > li > ul:focus {
	scrollbar-color: #E30613 #EEE;
}

section.header > div > nav > ul > li.hover > ul,
section.header > div > nav > ul > li:not(.js):hover > ul {
	display: grid;
}

section.header > div > nav > ul > li > ul > li {
	padding: 15px;
	display: inline-grid;
	grid-template-columns: 63px 1fr;
	grid-template-rows: auto 1fr;
}

section.header > div > nav > ul > li > ul > li > a {
	margin-top: .25em;
}

section.header > div > nav > ul > li > ul > li > a:hover {
	text-decoration: underline;
}

section.header > div > nav > ul > li > ul > li > a:focus {
	outline: 1px dotted #000;
	box-shadow: none;
}

section.header > div > nav > ul > li > ul > li > a.image {
	margin-top: 0;
	margin-right: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-column: 1;
	grid-row: 1 / 3;
	width: 48px;
	height: 48px;
}

section.header > div > nav > ul > li > ul > li > a.image + a {
	width: fit-content;
}

section.header > div > nav > ul > li.brand > ul > li > a.image {
	height: auto;
	min-height: 30px;
}

section.header > div > nav > ul > li.brand > ul > li > a.image > img[src="images/cyklosport.svg"] {
	border-radius: 3px;
	opacity: .25;
	filter: grayscale(1) invert(1) contrast(1.7);
}

section.header > div > nav > ul > li > ul > li > a.image:hover + a {
	text-decoration: underline;
}

section.header > div > nav > ul > li > ul > li > a > img {
	max-width: 100%;
	max-height: 48px;
}

section.header > div > nav > ul > li > ul > li > ul {
	font-size: 80%;
	list-style: none;
	display: inline-block;
}

section.header > div > nav > ul > li > ul > li > ul > li {
	display: inline-block;
}

section.header > div > nav > ul > li > ul > li > ul > li:not(:last-child):after {
	content: ', ';
	white-space: break-spaces;
}

section.header > div > nav > ul > li > ul > li > ul > li > a:hover {
	text-decoration: underline;
}

section.header > div > nav > ul > li > ul > li > ul > li > a:focus {
	outline: 1px dotted #000;
	box-shadow: none;
}

section.header > div > nav > ul > li > ul > li > ul > li > ul {
	display: none;
}

section.top-slider {
	color: #FFF;
	background: #000;
	background-image: radial-gradient(circle at 65% 40%,#608,#004 20%,#000 60%);
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0 6em rgba(0, 0, 0, .5) inset;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

section.top-slider > span.star {
	display: block;
	width: 2px;
	height: 1px;
	position: absolute;
	left: 62%;
	transform: translateX(-320px);
	mix-blend-mode: overlay;
}

section.top-slider > span.star + span.star {
	border-radius: 3px;
	margin-top: -2px;
	width: 5px;
	height: 5px;
	left: calc(60% - 2px);
	filter: blur(2px);
	opacity: .25;
}

section.top-slider > div {
	padding: 0;
	max-width: 100%;
}

section.top-slider > div > div.slider {
	display: grid;
	grid-template-areas: "overlap";
	align-items: center;
	justify-content: center;
}

section.top-slider > div > div.slider > input {
	position: absolute;
	left: 50%;
	bottom: 0;
	opacity: 0;
	transform: translate(-50%, -50%);
}

section.top-slider > div > div.slider > div.slide {
	margin: 0 auto;
	grid-area: overlap;
	position: relative;
	opacity: 0;
	transform: translateX(-100%);
	transition: all 1s;
	pointer-events: none;
}

section.top-slider > div > div.slider > div.slide.first {
	transform: translateX(-100%);
}

section.top-slider > div > div.slider > div.slide.last {
	transform: translateX(100%);
}

section.top-slider > div > div.slider > div.slide:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

section.top-slider:not(.js) > div > div.slider > input:nth-of-type(100) + div.slide ~ *:not(.control) {
	display: none;
}

section.top-slider > div > div.slider > div.no-transition {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

section.top-slider > div > div.slider > div.slide div.layout {
	display: flex;
	align-items: center;
	width: 100vw;
	height: 40.625vw;
}

section.top-slider > div > div.slider > div.slide div.image {
	text-align: center;
	margin: 0 auto;
	flex: 1 0 65%;
	width: 100vw;
	position: absolute;
	z-index: -1;
}

section.top-slider > div > div.slider > div.slide div.image img {
	vertical-align: middle;
	width: 100%;
}

section.top-slider > div > div.slider > div.slide div.text {
	text-align: left;
	padding: 3.5em 25px 6em 25px;
	margin: 0 auto;
	flex: 1 0 35%;
	flex-wrap: wrap;
	justify-content: center;
	max-width: var(--web-width);
}

section.top-slider > div > div.slider > div.slide div.text.right {
	text-align: right;
}

section.top-slider > div > div.slider > div.slide div.text.center {
	text-align: center;
}

section.top-slider > div > div.slider > div.slide div.text.top {
	align-self: start;
}

section.top-slider > div > div.slider > div.slide div.text.bottom {
	align-self: end;
}

section.top-slider > div > div.slider > div.slide div.text h2 {
	font-size: 300%;
	font-weight: 300;
	line-height: 125%;
	max-width: 50%;
	text-shadow: 0 5px 10px rgba(0,0,0,.5), 1px 2px 1px rgba(0,0,0,.25);
}

section.top-slider > div > div.slider > div.slide div.text.right h2 {
	margin-left: auto;
}

section.top-slider > div > div.slider > div.slide div.text.center h2 {
	margin-left: auto;
	margin-right: auto;
}

section.top-slider > div > div.slider > div.slide div.text h2 > strong {
	font-weight: 700;
}

section.top-slider > div > div.slider > div.slide div.text a.button {
	color: #FFF;
	background: #E30613;
	border-radius: 1.25em;
	font-size: 110%;
	margin: 1em 25px 0 0;
	padding: .42em 1.5em .58em 1.5em;
	display: inline-block;
	position: relative;
	z-index: 1;
}

section.top-slider > div > div.slider > div.slide div.text a.button:focus {
	outline: none;
	box-shadow: 0 0 0 3px #FFF;
}

section.top-slider > div > div.slider > div.slide div.text.right a.button {
	margin-left: 1.5em;
	margin-right: 0;
}

section.top-slider > div > div.slider > input:checked + div.slide ~ div.slide {
	transform: translateX(100%);
}

section.top-slider > div > div.slider > input:checked + div.slide ~ div.slide.first {
	transform: translateX(-100%);
}

section.top-slider > div > div.slider > input:checked + div.slide {
	opacity: 1;
	transform: translateX(0%);
	pointer-events: auto;
}

section.top-slider > div > div.slider > div.control {
	color: #FFF;
	text-align: right;
	white-space: nowrap;
	padding: 0 1em;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1em;
}

section.top-slider > div > div.slider > div.control > div {
	font-size: 150%;
	display: inline-flex;
}

section.top-slider > div > div.slider > div.control > div > * {
	margin: -5px 0;
	padding: 5px 0;
	order: 0;
}

section.top-slider > div > div.slider > div.control > div > label {
	background: #FFF;
	border-radius: 1em;
	margin: .125em;
	display: inline-block;
	width: 1em;
	height: 1em;
	box-shadow: 0 0 0 .5em #FFF inset, 0 0 1em #000;
	transition: all 250ms;
	cursor: pointer;
}

section.top-slider:not(.js) > div > div.slider > div.control > div > label:nth-of-type(100) ~ label {
	display: none;
}

section.top-slider > div > div.slider > input#top-slider-1:checked ~ div.control > div > label:nth-child(1),
section.top-slider > div > div.slider > input#top-slider-2:checked ~ div.control > div > label:nth-child(2),
section.top-slider > div > div.slider > input#top-slider-3:checked ~ div.control > div > label:nth-child(3),
section.top-slider > div > div.slider > input#top-slider-4:checked ~ div.control > div > label:nth-child(4),
section.top-slider > div > div.slider > input#top-slider-5:checked ~ div.control > div > label:nth-child(5),
section.top-slider > div > div.slider > input#top-slider-6:checked ~ div.control > div > label:nth-child(6),
section.top-slider > div > div.slider > input#top-slider-7:checked ~ div.control > div > label:nth-child(7),
section.top-slider > div > div.slider > input#top-slider-8:checked ~ div.control > div > label:nth-child(8),
section.top-slider > div > div.slider > input#top-slider-9:checked ~ div.control > div > label:nth-child(9),
section.top-slider > div > div.slider > input#top-slider-10:checked ~ div.control > div > label:nth-child(10),
section.top-slider > div > div.slider > input#top-slider-11:checked ~ div.control > div > label:nth-child(11),
section.top-slider > div > div.slider > input#top-slider-12:checked ~ div.control > div > label:nth-child(12),
section.top-slider > div > div.slider > input#top-slider-13:checked ~ div.control > div > label:nth-child(13),
section.top-slider > div > div.slider > input#top-slider-14:checked ~ div.control > div > label:nth-child(14),
section.top-slider > div > div.slider > input#top-slider-15:checked ~ div.control > div > label:nth-child(15),
section.top-slider > div > div.slider > input#top-slider-16:checked ~ div.control > div > label:nth-child(16),
section.top-slider > div > div.slider > input#top-slider-17:checked ~ div.control > div > label:nth-child(17),
section.top-slider > div > div.slider > input#top-slider-18:checked ~ div.control > div > label:nth-child(18),
section.top-slider > div > div.slider > input#top-slider-19:checked ~ div.control > div > label:nth-child(19),
section.top-slider > div > div.slider > input#top-slider-20:checked ~ div.control > div > label:nth-child(20),
section.top-slider > div > div.slider > input#top-slider-21:checked ~ div.control > div > label:nth-child(21),
section.top-slider > div > div.slider > input#top-slider-22:checked ~ div.control > div > label:nth-child(22),
section.top-slider > div > div.slider > input#top-slider-23:checked ~ div.control > div > label:nth-child(23),
section.top-slider > div > div.slider > input#top-slider-24:checked ~ div.control > div > label:nth-child(24),
section.top-slider > div > div.slider > input#top-slider-25:checked ~ div.control > div > label:nth-child(25),
section.top-slider > div > div.slider > input#top-slider-26:checked ~ div.control > div > label:nth-child(26),
section.top-slider > div > div.slider > input#top-slider-27:checked ~ div.control > div > label:nth-child(27),
section.top-slider > div > div.slider > input#top-slider-28:checked ~ div.control > div > label:nth-child(28),
section.top-slider > div > div.slider > input#top-slider-29:checked ~ div.control > div > label:nth-child(29),
section.top-slider > div > div.slider > input#top-slider-30:checked ~ div.control > div > label:nth-child(30),
section.top-slider > div > div.slider > input#top-slider-31:checked ~ div.control > div > label:nth-child(31),
section.top-slider > div > div.slider > input#top-slider-32:checked ~ div.control > div > label:nth-child(32),
section.top-slider > div > div.slider > input#top-slider-33:checked ~ div.control > div > label:nth-child(33),
section.top-slider > div > div.slider > input#top-slider-34:checked ~ div.control > div > label:nth-child(34),
section.top-slider > div > div.slider > input#top-slider-35:checked ~ div.control > div > label:nth-child(35),
section.top-slider > div > div.slider > input#top-slider-36:checked ~ div.control > div > label:nth-child(36),
section.top-slider > div > div.slider > input#top-slider-37:checked ~ div.control > div > label:nth-child(37),
section.top-slider > div > div.slider > input#top-slider-38:checked ~ div.control > div > label:nth-child(38),
section.top-slider > div > div.slider > input#top-slider-39:checked ~ div.control > div > label:nth-child(39),
section.top-slider > div > div.slider > input#top-slider-40:checked ~ div.control > div > label:nth-child(40),
section.top-slider > div > div.slider > input#top-slider-41:checked ~ div.control > div > label:nth-child(41),
section.top-slider > div > div.slider > input#top-slider-42:checked ~ div.control > div > label:nth-child(42),
section.top-slider > div > div.slider > input#top-slider-43:checked ~ div.control > div > label:nth-child(43),
section.top-slider > div > div.slider > input#top-slider-44:checked ~ div.control > div > label:nth-child(44),
section.top-slider > div > div.slider > input#top-slider-45:checked ~ div.control > div > label:nth-child(45),
section.top-slider > div > div.slider > input#top-slider-46:checked ~ div.control > div > label:nth-child(46),
section.top-slider > div > div.slider > input#top-slider-47:checked ~ div.control > div > label:nth-child(47),
section.top-slider > div > div.slider > input#top-slider-48:checked ~ div.control > div > label:nth-child(48),
section.top-slider > div > div.slider > input#top-slider-49:checked ~ div.control > div > label:nth-child(49),
section.top-slider > div > div.slider > input#top-slider-50:checked ~ div.control > div > label:nth-child(50),
section.top-slider > div > div.slider > input#top-slider-51:checked ~ div.control > div > label:nth-child(51),
section.top-slider > div > div.slider > input#top-slider-52:checked ~ div.control > div > label:nth-child(52),
section.top-slider > div > div.slider > input#top-slider-53:checked ~ div.control > div > label:nth-child(53),
section.top-slider > div > div.slider > input#top-slider-54:checked ~ div.control > div > label:nth-child(54),
section.top-slider > div > div.slider > input#top-slider-55:checked ~ div.control > div > label:nth-child(55),
section.top-slider > div > div.slider > input#top-slider-56:checked ~ div.control > div > label:nth-child(56),
section.top-slider > div > div.slider > input#top-slider-57:checked ~ div.control > div > label:nth-child(57),
section.top-slider > div > div.slider > input#top-slider-58:checked ~ div.control > div > label:nth-child(58),
section.top-slider > div > div.slider > input#top-slider-59:checked ~ div.control > div > label:nth-child(59),
section.top-slider > div > div.slider > input#top-slider-60:checked ~ div.control > div > label:nth-child(60),
section.top-slider > div > div.slider > input#top-slider-61:checked ~ div.control > div > label:nth-child(61),
section.top-slider > div > div.slider > input#top-slider-62:checked ~ div.control > div > label:nth-child(62),
section.top-slider > div > div.slider > input#top-slider-63:checked ~ div.control > div > label:nth-child(63),
section.top-slider > div > div.slider > input#top-slider-64:checked ~ div.control > div > label:nth-child(64),
section.top-slider > div > div.slider > input#top-slider-65:checked ~ div.control > div > label:nth-child(65),
section.top-slider > div > div.slider > input#top-slider-66:checked ~ div.control > div > label:nth-child(66),
section.top-slider > div > div.slider > input#top-slider-67:checked ~ div.control > div > label:nth-child(67),
section.top-slider > div > div.slider > input#top-slider-68:checked ~ div.control > div > label:nth-child(68),
section.top-slider > div > div.slider > input#top-slider-69:checked ~ div.control > div > label:nth-child(69),
section.top-slider > div > div.slider > input#top-slider-70:checked ~ div.control > div > label:nth-child(70),
section.top-slider > div > div.slider > input#top-slider-71:checked ~ div.control > div > label:nth-child(71),
section.top-slider > div > div.slider > input#top-slider-72:checked ~ div.control > div > label:nth-child(72),
section.top-slider > div > div.slider > input#top-slider-73:checked ~ div.control > div > label:nth-child(73),
section.top-slider > div > div.slider > input#top-slider-74:checked ~ div.control > div > label:nth-child(74),
section.top-slider > div > div.slider > input#top-slider-75:checked ~ div.control > div > label:nth-child(75),
section.top-slider > div > div.slider > input#top-slider-76:checked ~ div.control > div > label:nth-child(76),
section.top-slider > div > div.slider > input#top-slider-77:checked ~ div.control > div > label:nth-child(77),
section.top-slider > div > div.slider > input#top-slider-78:checked ~ div.control > div > label:nth-child(78),
section.top-slider > div > div.slider > input#top-slider-79:checked ~ div.control > div > label:nth-child(79),
section.top-slider > div > div.slider > input#top-slider-80:checked ~ div.control > div > label:nth-child(80),
section.top-slider > div > div.slider > input#top-slider-81:checked ~ div.control > div > label:nth-child(81),
section.top-slider > div > div.slider > input#top-slider-82:checked ~ div.control > div > label:nth-child(82),
section.top-slider > div > div.slider > input#top-slider-83:checked ~ div.control > div > label:nth-child(83),
section.top-slider > div > div.slider > input#top-slider-84:checked ~ div.control > div > label:nth-child(84),
section.top-slider > div > div.slider > input#top-slider-85:checked ~ div.control > div > label:nth-child(85),
section.top-slider > div > div.slider > input#top-slider-86:checked ~ div.control > div > label:nth-child(86),
section.top-slider > div > div.slider > input#top-slider-87:checked ~ div.control > div > label:nth-child(87),
section.top-slider > div > div.slider > input#top-slider-88:checked ~ div.control > div > label:nth-child(88),
section.top-slider > div > div.slider > input#top-slider-89:checked ~ div.control > div > label:nth-child(89),
section.top-slider > div > div.slider > input#top-slider-90:checked ~ div.control > div > label:nth-child(90),
section.top-slider > div > div.slider > input#top-slider-91:checked ~ div.control > div > label:nth-child(91),
section.top-slider > div > div.slider > input#top-slider-92:checked ~ div.control > div > label:nth-child(92),
section.top-slider > div > div.slider > input#top-slider-93:checked ~ div.control > div > label:nth-child(93),
section.top-slider > div > div.slider > input#top-slider-94:checked ~ div.control > div > label:nth-child(94),
section.top-slider > div > div.slider > input#top-slider-95:checked ~ div.control > div > label:nth-child(95),
section.top-slider > div > div.slider > input#top-slider-96:checked ~ div.control > div > label:nth-child(96),
section.top-slider > div > div.slider > input#top-slider-97:checked ~ div.control > div > label:nth-child(97),
section.top-slider > div > div.slider > input#top-slider-98:checked ~ div.control > div > label:nth-child(98),
section.top-slider > div > div.slider > input#top-slider-99:checked ~ div.control > div > label:nth-child(99),
section.top-slider > div > div.slider > input#top-slider-100:checked ~ div.control > div > label:nth-child(100),
section.top-slider > div > div.slider > div.control > div > label.checked:after {
	background: #E30613;
	box-shadow: 0 0 0 .25em #FFF inset, 0 0 1em #000;
}

section.benefits {
	background: #FFF;
	position: relative;
}

section.benefits > div {
	padding: 35px 0;
	display: flex;
	flex-wrap: wrap;
}

section.benefits > div > div {
	padding: 10px 20px;
	display: flex;
	flex: 1 0 auto;
}

section.benefits > div > div > div {
	padding: 10px;
	position: relative;
}

section.benefits > div > div > div:first-child > i {
	color: #FF9600;
	font-size: 220%;
}

section.benefits > div > div > div:last-child > i {
	position: absolute;
	top: 0;
	right: -.25em;
}

section.benefits > div > div > div:last-child > h3 {
	font-weight: 600;
}

section.benefits > div > div > div > span {
	font-size: 90%;
}

section.quick-choice {
	background: #F7F8FC;
}

section.quick-choice > div {
	padding: 30px 0;
}

section.quick-choice > div > div.items {
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
}

section.quick-choice > div > div.items > div.item {
	padding: 15px;
	flex: 1 1 25%;
}

section.quick-choice > div > div.items > div.item > a.choice {
	background: #FFF;
	border-radius: 15px;
	text-align: center;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 2px 10px -5px rgba(0,0,0,.25);
}

section.quick-choice > div > div.items > div.item > a.choice:focus {
	outline: 1px dotted #000;
	outline-offset: 10px;
}

section.quick-choice > div > div.items > div.item > a.choice > div.top {
	border-radius: 15px;
	padding: 40px 0 25px 0;
	overflow: hidden;
	display: flex;
	flex: 1;
	flex-direction: column;
	height: 100%;
	position: relative;
	box-shadow: 0 5px 10px -5px rgba(0,0,0,.25);
	transition: all 500ms ease-in-out;
}

section.quick-choice > div > div.items > div.item > a.choice > div.top:after {
	content: '';
	background-image: radial-gradient(circle farthest-side, rgba(255,255,255,.35), transparent);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translateY(-100%);
	transition: all 500ms ease-in-out;
}

section.quick-choice > div > div.items > div.item > a.choice:hover > div.top {
	box-shadow: 0 25px 30px -30px rgba(0,0,0,.75);
	transform: perspective(1400px) translateZ(50px) translateY(-15px) rotateX(15deg);
	transform-origin: 50% 25%;
	transition: all 500ms ease-out;
}

section.quick-choice > div > div.items > div.item > a.choice:hover > div.top:after {
	opacity: 1;
	transform: translateY(-50%);
	transition: all 500ms ease-out;
}

section.quick-choice > div > div.items > div.item > a.choice > div.top > div.image {
	flex: 1;
}

section.quick-choice > div > div.items > div.item > a.choice > div.top > h2 {
	color: #FFF;
	font-size: 150%;
	padding: 20px 20px 0 20px;
}

section.quick-choice > div > div.items > div.item:nth-of-type(1) > a.choice > div.top {
	background-image: linear-gradient(140deg, #FF3C3C, #B50101);
}

section.quick-choice > div > div.items > div.item:nth-of-type(2) > a.choice > div.top {
	background-image: linear-gradient(140deg, #70BFFB, #6A53FF);
}

section.quick-choice > div > div.items > div.item:nth-of-type(3) > a.choice > div.top {
	background-image: linear-gradient(140deg, #FFB44A, #FF9600);
}

section.quick-choice > div > div.items > div.item:nth-of-type(4) > a.choice > div.top {
	background-image: linear-gradient(140deg, #45D90A, #0C8400);
}

section.quick-choice > div > div.items > div.item > a.choice > div.top > div.image > img {
	width: 100%;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

section.quick-choice > div > div.items > div.item > a.choice > div.bottom {
	overflow: hidden;
	padding: 25px 20px 20px 20px;
}

section.quick-choice > div > div.items > div.item > a.choice > div.bottom > strong {
	font-weight: 300;
	font-size: 90%;
}

section.quick-choice > div > footer {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 30px;
	padding: 0 30px;
}

section.quick-choice > div > footer > span {
	color: #FF9600;
	font-size: 200%;
}

section.items {
	display: flow-root;
	position: relative;
}

section.items:before {
	content: '';
	background-image: linear-gradient(transparent, rgba(0,0,0,.45));
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: -1;
	transition: opacity 1s;
}

section.items.loading:before {
	top: 0;
	opacity: 1;
	z-index: 1;
}

section.items:after {
	content: '\f110';
	color: #E30613;
	border-radius: 50%;
	font-family: 'Font Awesome 6 Free';
	font-size: 500%;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 8vmax;
	height: 8vmax;
	position: fixed;
	top: 50%;
	left: 50%;
	opacity: 0;
	z-index: -1;
	text-shadow: 0 0 1vmax rgba(0,0,0,.25);
	transform: translate(-50%,-50%);
	transition: opacity 500ms;
}

section.items.loading:after {
	opacity: 1;
	z-index: 1;
	animation: loading 2s linear infinite;
}

@keyframes loading {
	0% {
		transform: translate(-50%,-50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%,-50%) rotate(360deg);
	}
}

section.items > div {
	max-width: 100%;
}

section.items.slider.js > div {
	overflow-x: hidden;
}

section.items.slider > span {
	color: #E30613;
	background: #E30613;
	font-size: 200%;
	line-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
	box-shadow: 0px 2px 4px 2px rgba(0,0,0,.1);
}

section.items.slider > span:first-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	left: 0;
}

section.items.slider > span:first-child:after {
	content: '';
	position: absolute;
	border: 15px solid transparent;
	border-right-color: #FFF;
	transform: translateX(-10px);
}

section.items.slider > span:last-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	right: 0;
}

section.items.slider > span:last-child:after {
	content: '';
	position: absolute;
	border: 15px solid transparent;
	border-left-color: #FFF;
	transform: translateX(10px);
}

section.items > div > * {
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
	max-width: var(--web-width);
}

section.items > div > div.message {
	margin-bottom: 60px;
}

section.items > div > div.message > div.content {
	text-align: center;
}

section.items > div > div.description {
	font-size: 95%;
}

section.items > div > div.description > div.content {
	padding: 0 30px;
}

section.items > div > div.description > div.content h3 {
	font-size: 115%;
	margin: 20px 0 ;
}

section.items > div > div.description > div.content p {
	margin: 20px 0;
}

section.items > div > div.description > div.content li {
	margin-left: 1em;
}

section.items > div > div.categories {
	margin-bottom: 30px;
}

section.items > div > div.categories > div > div {
	padding: 0 0 0 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

section.items > div > div.categories > div > div > div {
	padding: 30px 30px 0 0;
	flex: 0 0 25%;
}

section.items > div > div.categories > div > div > div.more {
	display: none;
}

section.items > div > div.categories > div > div > input {
	display: block;
}

section.items > div > div.categories > div > div > input:checked ~ div.more {
	display: block;
}

section.items > div > div.categories > div > div > input:checked ~ div:not(.more) {
	display: none;
}

section.items > div > div.categories > div > div > div > a,
section.items > div > div.categories > div > div > div > label {
	background: #F8F8F8;
	background-image: linear-gradient(-90deg, #F8F8F8 49.9%, var(--background-color, #FFF) 50%);
	background-size: 200% 100%;
	background-position: 75% 0;
	border: 1px solid #EEE;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 100%;
}

section.items > div > div.categories > div > div > div > label {
	color: #DDD;
	background-color: #818181;
	background-image: linear-gradient(-90deg, #818181 49.9%, #8E8E8E 50%);
	cursor: pointer;
}

section.items > div > div.categories > div > div > div > label > i {
	font-size: 150%;
	text-align: center;
	flex: 0 0 25%;
}

section.items > div > div.categories > div > div > div > label > span {
	font-weight: 500;
	text-transform: uppercase;
	padding: 15px 20px;
	display: block;
	flex: 1 0 0;
}

section.items > div > div.categories > div > div > div > a:hover,
section.items > div > div.categories > div > div > div > label:hover {
	background-position: 0 0%;
	box-shadow: 0 2px 15px -10px rgba(0,0,0,.5);
	transition: background-position 500ms 250ms ease-in-out;
}

section.items > div > div.categories > div > div > div > label:hover {
	color: #FFF;
}

section.items > div > div.categories > div > div > div > a > .image {
	background: #FFF;
	background-color: var(--background-color, #FFF);
	text-align: center;
	overflow: hidden;
	padding: 10px;
	display: flex;
	flex: 0 0 25%;
	align-items: center;
	justify-content: center;
	height: 100%;
}

section.items > div > div.categories > div > div > div > a > .image > img {
	vertical-align: top;
	max-width: 100%;
	min-height: 40px;
	max-height: 48px;
	object-fit: contain;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

section.items > div > div.categories > div > div > div > a > .name {
	font-size: 95%;
	font-weight: 500;
/*	text-transform: uppercase;*/
	padding: 15px 20px;
	display: block;
	flex: 1 0 0;
}

section.items > div > header + form {
	margin-top: 60px;
}

section.items > div > form > div.filter {
	background: #F8F8F8;
	border: 1px solid #EEE;
	border-radius: 10px;
	font-size: 85%;
	margin: 30px 30px 0 30px;
	padding: 15px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

section.items > div > form > div.filter:empty {
	display: none;
}

section.items > div > form > div.filter > div {
	padding: 15px;
	display: flex;
	flex: 0 0 25%;
	align-items: center;
}

section.items > div > form > div.filter > div.sort {
	order: -1;
}

section.items > div > form > div.filter > div.range {
	flex-basis: 50%;
}

section.items > div > form > div.filter > div label {
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 6px 1em 6px 0;
}

section.items > div > form > div.filter > div > div {
	flex: 1;
}

section.items > div > form > div.filter > div select {
	color: #000;
	background: #FFF;
	border: 1px solid #EEE;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	padding: 5px;
	width: 100%;
}

section.items > div > form > div.filter > div.range div.ui-slider {
	background: rgba(0,0,0,.15);
	margin-left: 2em;
	margin-right: 2em;
}

section.items > div > form > div.filter > div.range div.ui-slider > .ui-slider-range {
	background: #989898;
}

section.items > div > form > div.filter > div.range div.ui-slider-horizontal {
	height: 7px;
}

section.items > div > form > div.filter > div.range div.ui-slider > .ui-slider-handle {
	color: #FFF;
	background: #686868;
	border-radius: 12px;
	font-size: 85%;
	white-space: nowrap;
	margin-left: 0;
	padding: 0 10px;
	display: flex;
	align-items: center;
	width: auto;
	min-width: 25px;
	height: 25px;
	top: -9px;
	box-shadow: 0 0 1px 1px #F1F1F1;
	transform: translateX(-50%);
}

section.items > div > form > div.filter > div.range div.ui-slider > .ui-slider-handle.ui-state-hover {
	z-index: 3;
}

section.items > div > form > div.filter > div button {
	background: inherit;
	border: 1px solid #A7A7A7;
	border-radius: 10px;
	font-size: 70%;
	text-transform: uppercase;
	padding: 8px 20px;
	cursor: pointer;
}

section.items > div > form > div.filter > div button:hover {
	color: #E30C22;
	background: rgba(255,192,192,.25);
	border-color: #E30C22;
}

section.items > div > div.items {
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
}

section.items.slider > div > div.items {
	overflow-x: auto;
	max-width: 100%;
	flex-wrap: nowrap;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

section.items.slider.js > div > div.items {
	overflow-x: visible;
}

section.items > div > div.items > div.item {
	padding: 15px;
	flex: 0 0 25%;
}

section.items.slider > div > div.items > div.item {
	flex-basis: calc(min(var(--web-width) - 30px, 100%) / 4);
}

section.items > div > div.items > div.item > a {
	background: #FFF;
	border: 1px solid #EEE;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

section.items > div > div.items > div.item > a:focus {
	outline: 1px dotted #000;
	outline-offset: 10px;
}

section.items > div > div.items > div.item > a:hover {
	box-shadow: 0 2px 15px -10px rgba(0,0,0,.5);
}

section.items > div > div.items > div.item > a > div.image {
	overflow: hidden;
	margin: 0;
	padding: 30px 30px 20px 30px;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	max-width: 572px;
	min-height: 200px;
	max-height: 300px;
	position: relative;
}

section.items > div > div.items > div.item > a > div.image:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

section.items > div > div.items > div.item > a > div.image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 250ms ease-in-out;
}

section.items > div > div.items > div.item > a:hover > div.image img {
	transform: scale(1.15);
}

section.items > div > div.items > div.item > a > div.image > ul.tags {
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
}

section.items > div > div.items > div.item > a > div.image > ul.tags > li {
	color: #FFF;
	background: #AAA;
	border-radius: 3px;
	font-size: 85%;
	font-weight: 600;
	text-transform: lowercase;
	padding: .15em .75em .25em .75em;
	margin: 5px;
	display: inline-block;
}

section.items > div > div.items > div.item > a > div.image > ul.tags > li.new {
	background: #F09700;
}

section.items > div > div.items > div.item > a > div.image > ul.tags > li.recommended {
	background: #E30613;
}

section.items > div > div.items > div.item > a > div.image > ul.tags > li.special-offer {
	background: #DA251C;
}

section.items > div > div.items > div.item > a > div.image > ul.tags > li.sale {
	background: #42B029;
}

section.items > div > div.items > div.item > a > div.image > ul.tags > li.markdown {
	background: #42B029;
}

section.items > div > div.items > div.item > a > div.brand {
	color: #818181;
	font-size: 90%;
	padding: 10px 20px 0 20px;
	margin-bottom: -5px;
}

section.items > div > div.items > div.item > a > div.name {
	color: #444;
	font-weight: 600;
	word-break: break-word;
	padding: 10px 20px 0 20px;
}

section.items > div > div.items > div.item > a > div.name > div.stock {
	color: #818181;
	font-size: 90%;
	margin-top: .25em;
}

section.items > div > div.items > div.item > a > div.name > div.stock > i {
	font-size: 90%;
	margin-right: .35em;
	position: relative;
	top: -.1em;
}

section.items > div > div.items > div.item > a > div.name > div.stock.in-stock > i {
	color: #4B2;
}

section.items > div > div.items > div.item > a > div.name > div.stock.in-external-stock > i {
	color: #FA0;
}

section.items > div > div.items > div.item > a > div.name > div.stock.not-in-stock > i {
	color: #E30613;
}

section.items > div > div.items > div.item > a > div.bottom {
	text-align: center;
	padding: 5px 10px 10px 10px;
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}

section.items > div > div.items > div.item > a > div.bottom > div.price {
	color: #4B2;
	font-size: 110%;
	font-weight: 900;
	letter-spacing: 1px;
	padding: 10px 0;
	flex: 1 0 50%;
}

section.items > div > div.items > div.item > a > div.bottom > div.button {
	padding: .5em 0;
	flex: 1 0 100%;
}

section.items > div > div.items > div.item > a > div.bottom > div.button > span {
	color: #000;
	background: #EEE;
	border-radius: 2em;
	font-weight: 500;
	text-transform: uppercase;
	white-space: nowrap;
	margin: 0 10px;
	padding: .5em 1.5em .5em 1.5em;
	display: inline-block;
}

section.items > div > div.items > div.item > a:hover > div.bottom > div.button > span {
	color: #FFF;
	background: #818181;
}

section.items > div > div.items > div.item > a > div.bottom > div.button > span > i {
	margin-right: .5em;
}

section.items > div > footer {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 60px;
	max-width: 100%;
}

section.items > div > footer.hidden {
	display: none;
}

section.items > div > footer > div.pagination {
	overflow: auto;
	padding: 0 10px;
	display: inline-flex;
	max-width: 100%;
	position: sticky;
	left: 0;
	scrollbar-color: #CCC #EEE;
	scrollbar-width: thin;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

section.items > div > footer > div.pagination:focus {
	outline: 1px dotted #000;
	box-shadow: none;
	scrollbar-color: #E30613 #EEE;
}

section.items > div > footer > div.pagination > a {
	color: #000;
	background: #FFF;
	border: 1px solid #EEE;
	border-radius: 5px;
	padding: .5em .75em;
	margin: .5em;
	display: inline-block;
	flex: 0 0 auto;
	min-width: 2.5em;
}

section.items > div > footer > div.pagination > a.current {
	background: #EEE;
}

section.items > div > footer > div.pagination > a:focus {
	outline: 1px dotted #000;
	outline-offset: 3px;
	box-shadow: none;
}

section.items > div > footer > div.pagination > a:hover {
	color: #FFF;
	background: #818181;
	border-color: #818181;
}

section.items.stores > div > div.items > div.item {
	flex: 1 0 0;
}

section.items.stores > div > div.items > div.item > a {
	align-items: center;
}

section.items.stores > div > div.items > div.item > a > div.image {
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
	flex: 0 1 auto;
	align-items: start;
}

section.items.stores > div > div.items > div.item > a:hover > div.image img {
	transform: none;
	transition: none;
}

section.items.stores > div > div.items > div.item > a > div.name {
	font-weight: 700;
	text-transform: uppercase;
	flex: 1 0 0;
}

section.items.stores > div > div.items > div.item > a > div.info {
	text-align: center;
	flex: 1 0 auto;
}

section.items.stores > div > div.items > div.item > a > div.info > p {
	font-size: 95%;
	margin: 20px 0;
}

section.items.stores > div > div.items > div.item > a > div.bottom {
	padding-bottom: 20px;
}

section.reviews {
	background: #F7F8FC;
}

section.reviews > div {
	padding: 30px 15px;
}

section.reviews > div > div.reviews {
	display: flex;
	flex-wrap: wrap;
}

section.reviews > div > div.reviews > div.review {
	padding: 4em 15px 15px 15px;
	flex: 1;
}

section.reviews > div > div.reviews > div.review:nth-of-type(2) {
	flex-basis: 22.5%;
}

section.reviews > div > div.reviews > div.review > div {
	background: #FFF;
	border-radius: 15px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	box-shadow: 0 2px 10px -5px rgba(0,0,0,.25);
}

section.reviews > div > div.reviews > div.review > div > div {
	padding: 10px;
}

section.reviews > div > div.reviews > div.review > div > div.icon > i {
	color: #FFB751;
	background: #EAEAEA;
	border: 5px solid #F7F8FC;
	border-radius: 50%;
	font-size: 350%;
	margin-top: -2em;
	padding: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5em;
	height: 2.5em;
}

section.reviews > div > div.reviews > div.review > div > div.icon > i:before {
	position: relative;
	left: .19em;
}

section.reviews > div > div.reviews > div.review > div > div.name {
	margin: 20px 0;
}

section.reviews > div > div.reviews > div.review > div > div.name > h3 {
	font-weight: 600;
}

section.reviews > div > div.reviews > div.review > div > div.content {
	color: #6B6B6B;
	font-size: 90%;
	flex-basis: 100%;
}

section.reviews > div > div.reviews > div.review > div > div.rating {
	color: #0CAE61;
	margin: 20px 0;
}

section.reviews > div > footer {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0 30px;
}

section.reviews > div > footer > span {
	color: #FF9600;
	font-size: 200%;
}

section.contact {
	background: #FFF;
}

section.contact > div {
	padding: 60px 20px 10px 20px;
}

section.contact > div > div {
	border: 1px solid #CED4DA;
	border-radius: 15px;
	overflow: hidden;
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	box-shadow: 0 2px 10px -5px rgba(0,0,0,.25);
}

section.contact > div > div > div:first-child {
	flex: 1 0 0;
}

section.contact > div > div > div:first-child > img {
	vertical-align: middle;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

section.contact > div > div > div:last-child {
	color: #6C6C6C;
	font-size: 90%;
	padding: 30px;
	flex: 0 0 0;
}

section.contact > div > div > div > div.data {
	display: flex;
	flex-wrap: wrap;
}

section.contact > div > div > div > div.data > div {
	padding: 10px;
	display: inline-flex;
}

section.contact > div > div > div > div.data > div > i {
	font-size: 125%;
	vertical-align: middle;
	margin-right: .5em;
}

section.contact > div > div > div > div.data > div > span {
	display: grid;
	grid-template-columns: auto auto;
}

section.contact > div > div > div > div.data > div > span > span {
	white-space: nowrap;
	padding-right: 1em;
	display: inline-block;
}

section.contact > div > div > div > div.data > div > span > span > span {
	margin-right: 1em;
	display: inline-block;
}

section.contact > div > footer {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 30px;
	padding: 0 30px;
}

section.contact > div > footer > span {
	color: #FF9600;
	font-size: 200%;
}

section.newsletter {
	color: #FFF;
	background: #E30613;
}

section.newsletter > div {
	text-align: center;
	padding: 80px 10px;
}

section.newsletter > div > form {
	margin: 0 auto;
	display: inline-block;
}

section.newsletter > div > form > h2 {
	font-size: 175%;
	font-weight: 400;
}

section.newsletter > div > form > h2 > span {
	display: block;
}

section.newsletter > div > form > div {
	color: #000;
	background: #FFF;
	border-radius: 2em;
	margin: 30px 10px 0 10px;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	position: relative;
}

section.newsletter > div > form > div > input {
	color: inherit;
	background: transparent;
	border: none;
	border-top-left-radius: 2em;
	border-bottom-left-radius: 2em;
	text-align: left;
	text-overflow: ellipsis;
	padding: 12px 10px 12px 25px;
	flex: 1;
	width: 100%;
}

section.newsletter > div > form > div > i {
	display: none;
	align-self: center;
}

section.newsletter > div > form > div > button {
	color: #FFF;
	background: #FF9600;
	border: none;
	border-radius: 2em;
	font-weight: 500;
	padding: 12px 25px;
}

section.newsletter > div > form > div > input:focus {
	outline: none;
	box-shadow: none;
}

section.newsletter > div > form > div > input:invalid {
	border-radius: 2em;
	padding-right: 48px;
}

section.newsletter > div > form > div > input:invalid + i {
	color: #E30613;
	font-size: 200%;
	padding-right: 8px;
	display: inline-flex;
	position: absolute;
	right: 0;
}

section.newsletter > div > form > div > input:invalid + i + button {
	display: none;
}

section.footer {
	color: #FFF;
	background: #8B8B8B;
	background-image: linear-gradient(#8B8B8B, #818181);
}

section.footer > div {
	padding: 0 10px;
}

section.footer > div > footer {
	padding-top: 50px;
}

section.newsletter + section.footer > div > footer {
	padding-top: 20px;
}

section.footer > div > footer > div {
	display: flex;
	flex-wrap: wrap;
}

section.footer > div > footer > div > div {
	padding: 10px;
	flex: 1;
}

section.footer > div > footer > div > div:first-child {
	flex: 2;
}

section.footer > div > footer > div > div:first-child > h2 > a {
	display: inline-block;
}

section.footer > div > footer > div > div:first-child > h2 > a:focus {
	outline: 1px dotted #FFF;
	outline-offset: 5px;
}

section.footer > div > footer > div > div:first-child > h2 > a > img {
	border-radius: 5px;
	vertical-align: middle;
	max-width: 100%;
}

section.footer > div > footer > div > div:first-child > div {
	font-size: 90%;
	margin-top: 30px;
	margin-bottom: 25px;
}

section.footer > div > footer > div > div:first-child > div a:focus {
	outline: 1px dotted #FFF;
	box-shadow: none;
}

section.footer > div > footer > div > div > h3 {
	font-size: 110%;
	font-weight: 700;
	text-transform: uppercase;
}

section.footer > div > footer > div > div > ul {
	font-size: 90%;
	list-style: none;
	margin-top: 15px;
	padding: 10px 0 20px 0;
}

section.footer > div > footer > div > div > ul > li {
}

section.footer > div > footer > div > div > ul > li > a {
	margin: 3px -5px;
	display: inline-block;
}

section.footer > div > footer > div > div > ul > li > a:focus {
	outline: 1px dotted #FFF;
}

section.footer > div > footer > div > div > ul > li > a > span {
	padding: 2px 5px;
	display: inline-block;
	position: relative;
}

section.footer > div > footer > div > div > ul > li > a > span:after {
	content: '';
	background: #FFF;
	border-radius: 1px;
	display: block;
	position: absolute;
	left: 4px;
	right: 4px;
	bottom: 1px;
	height: 2px;
	opacity: 0;
	transition: opacity 250ms;
}

section.footer > div > footer > div > div > ul > li > a:hover > span:after {
	opacity: 1;
	transition: opacity 50ms;
}

section.footer > div > div {
	font-size: 90%;
	text-align: right;
	margin: 0 10px;
	padding: 15px 0;
}

section.footer > div > div span {
	display: inline-block;
}

section.footer > div > div a:focus {
	outline: 1px dotted #FFF;
	box-shadow: none;
}

section.footer > div > div a:hover {
	text-decoration: underline;
	text-decoration-color: #FFF;
}

section.breadcrumb {
	background: #FFF;
}

section.breadcrumb > div > nav > ul {
	list-style: none;
	padding: 10px;
}

section.breadcrumb > div > nav > ul > li {
	padding: .325em .2em;
	display: inline-flex;
	position: relative;
}

section.breadcrumb > div > nav > ul > li.has-siblings > a:after {
	content: '';
	border: .4em solid transparent;
	border-top-color: #898989;
	border-bottom: 0;
	margin: -.15em 0 0 -.4em;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	opacity: .5;
}

section.breadcrumb > div > nav > ul > li.has-siblings:hover > a:after {
	opacity: 1;
	z-index: 3;
}

section.breadcrumb > div > nav > ul > li + li:before {
	content: '\f105';
	color: #898989;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	line-height: 150%;
	padding: .325em .42em .325em .1em;
	display: inline-block;
}

section.breadcrumb > div > nav > ul > li > a {
	padding: .325em .44em;
	display: inline-block;
	position: relative;
}

section.breadcrumb > div > nav > ul > li > a:focus {
	outline: 1px dotted #000;
	box-shadow: none;
}

section.breadcrumb > div > nav > ul > li > a[href]:hover {
	text-decoration: underline;
}

section.breadcrumb > div > nav > ul > li > ul {
	background: #F8F8F8;
	border: 1px solid #898989;
	border-radius: 5px;
	white-space: nowrap;
	list-style: none;
	padding: .44em;
	margin: -.425em 0 0 .58em;
	display: none;
	min-width: calc(100% - .5em);
	position: absolute;
	top: 100%;
	z-index: 2;
	box-shadow: 0 2px 15px -10px rgba(0,0,0,.5);
	transform: translate(-1px, -1px);
}

section.breadcrumb > div > nav > ul > li.has-siblings:hover > ul {
	display: block;
}

section.breadcrumb > div > nav > ul > li > ul > li {

}

section.breadcrumb > div > nav > ul > li > ul > li > a {
	padding: .325em .44em;
	display: block;
}

section.breadcrumb > div > nav > ul > li > ul > li > a:focus {
	outline: 1px dotted #000;
	box-shadow: none;
}

section.breadcrumb > div > nav > ul > li > ul > li > a[href]:hover {
	text-decoration: underline;
}

section.page {

}

section.page > div {

}

section.page > div > div.content {
	margin: 30px;
}

section.page > div > header + div.content {
	margin-top: 60px;
}

section.page > div > div.content h1,
section.page > div > div.content h2 {
	font-size: 200%;
	font-weight: 500;
	text-transform: uppercase;
	margin: 40px 0;
}

section.page > div > div.content p {
	margin: 20px 0;
}

section.page > div > div.content div.split {
	display: flex;
	gap: 20px;
}

@media (max-width: 1300px) {

	section.items > div > div.categories > div > div > div {
		flex-basis: 33.333%;
	}

	section.items > div > form > div.filter {
		grid-template-columns: 1fr 1fr 1fr;
	}

}

@media (max-width: 1100px) {

	section.header > div > header > *:first-child {
		flex: 1;
	}

	section.header > div > header > *:last-child {
		flex: 0;
	}

	section.header > div > header > div > ul > li.search-switch > input:not(:checked) {
		display: inline-block;
	}

	section.header > div > header > div > ul > li.search-switch > input + label {
		display: flex;
	}

	section.header > div > header > div > ul > li.search-switch > div {
		margin-top: 10px;
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 100;
	}

	section.header > div > header > input#menu-switch {
		display: inline-block;
	}

	section.header > div > header > input#menu-switch + div > label {
		opacity: 0;
	}

	section.header > div > header > input#menu-switch:checked + div > label {
		background: rgba(0,0,0,.6);
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 1;
		transition: opacity 1s;
	}

	section.header > div > header > input#menu-switch:focus + div > ul > li.menu-switch > label > i > img {
		outline: 1px dotted #000;
		outline-offset: 5px;		
	}

	section.header > div > header > div > ul > li:not(.icon) {
		display: none;
	}

	section.header > div > header > div > ul > li.menu-switch {
		display: inline-block;
	}

	section.header > div > header > input#menu-switch:checked + div > ul {
		background: #FFF;
		margin-top: var(--header-padding);
		margin-left: -10px;
		padding: 10px 10px 15px 10px;
		flex-direction: column;
		align-items: left;
		position: absolute;
		top: 0;
		right: -10px;
		z-index: 99;
		box-shadow: 0 5px 10px 5px rgba(0,0,0,.25);
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li {
		padding: 0 5px;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li,
	section.header > div > header > input#menu-switch:checked + div > ul > li > * > span {
		display: block;
		flex: 1;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.menu-switch {
		align-self: flex-end;
		order: -1;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li:not(.menu-switch) {
		width: 100%;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.icon:not(.menu-switch) > a,
	section.header > div > header > input#menu-switch:checked + div > ul > li.icon:not(.menu-switch) > label:not(:empty) {
		margin: 0;
		padding: 10px 15px;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li:not(.menu-switch) > * > i {
		text-align: center;
		display: inline;
		width: 1.25em;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.icon:not(.menu-switch) > * > i {
		vertical-align: middle;
		margin-right: .45em;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.icon > * > i > img {
		width: 32px;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.icon > *:hover > i:before {
		top: 0;
		text-shadow: none;
		transition: none;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.icon.cart > a > i > img {
		width: 40px;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.icon.cart > a:hover > i:after {
		margin-top: 0;
		transition: none;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.menu-switch > label > i:first-child {
		display: none;
	}

	section.header > div > header > input#menu-switch:checked + div > ul > li.menu-switch > label > i:last-child {
		display: inline-block;
	}

	section.header > div > header > input#menu-switch:checked ~ div > ul > li.search-switch > input + label + label + div {
		display: none;
	}

	section.header > div > header > input#menu-switch:checked ~ div > ul > li.search-switch > input:checked + label + label + div {
		display: block;
		position: fixed;
		top: 50%;
		left: 10px;
		right: 10px;
		transform: translateY(-50%);
	}

	section.header > div > header > input#menu-switch:checked ~ div > ul > li.info {
		display: none;
	}

	section.header > div:last-child {
		overflow-x: auto;
	}

	section.header > div > nav > ul > li:hover > ul {
		display: none;
	}

	section.top-slider {
		background-image: radial-gradient(circle at 65% 45%,#608,#004 25%,#000 70%);
	}

	section.top-slider > div > div.slider > div.slide div.text {
		font-size: 75%;
	}

	section.benefits {
		text-align: center;
	}

	section.benefits > div {
		text-align: left;
		display: inline-grid;
		grid-template-columns: auto auto;
	}

	section.benefits > div > div > div:last-child {
		flex: 1;
	}

	section.reviews > div > div.reviews > div.review {
		flex-basis: 50% !important;
	}

}

@media (max-width: 950px) {

	section.top-slider {
		background-image: radial-gradient(circle at 65% 50%,#608,#004 40%,#000);
	}

	section.top-slider > div > div.slider > div.slide div.text h2 {
		font-size: 200%;
	}

	section.quick-choice > div > div.items > div.item {
		flex-basis: 50%;
	}

	section.quick-choice > div > div.items > div.item > a.choice:hover > div.top {
		transform: perspective(1400px) translateZ(50px) translateY(-5px);
	}

	section.quick-choice > div > div.items > div.item > a.choice:hover > div.top:after {
		transform: translateY(-65%);
	}

	section.items > div > div.categories > div > div > div {
		flex-basis: 50%;
	}

	section.items > div > form > div.filter {
		grid-template-columns: 1fr 1fr;
	}

	section.items > div > div.items > div.item {
		flex-basis: 50%;
	}

	section.items.slider > div > div.items > div.item {
		flex-basis: calc(min(var(--web-width) - 30px, 100%) / 2);
	}

	section.footer > div > footer > div > div:first-child {
		flex-basis: 100%;
	}

	section.footer > div > footer > div > div:first-child > div:last-child > span {
		display: inline-block;
	}

}

@media (max-width: 700px) {

	section.reviews > div {
		padding-left: 10px;
		padding-right: 10px;
	}

	section.reviews > div > div.reviews > div.review {
		padding-left: 10px;
		padding-right: 10px;
		flex-basis: 100% !important;
	}

	section.items > div > form > div.filter {
		grid-template-columns: 1fr;
	}

	section.contact > div > div {
		flex-direction: column;
	}

}

@media (max-width: 600px) {

	section.top > div {
		flex-direction: column;
	}

	section.top > div > div:before {
		background-image: linear-gradient(90deg, #E30613 5%, #FFF, #E30613 95%);
		width: auto;
		height: 1px;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: auto;
	}

	section.top-slider > div > div.slider > div.slide div.text h2 {
		font-size: 150%;
	}

	section.benefits > div {
		grid-template-columns: auto;
	}

	section.benefits > div > div {
		padding-right: 40px;
	}

	section.footer > div > footer > div > div {
		flex-basis: 50%;
	}

}

@media (max-width: 550px) {

	section.header > div > header > div > ul > li:not(.menu-switch) {
		display: none;
	}

	section.header > div > header > div > ul > li.search-switch {
		display: block;
	}

	section.header > div > header > div > ul > li.search-switch > input + label {
		display: none;
	}

	section.header > div > header > input#menu-switch:not(:checked) + div > ul > li.search-switch > input:not(:checked) {
		display: none;
	}

	section.header > div > header > input#menu-switch:checked ~ div > ul > li.search-switch > input + label {
		display: flex;
	}

	section.items > div > div.categories > div > div > div {
		flex-basis: 100%;
	}

	section.newsletter > div > form > h2 > span {
		display: inline;
	}

}

@media (max-width: 500px) {

	section.quick-choice > div > div.items {
		padding-left: 10px;
		padding-right: 10px;
	}

	section.quick-choice > div > div.items > div.item {
		padding-left: 10px;
		padding-right: 10px;
		flex-basis: 100%;
	}

	section.items > div > div.items {
		padding-left: 10px;
		padding-right: 10px;
	}

	section.items > div > div.items > div.item {
		padding-left: 10px;
		padding-right: 10px;
		flex-basis: 100%;
	}

	section.items.slider > span {
		width: 40px;
	}

	section.items.slider > div > div.items > div.item {
		flex-basis: calc(min(var(--web-width) - 20px, 100%));
	}

	section.contact > div > div > div > div.data > div > span {
		grid-template-columns: auto;
	}

	section.contact > div > div > div > div.data > div > span > span {
		white-space: normal;
	}

	section.footer > div > footer > div > div:first-child > div:last-child > span {
		display: inline;
	}

}

@media (max-width: 410px) {

	section.header > div > header > input#menu-switch:not(:checked) ~ div > ul > li.search-switch > input:checked + label + label + div {
		left: -20px;
		right: -20px;
	}

	section.header > div > header > input#menu-switch:checked ~ div > ul > li.search-switch > input:checked + label + label + div {
		left: 0;
		right: 0;
	}

	section.header > div > header > input#menu-switch ~ div > ul > li.search-switch > input:checked + label + label + div > form > div {
		border-radius: 0;
	}

	section.header > div > header > input#menu-switch ~ div > ul > li.search-switch > input:checked + label + label + div > form > div > button {
		border-radius: 15px;
	}

	section.footer > div > footer > div > div {
		flex-basis: 100%;
	}

}