/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}

:root {
	--accent-color: #101014;
	--accent2-color: #ffad00;
	--accent3-color: #00a0e3;

	--bg-color: #FFFFFF;
	--bg-darker-color: #F4F4F4;
	--border-color: #E4E4E4;

	--danger-color: #FF0000;

	--facebook-color: #1774EB;
	--instagram-color: #e1306c;
	--viber-color: #7C529E;

	--product-uv-color: #5c00ff;
	--product-yellow-color: #FFC107;
	--product-green-color: #4caf50;

	--easing: cubic-bezier(0.4, 0.0, 0.2, 1);
}
*, *::before, *::after {
	box-sizing: border-box;
}
*:focus, *:active {
	outline: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
body, html {
	min-height: 100vh;
}
body {
	font: 0.875rem/1.5 Rubik, Roboto, Arial, sans-serif;
	color: var(--accent-color);
	background-color: var(--bg-darker-color);
	overflow-x: hidden;
	letter-spacing: -0.15px;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
::selection {
	background-color: rgba(255, 173, 0, 0.6);
	color: var(--accent-color);
}
::-webkit-scrollbar {
	width: 8px !important;
}
::-webkit-scrollbar-thumb {
	background-color: #FFFFFF !important;
	border: 2px solid #FFFFFF !important;
	border-radius: 8px !important;
}
*:hover::-webkit-scrollbar-thumb {
	background-color: #101014 !important;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #101014 !important;
	border: 2px solid #FFFFFF !important;
}
a, a:visited {
	font-weight: 500;
	text-decoration: none;
	color: var(--accent2-color);
	transition: color 0.3s var(--easing), border-color 0.3s var(--easing), background-color 0.3s var(--easing);
}
a:hover {
	color: var(--accent3-color);
}
b, strong {
	font-weight: 500;
}
small {
	font-size: 0.875rem;
}
big {
	font-size: 1.25em;
}
abbr {
	cursor: help;
}
cite {
	color: rgba(0, 0, 0, 0.6);
}
mark {
	background-color: #FFE082;
	color: rgba(0, 0, 0, 0.9);
	font-size: 0.875em;
	padding: 0.1rem 0.5rem;
	border-radius: 0.25rem;
}
code, var, kbd, pre, samp {
	font-family: Monaco, Consolas, "Courier New", Courier, monospace;
	font-size: 0.875em;
	padding: 0.1rem 0.5rem;
	margin: 0px 0.1rem;
	font-weight: bold;
}
code, var {
	color: rgba(0, 0, 0, 0.5);
	background-color: var(--border-color);
	line-height: normal;
	display: inline-block;
	font-style: normal;
	border-radius: 0.25rem;
}
code {
	color: var(--accent-color);
}
kbd {
	background-color: rgba(0, 0, 0, 0.9);
	color: var(--bg-color);
	border-radius: 0.25rem;
}
samp {
	background-color: #0152af;
	color: rgba(255, 255, 255, 0.9);
	border-radius: 0.25rem;
}
pre {
	font-weight: normal;
	background-color: var(--accent-color);
	color: rgba(255, 255, 255, 0.7);
	max-width: 100%;
	tab-size: 4;
	line-height: 1.75;
	white-space: pre-wrap;
	word-wrap: break-word;
	padding: 1.5rem 2.5rem;
	border-radius: 0.25rem;
}
pre code {
	color: inherit;
	background-color: transparent;
	border-radius: 0px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	font-size: 1em;
}
blockquote {
	padding: 1rem 1.5rem;
	border-left: 0.25rem solid var(--border-color);
}
blockquote cite {
	font-weight: 500;
	font-style: normal;
	color: var(--accent-color);
}
ol, ul {
	padding: 0px 0px 0px 1.5rem;
}
ol li, ul li {
	padding-left: 0.5rem;
}
li + li {
	margin-top: 0.5rem;
}
dl dl, ol ol, ul ul, ol ul, ul ol {
	margin-bottom: 0px;
}
dt {
	font-weight: 500;
}
dd {
	margin-left: 2rem;
	position: relative;
}
dd::before {
	content: "- ";
	margin-left: -1rem;
	font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin: 2.25rem 0px 1.5rem;
	padding: 0px;
	font-family: Roboto, Arial, sans-serif;
}
h1 {
	font-size: 2.5rem;
	line-height: 1.25;
}
h2 {
	font-size: 2rem;
	line-height: 1.25;
}
h3 {
	font-size: 1.75rem;
	line-height: 1.25;
}
h4 {
	font-size: 1.5rem;
	line-height: 1.25;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}
h1 + h2, h2 + h3, h3 + h4, h4 + h5, h5 + h6 {
	margin-top: 1.5rem;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: currentColor;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0px;
}
hr {
	box-sizing: content-box;
	overflow: visible;
	margin: 2.125rem auto;
	border: none;
	max-width: 50%;
	height: 0.125rem;
	background-color: var(--border-color);
}
figure {
	margin: 0px 0px 1.5rem;
}
figure figcaption {
	text-align: center;
	margin-top: 1rem;
	color: #808080;
}
img {
	font-size: 0px;
	vertical-align: middle;
	border-style: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
img, iframe {
	display: block;
	border: none;
	margin: auto;
	max-width: 100%;
	
}
svg {
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
	flex: 0 0 1.5rem;
	fill: currentColor;
	transition: fill 0.3s var(--easing);
}
svg[width][height] {
	width: auto;
	height: auto;
}
table {
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--border-color);
	border-collapse: collapse;
}
table caption {
	text-align: inherit;
	font-weight: 500;
}
table th {
	font-weight: 500;
}
table th,
table td {
	text-align: inherit;
	vertical-align: top;
	padding: 0.5rem 1rem;
	border: 1px solid var(--border-color);
}
p:last-child,
p:last-of-type {
	margin-bottom: 0px;
}
p, ol, ul, dl, address, blockquote, pre, table, table caption {
	margin: 0px 0px 1.5rem;
}

#wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	flex: 0 0 100%;
	margin: 0px auto;
	max-width: 76rem;
	background-color: var(--bg-color);
	box-shadow: 0px 1rem 3rem rgb(0, 0, 0, 0.03);
}
.header {
	width: 17rem;
	position: fixed;
	top: 0rem;
	bottom: 0rem;
	z-index: 10;
	overflow: hidden;
	overflow-y: auto;
}
.header .container {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: right;
	padding: 0px 1.5rem;
	margin: 1.5rem 0px;
	min-height: calc(100% - 3rem);
	border-right: 1px solid var(--border-color);
}
.header .logo {
	font-size: 1.5rem;
	color: var(--accent-color);
	display: flex;
	align-items: center;
}
.header .logo a {
	display: inline-flex;
}
.header .logo img {
	width: 80%;
	height: auto;
	margin: 0px auto;
}
.header .navigation {
	padding: 2rem 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: auto 0px;
}
.header .navigation ul {
	display: flex;
	flex-direction: column;
	padding: 0px;
	margin: 0px;
	width: 100%;
	text-transform: uppercase;
}
.header .navigation ul li {
	padding: 0px;
	margin: 0px;
	list-style: none;
}
.header .navigation ul li + li {
	border-top: 1px dashed var(--border-color);
}
.header .navigation ul li a {
	color: var(--accent-color);
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0.5rem 0px;
}
.header .navigation ul li a:hover {
	color: var(--accent3-color);
}
.header .navigation ul li a span {
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-color);
	border-radius: 10rem;
	margin-left: 1rem;
	width: 1.75rem;
	height: 1.75rem;
	transition: box-shadow 0.3s var(--easing), background-color 0.3s var(--easing);
	box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.header .navigation ul li:hover a span {
	background-color: var(--accent3-color);
}
.header .navigation ul li a svg {
	width: 1.125rem;
	height: 1.125rem;
}
.header .navigation .is-youtube {
	color: var(--danger-color);
}
.header .navigation .is-youtube span {
	background-color: var(--danger-color);
}
.header .info {
	margin-top: auto;
	text-align: right;
	width: 100%;
}
.header .social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
	margin-top: 1.5rem;
}
.header .social a {
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-color);
	border-radius: 10rem;
	width: 1.75rem;
	height: 1.75rem;
	transition: box-shadow 0.3s var(--easing), background-color 0.3s var(--easing);
	box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.header .social a:hover {
	background-color: var(--accent3-color);
}
.header .social a.facebook:hover {
	background-color: var(--facebook-color);
}
.header .social a.instagram:hover {
	background-color: var(--instagram-color);
}
.header .social a.viber:hover {
	background-color: var(--viber-color);
}
.header .social a + a {
	margin-left: 0.5rem;
}
.header .social svg {
	width: 1.125rem;
	height: 1.125rem;
	color: var(--bg-color);
}
.header .contacts a {
	font-size: 1rem;
	display: inline-block;
	margin-bottom: 0.5rem;
}
.header .is-cart [data-counter]::before,
.header-nav .is-cart [data-counter]::before {
	content: attr(data-counter);
	color: var(--bg-color);
	background-color: var(--accent3-color);
	border-radius: 10rem;
	font-size: 0.75rem;
	min-width: 1.125rem;
	height: 1.125rem;
	padding: 0px 0.25rem;
	line-height: normal;
	font-weight: 500;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 1;
	right: -0.375rem;
	bottom: 0.25rem;
	transition: box-shadow 0.3s var(--easing);
	box-shadow: 0px 0px 0px 0.125rem var(--bg-color);
}
.header .is-cart [data-counter="0"]::before,
.header-nav .is-cart [data-counter="0"]::before {
	background-color: var(--accent2-color);
	color: var(--bg-color);
}
.header-nav {
	display: none;
}

.main {
	padding: 1.5rem;
	margin-left: 17rem;
	flex-grow: 1;
}
.empty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
	color: rgba(0, 0, 0, 0.6);
	font-size: 1rem;
	max-width: 40rem;
	margin: 0px auto;
}
.empty h5 {
	color: var(--accent-color);
	margin: 0px 0px 0.5rem 0px;
}
.page-header {
	font-size: 2.75rem;
	border-bottom: 1px dashed var(--border-color);
	padding: 2.5rem 0px;
	margin-bottom: 1.5rem;
}
.page-content {
	font-size: 1rem;
}
.footer {
	margin: 0px 1.5rem 0px 18.5rem;
	font-weight: 500;
	padding: 1.5rem 0px;
	position: relative;
	text-transform: uppercase;
	border-top: 1px dashed var(--border-color);
}
.footer a {
	color: var(--accent-color);
	font-weight: 500;
}
.footer a:hover {
	color: var(--accent3-color);
}
.footer a + a {
	margin-left: 1rem;
}
.footer .about {
	margin-bottom: 1.5rem;
}
.footer .info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer .copyright {
	display: flex;
	align-items: center;
}
.footer .copyright svg {
	margin-right: 0.5rem;
}

.home-block {
	margin-bottom: 1.5rem;
}

.products-items {
	display: grid;
	grid-gap: 1px;
	grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
	padding: 0px;
	margin: 0px;
	align-content: flex-start;
}
.products-items li {
	margin: 0px;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	list-style: none;
	position: relative;
	background-color: var(--bg-color);
	outline: 1px solid var(--border-color);
}
.products-items li::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-shadow: 0px 1rem 3rem rgb(0, 0, 0, 0.2), 0px 0px 0px 2px var(--accent-color);
	border-radius: 0.5rem;
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s var(--easing);
}
.products-items li:hover::after {
	opacity: 1;
}
.products-items li a {
	color: var(--accent-color);
}
.products-items li .picture {
	display: block;
	position: relative;
	z-index: 0;
}
.products-items li .picture::after {
	content: "";
	padding-bottom: 100%;
	display: block;
}
.products-items li .picture img {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
	pointer-events: none;
}
.products-items li .picture svg {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	width: 50%;
	height: 50%;
	pointer-events: none;
	opacity: 0.1;
}
.products-items li .info {
	padding: 1rem 3.5rem 0.75rem 0.5rem;
	text-align: left;
	display: flex;
	flex-direction: column;
	min-height: 4.5rem;
}
.products-items li .title {
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--accent-color);
	font-weight: 500;
	display: block;
}
.products-items li .tag {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	color: var(--accent3-color);
	margin-top: 0.25rem;
}
.products-items li .view {
	background-color: var(--accent2-color);
	color: var(--bg-color);
	width: 2.75rem;
	height: 2.75rem;
	flex: 0 0 2.75rem;
	border-radius: 10rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	transition: color 0.3s var(--easing), background-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
	box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.products-items li .view:hover {
	background-color: var(--accent-color);
}
.products-items li .view svg {
	width: 1.5rem;
	height: 1.5rem;
}
.product .register-interest h6 {
	margin: 0px 0px 0.5rem 0px;
}
.product .register-interest {
	margin-bottom: 2rem;
}
.product .main-info {
	display: flex;
	border-bottom: 1px dashed var(--border-color);
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
}
.product .main-info > div:nth-child(1) {
	flex: 0 0 60%;
	width: 60%;
}
.product .main-info > div:nth-child(2) {
	flex: 0 0 calc(40% - 2rem);
	width: calc(40% - 2rem);
	margin-left: 2rem;
}
.product .gallery {
	position: relative;
}
.product .picture {
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.25rem;
}
.product .picture::before {
	content: "";
	display: block;
	padding-bottom: 100%;
}
.product .picture > svg {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	width: 50%;
	height: 50%;
	pointer-events: none;
	opacity: 0.1;
}
.product .zoom-picture {
	background-color: var(--accent-color);
	position: absolute;
	z-index: 1;
	top: 1rem;
	right: 1rem;
	font-weight: 500;
	border-radius: 10rem;
	padding: 0.25rem 0.75rem;
	color: var(--bg-color);
	font-size: 0.75rem;
	box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.product .zoom-picture:hover {
	background-color: var(--accent3-color);
}
.product .details h1 {
	font-size: 1.5rem;
	margin: 0px 0px 1rem 0px;
	text-transform: uppercase;
}
.product .details .short-description {
	margin-bottom: 2rem;
	font-size: 1rem;
}
.product .specs {
	border: 1px dashed #DDDDDD;
	border-width: 1px 0px;
	padding: 1.5rem 0px;
	margin: 1.5rem 0px;
}
.product .specs .item {
	display: flex;
	align-items: center;
}
.product .specs .item + .item {
	margin-top: 1rem;
}
.product .specs .item > div:nth-child(1) {
	flex: 0 0 40%;
}
.product .specs .item > div:nth-child(2) {
	flex: 0 0 60%;
}
.product .specs .item > div:nth-child(1) {
	font-weight: 500;
}
.product .specs .item > div + div {
	padding-left: 0.5rem;
}
.product .specs .price {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--accent3-color);
}
.product .select-container {
	display: flex;
	flex-wrap: wrap;
	margin: -0.25rem;
}
.product .select-container a {
	position: relative;
	display: inline-flex;
	text-align: center;
	align-items: center;
	padding: 0px 0.75rem;
	border: 1px solid var(--border-color);
	min-width: 2.25rem;
	height: 2.25rem;
	margin: 0.25rem;
	color: var(--accent-color);
	font-weight: 500;
	border-radius: 0.25rem;
	transition: border-color 0.3s var(--easing), box-shadow 0.3s var(--easing), transform 0.3s var(--easing);
}
.product .select-container a:hover {
	border-color: var(--bg-color);
	box-shadow: 0px 0px 0px 2px var(--accent-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.product .select-container a.is-active,
.product .select-container a.is-active:hover {
	border-color: var(--bg-color);
	box-shadow: 0px 0px 0px 2px var(--accent2-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.product .select-container a::before,
.product .select-container a::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: -1px;
	bottom: -1px;
	display: block;
	border: 0px solid transparent;
	border-left: 0px solid transparent;
	border-bottom: 0px solid transparent;
	transition: border 0.3s var(--easing);
	border-radius: 0px 0px 0px 0.125rem;
}
.product .select-container a.is-active::before {
	z-index: 2;
	border-width: 5px;
	border-left-color: var(--accent2-color);
	border-bottom-color: var(--accent2-color);
}
.product .select-container a.is-active::after {
	border-width: 0.5rem;
	border-left-color: var(--bg-color);
	border-bottom-color: var(--bg-color);
}
.product .select-container.colors a {
	padding: 0.25rem;
}
.product .select-container.colors a[data-available="0"] {
	pointer-events: none;
	opacity: 0.2;
}
.product .select-container.colors span {
	font-size: 0px;
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 0.125rem;
}
.product .select-container.colors .uv::before {
	content: "";
	position: absolute;
	bottom: -0.25rem;
	right: -0.25rem;
	background-color: var(--product-uv-color);
	border: 0.125rem solid var(--bg-color);
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 0.125rem;
}
.product .select-container.colors span.ultraviolet {
	background-color: #8A2BE2;
}
.product .select-container.colors span.lox {
	background-color: #8B008B;
}
.product .select-container.colors span.greenmilk {
	background-color: #15f729;
}
.product .select-container.colors span.limeschartrez {
	background-color: #7FFF00;
}
.product .select-container.colors span.orange {
	background-color: #FF8C00;
}
.product .select-container.colors span.cola {
	background-color: #8B4513;
}
.product .select-container.colors span.sand {
	background-color: #F0E68C;
}
.product .select-container.colors span.oilred {
	background-color: #006400;
}
.product .select-container.colors span.white {
	background-color: #F0FFF0;
}
.product .select-container.colors span.blue {
	background-color: #0000FF;
}
.product .select-container.colors span.indigo {
	background-color: #800080;
}

.product .select-container.sizes > div:not(.is-active) {
	display: none;
}
.product .in-cart {
	text-align: center;
	font-weight: 500;
	display: none;
}
.product .add-to-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
}
.product .add-to-cart .btn {
	width: 100%;
	height: 3rem;
	font-size: 1rem;
}

.cart .products-list {
	padding: 0px;
	margin: 0px;
	list-style: none;
	border: 1px solid var(--border-color);
	display: table;
	width: 100%;
	border-collapse: collapse;
}
.cart .products-list li {
	padding: 0px;
	margin: 0px;
	display: table-row;
	position: relative;
}
.cart .products-list li > div {
	display: table-cell;
	vertical-align: middle;
	padding: 0.5rem 1rem;
	border-top: 1px solid var(--border-color);
}
.cart .products-list li:first-child div {
	font-weight: 400;
	color: var(--accent-color);
	font-size: 0.875rem;
}
.cart .products-list .preview {
	position: relative;
	overflow: hidden;
	padding: 0.5rem 0px 0.5rem 1rem;
	text-align: center;
}
.cart .products-list .picture {
	position: relative;
	width: 3.5rem;
	background-color: rgba(0, 0, 0, 0.06);
	border-radius: 0.25rem;
}
.cart .products-list .picture::after {
	content: "";
	padding-bottom: 100%;
	display: block;
}
.cart .products-list .picture img {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
	pointer-events: none;
	border-radius: 0.25rem;
}
.cart .products-list .picture svg {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 60%;
	pointer-events: none;
	opacity: 0.2;
}
.cart .products-list .title {
	width: 80%;
}
.cart .products-list .title span {
	font-size: 1rem;
	display: block;
	font-weight: 500;
}
.cart .products-list .label {
	display: none;
}
.cart .products-list .price {
	color: var(--accent3-color);
	min-width: 7rem;
}
.cart .products-list .size,
.cart .products-list .price {
	font-weight: 500;
}
.cart .products-list .color {
	margin-top: 0.25rem;
	display: flex;
	align-items: center;
}
.cart .products-list .color span {
	display: inline-block;
	font-size: 0px;
	width: 0.875rem;
	height: 0.875rem;
	border-radius: 0.125rem;
	margin-right: 0.5rem;
	position: relative;
	background-color: #DDDDDD;
}
.cart .products-list .color span.ultraviolet {
	background-color: #4B0082;
}
.cart .products-list .color span.lox {
	background-color: #8B008B;
}
.cart .products-list .color span.greenmilk {
	background-color: #15f729;
}
.cart .products-list .color span.limeschartrez {
	background-color: #7FFF00;
}
.cart .products-list .color span.orange {
	background-color: #FF8C00;
}
.cart .products-list .color span.cola {
	background-color: #2c160b;
}
.cart .products-list .color span.sand {
	background-color: #b07330;
}
.cart .products-list .color span.oilred {
	background-color: #006400;
}
.cart .products-list .color span.uv::before {
	content: "";
	position: absolute;
	bottom: -0.25rem;
	right: -0.25rem;
	background-color: var(--product-uv-color);
	border: 0.125rem solid var(--bg-color);
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 0.125rem;
}
.cart .products-list a {
	color: var(--accent-color);
}
.cart .products-list a:hover {
	color: var(--accent3-color);
}
.cart .products-list .actions {
	margin-left: auto;
	flex: 0.5;
	text-align: center;
}
.cart .products-list .btn.cart-remove-action {
	background-color: var(--danger-color);
	color: var(--bg-color);
	width: 1.75rem;
	height: 1.75rem;
	min-width: 1.75rem;
}
.cart .products-list .btn.cart-remove-action svg {
	width: 1.125rem;
	height: 1.125rem;
}
.cart .products-list .btn.cart-remove-action:hover {
	background-color: var(--accent3-color);
}
.cart .total {
	text-align: right;
	padding: 0.5rem 1rem;
	border: 1px solid var(--border-color);
	margin-top: -1px;
	font-weight: 500;
	font-size: 1rem;
}
.cart .cart-address {
	flex: 0 0 50%;
}
.media-list {
	display: flex;
	flex-wrap: wrap;
	margin: -0.25rem;
}
.media-list a {
	flex: 0 0 calc(20% - 0.5rem);
	margin: 0.25rem;
	padding: 0.25rem;
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.25rem;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.media-list a:hover {
	border-color: var(--bg-color);
	box-shadow: 0px 0px 0px 2px var(--accent-color), 0px 0.125rem 0.5rem rgba(0, 0, 0, 0.16);
}
.media-list a::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
}
.media-list a img {
	position: absolute;
	top: 0.25rem;
	right: 0.25rem;
	bottom: 0.25rem;
	left: 0.25rem;
	max-width: calc(100% - 0.5rem);
	height: calc(100% - 0.5rem);
	object-fit: cover;
}
.comments-list {
	padding: 0px;
	margin: 0px;
	list-style: none;
}
.comments-list li {
	padding: 0px;
	margin: 0px;
	display: flex;
	position: relative;
}
.comments-list li + li {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--border-color);
}
.comments-list .avatar {
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-color);
	border-radius: 10rem;
	width: 2.25rem;
	height: 2.25rem;
	flex: 0 0 2.25rem;
	margin-right: 1rem;
}
.comments-list .avatar svg {
	width: 1.5rem;
	height: 1.5rem;
}
.comments-list .comment-header {
	font-weight: 500;
	margin-bottom: 0.25rem;
	display: flex;
	align-items: center;
	line-height: 1;
}
.comments-list .comment-header time {
	font-size: 0.875rem;
	color: rgba(0, 0, 0, 0.4);
	margin-left: 0.5rem;
	padding-left: 0.5rem;
	border-left: 1px solid var(--border-color);
}
.comments-list .is-admin {
	padding-left: 1rem;
}
.comments-list .is-admin .avatar {
	background-color: var(--accent3-color);
}
.comments-list .media-list {
	margin-top: 1rem;
}
.comments-list .media-list a {
	flex: 0 0 calc(5rem - 0.5rem);
}
.notify {
	position: fixed;
	min-height: 3rem;
	max-width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--accent-color);
	color: var(--bg-color);
	border-radius: 0px 0px 0.5rem 0.5rem;
	z-index: 150;
	top: 0px;
	left: 50%;
	padding: 0px 2rem;
	box-shadow: 0px 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
	transform: translate3D(-50%, -200%, 0px);
	transition: transform 0.3s var(--easing);
}
.notify.is-active {
	transform: translate3D(-50%, 0px, 0px);
}
.notify svg {
	margin: 0px 0.75rem 0px -0.75rem;
}
.tabs .tabs-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	margin: 0px;
}
.tabs .tabs-nav + .tabs-content {
	margin-top: 2rem;
	font-size: 1rem;
}
.tabs .tabs-nav li {
	padding: 0.5rem 1rem;
	margin: 0px;
	list-style: none;
	font-weight: 500;
	min-width: 8rem;
	text-align: center;
	cursor: pointer;
	flex: 1;
	text-transform: uppercase;
	border-radius: 0.25rem;
	border: 1px solid var(--border-color);
	transition: border-color 0.3s var(--easing), box-shadow 0.3s var(--easing), transform 0.3s var(--easing);
}
.tabs .tabs-nav li:hover {
	border-color: var(--bg-color);
	box-shadow: 0px 0px 0px 2px var(--accent-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.tabs .tabs-nav li + li {
	margin-left: 0.5rem;
}
.tabs .tabs-nav li a {
	color: var(--accent-color);
	display: block;
}
.tabs .tabs-nav li.is-active {
	border-color: var(--bg-color);
	box-shadow: 0px 0px 0px 2px var(--accent2-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
	position: relative;
}
.tabs .tabs-nav li::before {
	content: "";
	position: absolute;
	z-index: 1;
	left: -1px;
	bottom: -1px;
	display: block;
	border: 5px solid transparent;
	border-left: 5px solid transparent;
	border-bottom: 5px solid transparent;
	transition: border 0.3s var(--easing);
	border-radius: 0px 0px 0px 0.125rem;
}
.tabs .tabs-nav li.is-active::before {
	border-left-color: var(--accent2-color);
	border-bottom-color: var(--accent2-color);
}
.tabs .tabs-content > div {
	scroll-margin-top: 6rem;
}
.tabs .tabs-content > div:not(.is-active) {
	display: none;
}
.validate-error {
	margin-bottom: 1rem;
}
.form-control .validate-error {
	margin-bottom: 0.25rem;
}
.validate-error span {
	background-color: var(--danger-color);
	color: var(--bg-color);
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	font-weight: 500;
	font-size: 0.875em;
	display: inline-block;
}
.field-error {
	border-color: var(--danger-color) !important;
}
.field-error:focus {
	border-color: var(--danger-color) !important;
	box-shadow: 0px 0px 0px 1px var(--danger-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.description {
	font-size: 0.8125rem;
	margin: 0.5rem 0px 0px 0px;
	color: rgba(0, 0, 0, 0.6);
	font-weight: 500;
}
.description .is-info {
	color: var(--accent3-color);
	font-weight: 500;
}
.description .is-warning {
	color: var(--accent2-color);
	font-weight: 500;
}
a.btn,
.btn {
	display: inline-flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	color: var(--bg-color);
	font-weight: 500;
	border: none;
	text-align: center;
	font-size: 0.875rem;
	text-transform: uppercase;
	line-height: normal;
	min-width: 3rem;
	height: 3rem;
	white-space: nowrap;
	padding: 0px 2rem;
	position: relative;
	user-select: none;
	cursor: pointer;
	border-radius: 10rem;
	transition: color 0.3s var(--easing), background-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
	box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.btn:hover,
.btn:focus,
.btn:active {
	color: var(--bg-color);
	background-color: var(--accent3-color);
}
.btn span:first-of-type {
	display: block;
}
.btn span:last-of-type {
	display: none;
}
.btn.is-toggled span:first-of-type {
	display: none;
}
.btn.is-toggled span:last-of-type {
	display: block;
}
.btn.is-primary {
	background-color: var(--accent2-color);
	box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.btn.is-primary:hover,
.btn.is-primary:focus,
.btn.is-primary:active {
	background-color: var(--accent3-color);
}
.btn.with-icon {
	padding: 0px 2rem 0px 3.5rem;
}
.btn.with-icon > svg {
	flex: 0 0 1.75rem;
	margin: 0px;
	background-color: var(--bg-color);
	color: var(--accent-color);
	border-radius: 10rem;
	padding: 0.25rem;
	position: absolute;
	left: 0.75rem;
	width: 1.75rem;
	height: 1.75rem;
}
.btn.with-only-icon {
	padding: 0px;
}
.btn.with-spinner::before {
	content: "";
	flex: 0 0 1.75rem;
	margin: 0px;
	border-radius: 10rem;
	padding: 0.25rem;
	position: absolute;
	left: 1rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	border: 0.125rem solid rgba(0, 0, 0, 0.2);
	border-top-color: var(--accent-color);
	background-color: var(--bg-color);
	box-shadow: 0px 0px 0px 0.25rem var(--bg-color);
	animation: spinner 0.6s linear infinite;
}
.btn.with-spinner svg {
	opacity: 0;
}
.btn.is-primary.with-spinner::before,
.btn.is-secondary.with-spinner::before {
	background-color: var(--accent-color);
	box-shadow: 0px 0px 0px 0.25rem var(--accent-color);
	border-color:rgba(255, 255, 255, 0.2);
	border-top-color: var(--bg-color);
}
@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}
[disabled],
.disabled {
	opacity: 0.4;
	pointer-events: none;
}
.disabled * {
	pointer-events: none;
}
form {
	width: 100%;
}
form .form-control {
	display: flex;
}
form .form-control + .form-control {
	margin-top: 1.5rem;
}
form .form-control > div {
	flex: 1;
}
form .form-control > div + div {
	margin-left: 1rem;
}
input,
select,
textarea,
button,
label {
	font: inherit;
	outline: none;
	text-decoration: none;
}
label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}
label[for] {
	cursor: pointer;
}
label span {
	color: var(--danger-color);
}
input,
select,
textarea {
	line-height: 1;
	padding: 0px 0.75rem;
	height: 2.375rem;
	display: block;
	background-color: var(--bg-color);
	border: 1px solid var(--border-color);
	width: 100%;
	outline: none;
	position: relative;
	box-sizing: border-box;
	border-radius: 0.25rem;
	transition: border-color 0.3s var(--easing), background-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
input:focus,
select:focus,
textarea:focus {
	border-color: var(--bg-color) !important;
	box-shadow: 0px 0px 0px 2px var(--accent2-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
textarea {
	padding: 0.75rem 1rem;
	height: 7rem;
	line-height: 1.5;
	resize: vertical;
}
select {
	padding-right: 2.5rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='rgba(0, 0, 0, 0.3)' viewBox='0 0 24 24' width='24' height='24'%3e%3cpath d='M5.707,10.707l5.586,5.586c0.391,0.391,1.024,0.391,1.414,0l5.586-5.586C18.923,10.077,18.477,9,17.586,9H6.414 C5.523,9,5.077,10.077,5.707,10.707z'%3e%3c/path%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem top 50%;
	background-size: 1rem 1rem;
}
input[readonly] {
	pointer-events: none;
}
.number-input {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.375rem;
	border: 1px solid var(--border-color);
	position: relative;
	border-radius: 0.25rem;
}
.number-input::after {
	content: "";
	border-left: 1px solid var(--border-color);
	display: block;
	height: 100%;
	position: absolute;
	left: 2.375rem;
	z-index: 0;
}
.number-input::before {
	content: "";
	border-right: 1px solid var(--border-color);
	display: block;
	height: 100%;
	position: absolute;
	right: 2.375rem;
	z-index: 0;
}
.number-input input {
	text-align: center;
	padding: 0px;
	width: 3rem;
	height: 100%;
	line-height: inherit;
	background: none;
	border: none;
	margin: 0px;
	font-weight: 500;
	position: relative;
	z-index: 2;
	border: 1px solid transparent;
	-moz-appearance: textfield;
}
.number-input input:focus {
	background-color: var(--bg-color);
}
.number-input span {
	user-select: none;
	transition: background-color 0.3s var(--easing);
	width: 2.375rem;
	height: 2.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	z-index: 1;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	transition: border-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.number-input span:hover {
	border-color: var(--bg-color);
	box-shadow: 0px 0px 0px 2px var(--accent-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.number-input span > svg {
	width: 1rem;
	height: 1rem;
}
.number-input input::-webkit-inner-spin-button,
.number-input input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0px;
}


.carousel {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border-color);
	position: relative;
}
.carousel .counter {
	background-color: var(--accent-color);
	position: absolute;
	z-index: 1;
	top: 1rem;
	left: 1rem;
	font-weight: 500;
	border-radius: 10rem;
	padding: 0.25rem 0.75rem;
	color: var(--bg-color);
	font-size: 0.75rem;
	box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.carousel .counter::before {
	content: attr(data-current);
	display: inline;
}
.carousel .carousel-inner {
	display: flex;
	width: 100%;
	height: 100%;
	user-select: none;
}
.carousel .carousel-main {
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: relative;
	visibility: hidden;
}
.carousel .carousel-main.is-draggable {
	cursor: move;
	cursor: grab;
}
.carousel .carousel-main .carousel-slide {
	position: relative;
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 1rem;
}
.carousel .carousel-main .carousel-slide::before {
	content: "";
	float: left;
	padding-top: 100%;
}
.carousel .carousel-main .carousel-slide img {
	border-radius: 0.25rem;
}
.carousel .carousel-btn {
	position: absolute;
	top: 50%;
	margin-top: -1.4375rem;
	width: 2.875rem;
	height: 2.875rem;
	border-radius: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	color: var(--bg-color);
	z-index: 2;
	transition: transform 0.3s var(--easing), color 0.3s var(--easing), background-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
	box-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.carousel .carousel-btn:hover {
	background-color: var(--accent3-color);
	color: var(--bg-color);
}
.carousel .carousel-btn.prev--action {
	left: 1rem;
	transform: translateX(-200%);
}
.carousel .carousel-btn.next--action {
	right: 1rem;
	transform: translateX(200%);
}
.carousel:hover .carousel-btn {
	transform: translateX(0px);
}
.carousel .carousel-btn svg {
	width: 1.5rem;
	height: 1.5rem;
	flex: 0 0 1.5rem;
}
.carousel .carousel-thumbnails {
	overflow: hidden;
	display: flex;
	width: 100%;
	flex: 0 0 7rem;
	height: 7rem;
	padding: 0.5rem 1.5rem 1.5rem 1.5rem;
	visibility: hidden;
}
.carousel .carousel-thumbnails .carousel-slide {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 5.5rem;
	width: 5.5rem;
	height: 5rem;
	cursor: pointer;
}
.carousel .carousel-thumbnails .carousel-slide-inner {
	padding: 0.25rem;
	border: 1px solid #DDDDDD;
	background-color: #FFFFFF;
	border-radius: 0.25rem;
	margin: 0px 0.25rem;
	width: 5rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.carousel .carousel-thumbnails .carousel-slide-inner:hover {
	border-color: var(--bg-color);
	box-shadow: 0px 0px 0px 2px var(--accent-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.carousel .carousel-thumbnails .carousel-slide.is-selected .carousel-slide-inner {
	border-color: var(--bg-color);
	pointer-events: none;
	box-shadow: 0px 0px 0px 2px var(--accent2-color), 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
.carousel .carousel-thumbnails .carousel-slide .carousel-slide-inner::before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0.25rem;
	bottom: 0px;
	display: block;
	border: 5px solid transparent;
	border-left: 5px solid transparent;
	border-bottom: 5px solid transparent;
	transition: border 0.3s var(--easing);
	border-radius: 0px 0px 0px 0.125rem;
}
.carousel .carousel-thumbnails .carousel-slide.is-selected .carousel-slide-inner::before {
	border-left-color: var(--accent2-color);
	border-bottom-color: var(--accent2-color);
}

.home-carousel {
	min-height: 24rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--border-color);
}
.home-carousel .carousel-inner {
	align-items: center;
}
.home-carousel .carousel-main .carousel-slide {
	padding: 1.5rem;
}
.home-carousel .carousel-main .carousel-slide::before {
	display: none;
}
.home-carousel .carousel-slide-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	grid-gap: 3rem;
}
.home-carousel .carousel-slide-content h3{
	margin: 0 0 0.5rem;
	font-size: 2rem;
	text-transform: uppercase;
}
.home-carousel .carousel-slide-content .price {
	margin: 0 0 0.5rem;
}
.home-carousel .carousel-slide-content .new-price {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--danger-color);
}
.home-carousel .carousel-slide-content .old-price {
	font-size: 0.875rem;
	color: #888888;
	text-decoration: line-through;
	margin-left: 0.25rem;
}

.cookie-accept {
	position: fixed;
	background-color: var(--accent-color);
	color: #FFFFFF;
	border-radius: 0.5rem;
	z-index: 100;
	width: 30rem;
	bottom: 1rem;
	right: 1rem;
	padding: 1rem 1.5rem;
	overflow: hidden;
	box-shadow: 0px 1rem 3rem rgb(0, 0, 0, 0.06);
}
.cookie-accept .btn {
	margin-top: 1rem;
}
.cookie-accept > svg {
	width: 8rem;
	height: 8rem;
	position: absolute;
	opacity: 0.16;
	left: -3rem;
	top: -3px;
}

@media screen and (max-width: 1024px) {
	.product .main-info {
		display: block;
	}
	.product .main-info > div:nth-child(1),
	.product .main-info > div:nth-child(2) {
		width: 100%;
	}
	.product .main-info > div:nth-child(2) {
		margin: 2rem 0 0 0;
	}
}

@media screen and (max-width: 812px) {
	h3 {
		font-size: 1.5rem;
	}
	#wrap {
		padding-top: 3.5rem;
		background-color: var(--accent-color);
	}
	.header {
		z-index: -100;
		left: 0px;
		visibility: hidden;
		transform: translateX(-150%);
		background-color: var(--bg-color);
		border: none;
		margin: 0.5rem;
		height: calc(100vh - 1rem);
		border-radius: 0.75rem;
		min-width: 16rem;
		width: calc(100vw - 5rem);
		max-width: 20rem;
		box-shadow: 0px 1rem 3rem rgb(0, 0, 0, 0.06);
		transition: transform 0.3s var(--easing);
	}
	.header .info {
		margin: 0px;
	}
	.header .container {
		border-right-color: transparent;
		height: auto;
		min-height: calc(100vh - 4rem);
	}
	.header .navigation ul li a span {
		width: 2.25rem;
		height: 2.25rem;
	}
	.header .navigation ul li a svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	.header .social a {
		width: 2.25rem;
		height: 2.25rem;
	}
	.header .social a + a {
		margin-left: 0.75rem;
	}
	.header .social svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	.menu-visible .header {
		z-index: 100;
		visibility: visible;
		transform: translateX(0px);
	}
	.menu-hidden .header {
		transform: translateX(-150%);
	}
	.overlay {
		position: fixed;
		background-color: rgba(0, 0, 0, 0.8);
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;
		width: 100vw;
		height: 100vh;
		z-index: -100;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s var(--easing);
	}
	.menu-visible .overlay {
		visibility: visible;
		opacity: 1;
		z-index: 30;
	}
	.menu-hidden .overlay {
		opacity: 0;
	}
	.header-nav {
		font-weight: 500;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: fixed;
		top: 0px;
		z-index: 20;
		background-color: var(--accent-color);
		padding: 1rem;
		margin: 0px;
		height: 3.5rem;
		border: none;
	}
	.header-nav a {
		color: rgba(255, 255, 255, 0.6);
		position: relative;
	}
	.header-nav a:hover {
		color: #FFFFFF;
	}
	.header-nav .logo {
		padding: 0px 2rem;
	}
	.header-nav .logo img {
		max-height: 1rem;
	}
	.header-nav .is-cart [data-counter]::before {
		box-shadow: 0px 0px 0px 0.125rem var(--accent-color);
		bottom: -0.5rem;
	}
	.header-nav::before,
	.header-nav::after {
		content: "";
		display: block;
		position: absolute;
		width: 0.75rem;
		height: 0.75rem;
		top: 100%;
		background-repeat: no-repeat;
		background-size: 0.75rem 0.75rem;
		background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='rgb(16, 16, 20)' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath d='M0 0l16 0c-8.84,0 -16,7.16 -16,16l0 -16z'%3e%3c/path%3e%3c/svg%3e");
	}
	.header-nav::before {
		left: 0px;
	}
	.header-nav::after {
		right: 0px;
		transform: scaleX(-1);
	}
	.main {
		margin: 0px 0px var(--bottom-offset, 0px) 0px;
		padding: 1.25rem;
		background-color: var(--bg-color);
		border-radius: 0.75rem;
		position: relative;
		z-index: 1;
	}
	.page-header {
		font-size: 2rem;
		margin: -1.25rem -1.25rem 0px -1.25rem;
		position: relative;
		top: -1.5rem;
		text-transform: none;
		padding: 1.5rem 1.5rem 1.5rem 1.5rem;
		min-height: 10rem;
		max-width: 100vw;
		background-image: linear-gradient(to bottom, var(--border-color), var(--bg-color));
		overflow: hidden;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		line-height: 1.3;
	}
	.page-header::before {
		content: "";
		position: absolute;
		left: 1.5rem;
		right: 1.5rem;
		bottom: 0px;
		border-top: 2px dashed var(--border-color);
	}
	.footer {
		margin: 0px;
		padding: 1.5rem;
		color: rgba(255, 255, 255, 0.3);
		border: none;
		text-align: center;
		flex-direction: column-reverse;
		position: fixed;
		z-index: 0;
		bottom: 0px;
		width: 100%;
	}
	.footer .navigation {
		margin-bottom: 1.5rem;
	}
	.footer a {
		color: var(--bg-color);
	}
	.footer .info {
		flex-direction: column-reverse;
	}
	.home-block {
		display: none;
	}
	.home-carousel .carousel-slide-content {
		grid-template-columns: 1fr;
		grid-gap: 1.5rem;
	}
	.carousel:hover .carousel-btn {
		transform: none;
		display: none;
	}
	.products-items li {
		padding: 1rem;
		margin: 0px;
	}
	.products-items li:hover {
		border-radius: 0px;
		animation: none;
		border-color: var(--border-color);
		box-shadow: none;
		transform: none;
	}
	.products-items li .title {
		font-size: 1.5rem;
	}
	.products-items li .info {
		padding: 1.5rem 3.5rem 0.5rem 0px;
	}
	.products-items li .view {
		width: 3.25rem;
		height: 3.25rem;
		flex: 0 0 3.25rem;
	}
	.product .main-info {
		display: block;
		border-bottom: none;
	}
	.product .main-info > div:nth-child(1),
	.product .main-info > div:nth-child(2) {
		width: 100%;
	}
	.product .main-info > div:nth-child(2) {
		margin: 2rem 0px 0px 0px;
	}
	.product .carousel {
		border: none;
		margin: -1.25rem
	}
	.product .carousel .carousel-thumbnails {
		padding: 0.5rem 1.25rem 1.25rem 1.25rem;
	}
	.product .picture {
		border: none;
	}
	.product .picture .counter {
		top: 0px;
		left: 0px;
		bottom: auto;
	}
	.product .picture .gallery-nav,
	.product .picture:hover .action-zoom {
		display: none;
	}
	.product .specs {
		border: 2px dashed var(--border-color);
		border-width: 2px 0px;
	}
	.comments-list .comment-header {
		display: block;
	}
	.comments-list .comment-header time {
		display: block;
		margin: 0.25rem 0px 0px 0px;
		padding: 0px;
		border: none;
	}
	.media-list a {
		flex: 0 0 calc(50% - 0.5rem);
	}
	.cart .products-list {
		border: none;
	}
	.cart .products-list li:first-child {
		display: none;
	}
	.cart .products-list li {
		display: flex;
		flex-wrap: wrap;
		padding: 0px;
	}
	.cart .products-list li:nth-child(2) {
		padding-top: 1.5rem;
	}
	.cart .products-list li.item + li.item {
		padding-top: 1.5rem;
		margin-top: 1.5rem;
		border-top: 2px dashed var(--border-color);
	}
	.cart .products-list li > div {
		display: flex;
		flex: 0 0 100%;
		border: none;
		padding: 0px;
		align-items: center;
	}
	.cart .products-list li > div + div {
		margin-top: 0.5rem;
	}
	.cart .products-list .label {
		display: block;
		font-weight: 500;
		color: var(--accent-color);
		flex: 1;
		font-size: 0.875rem;
	}
	.cart .products-list .preview {
		flex: 0 0 4rem;
		width: 4rem;
		height: 4rem;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 2px;
		border: 1px solid var(--border-color);
		border-radius: 0.25rem;
		margin-right: 1rem;
	}
	.cart .products-list .title {
		width: auto;
		flex: 0 0 calc(100% - 5rem);
		margin: 0px;
		flex-direction: column;
		padding-right: 2rem;
		align-items: flex-start;
	}
	.cart .products-list .price {
		margin-top: 1.5rem;
	}
	.cart .products-list .price .value {
		padding-right: 0.25rem;
	}
	.cart .products-list .actions {
		position: absolute;
		right: 0px;
		top: 0px;
		flex: auto;
		padding: 0px;
		margin: 0px;
		z-index: 1;
	}
	.cart .products-list li + li .actions {
		top: 1.5rem;
	}
	.cart .total {
		padding: 0px;
		border: none;
		margin-top: 1.5rem;
		padding-top: 1.5rem;
		border-top: 2px dashed var(--border-color);
	}
	.tabs .tabs-nav {
		display: block;
	}
	.tabs .tabs-nav li + li {
		margin: 0.5rem 0px 0px 0px;
	}
	.notify {
		width: calc(100% - 1rem);
		min-height: 3.5rem;
	}
	form .form-control {
		display: block;
	}
	form .form-control > div + div {
		margin: 1rem 0px 0px 0px;
	}
	form button {
		width: 100%;
	}
	.cookie-accept {
		width: calc(100% - 2rem);
	}
}
