:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--color-desert: #EFE8DD;
	--color-bg: var(--color-desert);
	--color-white-gray: #D8DCDF;
	--color-dark-gray: #888A8B;
	--color-pink: #E5BAC1;
	--color-red: #CF1D2A;
	
	--container-width: 1860px;
	--container-small-width: 1120px;
    --container-padding: 30px;
	--header-height: 84px;
	--page-top: calc(50px + var(--header-height));
	--section-margin: 90px;

	--font-f: "Geologica", sans-serif;

	--logo-width: 275px; 
	--logo-height: 32px;

	--transition: all .3s ease-in-out;
}

body {
	margin: 0;
	font-family: var(--font-f);
	font-size: 1rem;
	font-weight: 400;
	line-height: normal;
	color: var(--color-black);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings:
	  "slnt" 0,
	  "CRSV" 0,
	  "SHRP" 0;
}
html, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
	outline: none !important;
	transition: var(--transition);
}
input {
	outline: none !important;
}

input[type='number'] {
    -moz-appearance: textfield;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

a {
	text-decoration: none !important;
	color: inherit;
	display: inline-block;
	position: relative;
	outline: none !important;
	transition: var(--transition);
}

section {
	position: relative;
	overflow: hidden;
}

strong, b {
	font-weight: 700;
}

.container {
	width: 100%;
	max-width: calc(var(--container-width) + var(--container-padding) + var(--container-padding));
	margin: 0 auto;
	padding: 0 var(--container-padding);
	position: relative;
	z-index: 2;
}
.container_small {
	max-width: calc(var(--container-small-width) + var(--container-padding) + var(--container-padding));
}

h1 {	
	font-family: var(--font-f);
	font-style: normal;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.2;
}

h2 {
	font-family: var(--font-f);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
}

h3 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 17px;
	line-height: 1.16;
}

h4 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.2;
}

h5 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
}

h6 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.2;
}

p {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.2;
	display: block;
}

.img_cont img,
.img_cont picture,
.img_cont video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.img_cover img,
.img_cover picture,
.img_cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 100;
}
/*body.modal_open header {*/
/*	z-index: 3;*/
/*}*/
header .container {
	position: static;
}
.header_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_left,
.header_right {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 4px;
}
.header_right {
	justify-content: flex-end;
}
.basket_wrapper {
	width: 68px;
}
.header_btn {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
	padding: 13px 16px;
	font-weight: 300;
	font-size: 13px;
	line-height: 1.38;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
	color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0px;
	gap: 10px;
	position: relative;
}
.header_btn.not_empty {
	background-color: #EFE8DD;
}
.basket_wrapper .header_btn span {
	position: absolute;
	top: 7px;
	right: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0%;
	background: #CF1D2A;
	box-shadow: 0 0.93px 0.93px 0 #9C182240;
	height: 12px;
	min-width: 12px;
	padding: 3px;
	font-weight: 300;
	font-size: 8px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: 0;
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
}
.header_logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--logo-width);
	height: var(--logo-height);
	transition: var(--transition);
}
.header_logo picture {
	display: flex;
}
.header_btn svg {
	width: 16px;
	min-width: 16px;
	height: 16px;
	transition: var(--transition);
}
.header_btn_wrapper .header_btn.active svg {
	transform: scale(1, -1);
}
.header_btn_wrapper {
	padding: 2px;
	display: flex;
	align-items: center;
	gap: 4px;
	border-radius: 0px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
}
.header_btn_wrapper .header_btn {
	padding: 8px 12px 8px 18px;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	background-color: transparent;
	backdrop-filter: none;
}
.icon_btn {
	padding: 12px;
	background-color: rgba(255, 255, 255, 0.5);
}
.icon_btn svg {
	width: 20px;
	min-width: 20px;
	height: 20px;
	fill: transparent;
}
.icon_btn_wide {
	padding: 12px 24px;
}
.intro {
	/*height: 100svh;*/
	min-height: 700px;
	display: flex;
	align-items: center;
	aspect-ratio: 1920/920;
}
.intro_splide .splide__slide {
	overflow: hidden;
	aspect-ratio: 1920/920;
}
.intro_splide .splide__slide > * {
	display: flex;
	width: 100%;
	height: 100%;
}
.intro_splide .splide__slide > * .img_cover {
	width: 100%;
	height: 100%;
}
.intro_wrapper {
	height: 100%;
	display: flex;
	align-items: center;
}
.edit-box_bottom {
	top: auto !important;
	bottom: 25px;
}
.splide__video__wrapper {
	display: block !important;
}
.intro .splide__list {
	/*height: 660px;*/
}
.intro video {
	object-fit: cover;
}
.site_bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100lvh;
	filter: blur(56px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.intro_overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	filter: blur(56px);
}
.intro .splide__pagination {
    padding: 8px 12px;
	border-radius: 0;
	backdrop-filter: blur(25px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	/*bottom: -80px;*/
	left: 50%;
	transform: translateX(-50%);
	gap: 8px;
	position: absolute;
}
.intro .splide__pagination__page {
    background: #888A8B;
    height: 8px;
    margin: 0;
    opacity: 1;
    width: 8px;
	border-radius: 0px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}
.intro .splide__pagination__page::after {
	content: '';
	width: 0;
	height: 100%;
	background: #FFFFFF;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	border-radius: 0px;
	transition: var(--transition);
}
.intro .splide__pagination__page.is-active {
    transform: none;
	width: 22px;
	opacity: .7;
	background: #888A8B !important;
}
.intro .splide__pagination__page.is-active::after {
	animation: pagination 7s linear forwards;
}
@keyframes pagination {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}
.splide__pagination li {
	display: flex;
	line-height: 0;
}
.front_categories {
	margin-top: var(--section-margin);
	transition: var(--transition);
	transition-duration: 500ms;
	transform: translateY(100px);
}
.front_categories.inview {
	transform: translateY(0);
}
.front_categories .switcher {
	margin: 0 auto 12px auto;
}
.switcher {
	display: flex;
	align-items: center;
	width: fit-content;
	border-radius: 0px;
	background-color: rgba(255, 255, 255, 0.5);
}
.switcher li {
	padding: 4px 16px;
	border-radius: 0px;
	display: flex;
	align-items: center;
	width: fit-content;
	transition: var(--transition);
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	cursor: pointer;
	overflow: hidden;
}
.switcher li.active {
	background-color: #000000;
	color: #D8DCDF;
	cursor: default;
}
.switcher li .switcher_count {
	font-weight: 400;
	font-size: 9px;
	font-style: normal;
	leading-trim: Cap height;
	line-height: 1;
	letter-spacing: -0.2px;
	text-align: center;
	vertical-align: middle;
	aspect-ratio: 1/1;
	border-radius: 0px;
	border: 1px solid transparent;
	transition: var(--transition);
	color: #888A8B;
	margin-left: 8px;
	padding: 2px 3px;
	min-width: 14px;
}
.switcher li.active .switcher_count {
	border-color: rgba(219, 200, 182, 0.6);
	color: #D8DCDF;
}
.btn {
	padding: 12px;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: fit-content;
	font-weight: 300;
	font-size: 11px;
	line-height: 1.6;
	letter-spacing: 0px;
	vertical-align: middle;
	color: #000000;
	border: 1px solid transparent;
	border-radius: 0px;
}
.btn svg {
	width: 16px;
	min-width: 16px;
	height: 16px;
}
.intro_splide_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 16px;
	height: 100%;
	position: relative;
	z-index: 1;
}
.splide__slide .bg_pos {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.intro_splide_title {
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 100%;
	letter-spacing: -0.2px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #FFFFFF;
}
.intro_splide_btn {
	margin-top: 35px;
}
.front_categories_list {
	margin-top: 15px;
}
.front_categories_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	/*width: 350px;*/
	/*min-width: 350px;*/
}
.front_category_img {
	border-radius: 0px;
	overflow: hidden;
	aspect-ratio: 269/249;
}
.front_category_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
	margin-top: 10px;
}
.front_category_btn {
	margin-top: 10px;
}
.front_list {
	margin-top: var(--section-margin);
}
.splide__pagination {
    padding: 16px;
	gap: 8px;
	position: static;
	margin-top: 10px;
}
.front_list_splide .splide__pagination {
	padding: 16px;
	gap: 8px;
	position: static;
	margin-top: 10px;
}
.splide__pagination__page {
    background: #FFFFFF;
    height: 8px;
    margin: 0;
    opacity: .5;
    width: 8px;
	border-radius: 0px;
	transition: var(--transition);
	overflow: hidden;
	backdrop-filter: blur(15px);
}
.splide__pagination__page.is-active {
    transform: none;
	opacity: 1;
	background: #000000 !important;
}
.front_categories_list .splide__track {
	overflow: visible;
}
.switcher_content > li {
	display: none;
}
.switcher_content > li.active {
	display: block;
}
.title_wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
}
.title {
	font-weight: 400;
	font-style: normal;
	font-size: 21px;
	line-height: 1.2;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.line {
	flex: 1;
	height: 1px;
	border-radius: 0px;
	background-color: #FFFFFF;
}
.product_teaser {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
}
.product_marks {
    position: absolute;
    top: 15px;
    left: 0;
    display: flex;
	flex-direction: column;
	gap: 5px;
    z-index: 3;
}
.product_marks > * {
	padding: 6px 10px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	background: #000000;
	font-weight: 400;
	font-size: 10px;
	line-height: 1.1;
	letter-spacing: 0.8px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #FFFFFF;
	width: fit-content;
}
.product_open_marks {
	position: static;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
.product_open_marks > * {
	border-radius: 0px;
	padding: 3px 4px;
	font-size: 8px;
}
.mark_hit {
    background: #000000;
    color: #D8DCDF;
}
.mark_new {
    background: #E5BAC1;
    color: #000000;
}
.mark_sale {
    background: #C60C0C;
    color: #D8DCDF;
}
.product_teaser_img {
    aspect-ratio: 365/486;
    overflow: hidden;
	border-radius: 0px;
	background-color: #FFFFFF;
	display: flex;
	position: relative;
}
.product_teaser_link {
	width: 100%;
	height: 100%;
}
.hover_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_teaser_info {
	padding: 15px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product_teaser_title {
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 1.1;
	letter-spacing: 0;
	vertical-align: middle;
	color: #000000;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.product_teaser_price_wrapper {
    display: flex;
	align-items: center;
	gap: 10px;
}
.product_teaser_info_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.product_teaser_price {
	font-weight: 300;
	font-size: 12px;
	line-height: 1.1;
	letter-spacing: 0;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
	white-space: nowrap;
}
.product_teaser_old_price {
	color: rgba(0, 0, 0, 0.65);
	text-decoration: line-through;
	white-space: nowrap;
}
.edit-box {
    top: 1rem;
    right: 1rem;
    z-index: 999;
    position: absolute;
}
.modal_active .edit-box {
	z-index: unset;
}
.edit-box a {
    background-color: #fff;
    border-radius: 0%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.edit-box svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: transparent;
}
svg {
    max-width: 100%;
    max-height: 100%;
	fill: transparent;
}
svg use {
    transition: opacity .3s ease-in-out;
}
.product_teaser_colors {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 8px;
}
.product_color {
	width: 18px;
	min-width: 18px;
	height: 18px;
	border-radius: 0%;
	border: 1px solid transparent;
	padding: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.product_colors .product_color {
	width: 33px;
	min-width: 33px;
	height: 33px;
	padding: 5px;
}
.product_color.active {
	border-color: #000000;
}
.product_colors .product_color.active {
	border-color: #000000;
}
.product_color > span {
	width: 100%;
	height: 100%;
	border-radius: 0%;
}
.front_list_splide .splide__track {
	overflow: visible;
}
.card_section {
	margin-top: var(--section-margin);
	overflow: visible;
}
.small_title_wrapper {
	max-width: 450px;
	margin: auto;
}
.card_section .small_title_wrapper {
	position: sticky;
	top: var(--header-height);
}
.small_title {
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.48px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.small_text {
	margin-top: 10px;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.46;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
	color: rgba(0, 0, 0, .75);
}
.small_text p {
	font-weight: 300;
	font-size: 15px;
	line-height: 1.46;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
	color: rgba(0, 0, 0, .75);
}
.small_text strong,
.small_text b {
	font-weight: 400;
}
.card_section_cards {
	display: flex;
	flex-direction: column;
	max-width: 343px;
	width: 100%;
	margin: 30px auto auto auto;
}
.card_section_card {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	aspect-ratio: 343/439;
	padding: 18px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	border-radius: 0;
	/* margin-bottom: 28px; */

	position: sticky;
	top: calc(50% - calc(439px / 2) );
	margin-bottom: -150px;
}
.card_section_card:not(:first-child) {
  	margin-top: 100%;
}
.card_section_info {
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(11px);
	border-radius: 0px;
	padding: 16px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.card_info_title {
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.2px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #FFFFFF;
}
.card_info_title_text {
	margin-top: 10px;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.1;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
	color: rgba(255, 255, 255, 0.8);
}
.card_info_btn {
	margin-top: 12px;
}
.marquee {
	margin-top: 300px;
    background: #FFFFFF;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
	border-top: 2px solid rgba(242, 242, 242, 0.25);
	border-bottom: 2px solid rgba(242, 242, 242, 0.25);
}
.marquee_wrapper,
.footer_marquee_wrapper {
    display: flex;
    align-items: center;
}
.footer_marquee_wrapper svg,
.footer_marquee_wrapper img {
	height: 34px;
}
.marquee_wrapper > * {
    margin-right: 10px;
}
.marquee_wrapper span {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.info_block_section {
	margin-top: var(--section-margin);
}
.info_block {
	margin-top: var(--section-margin);
}
.info_block_wrapper {
	background-color: #FFFFFF;
	padding: 30px;
	border-radius: 0px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 12px;
	align-items: center;
}
.info_block_title {
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.48px;
	vertical-align: middle;
	color: #000000;
}
.info_block_text {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
	margin-top: 12px;
}
.info_block_btn {
	margin-top: 24px;
	background-color: rgba(229, 186, 193, 0.4);
}
.info_block_img {
	border-radius: 0px;
	overflow: hidden;
	aspect-ratio: 540/300;
}
.reviews {
	margin-top: var(--section-margin);
}
.reviews_splide {
	margin-top: 20px;
}
.reviews_item {
	border-radius: 0px;
	aspect-ratio: 258/439;
	overflow: hidden;
	position: relative;
	padding: 12px;
	display: flex;
	align-items: flex-end;
}
.reviews_item_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.reviews_item_inner {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(15px);
	border-radius: 0px;
	display: grid;
	grid-template-columns: 1fr 4fr;
	align-items: center;
	width: 100%;
	padding: 12px;
	grid-gap: 12px;
}
.reviews_item_inner_img {
	aspect-ratio: 37/52;
	border-radius: 0px;
	overflow: hidden;
}
.reviews_item_inner_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #FFFFFF;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.reviews_item_inner_prices {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}
.reviews_item_inner_price {
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #FFFFFF;
}
.reviews_item_inner_price_old {
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0;
	vertical-align: middle;
	text-decoration: line-through;
	color: #FFFFFF;
	opacity: 0.6;
}
.reviews_item_modal {
	display: none;
	background: transparent;
}
.reviews_item_modal_wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	max-width: var(--container-small-width);
	width: 100%;
	background-color: var(--color-bg);
	border-radius: 0px;
	overflow: hidden;
	height: 85vh;
}
.reviews_item_modal_info {
	height: 100%;
    min-height: 100%;
	overflow: hidden;
	position: relative;
}
.reviews_item_modal_title {
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-black);
	background-color: var(--color-bg);
    font-weight: bold;
    min-height: 45px;
    border-bottom: 2px solid rgba(242, 242, 242, 0.25);
    padding: 10px 15px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
}
.reviews_item_modal_list {
    display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
    padding: 55px 20px 20px;
    max-height: 100%;
    overflow: auto;
}
.reviews .splide__track {
	overflow: visible;
}
footer {
	margin-top: var(--section-margin);
	padding-bottom: 60px;
}
.footer_top_item {
    padding: 12px 18px;
	background-color: #FFFFFF;
	backdrop-filter: blur(10px);
    position: relative;
	border-radius: 0px;
	margin-bottom: 15px;
	transition: var(--transition);
	position: relative;
}
.footer_top_item.active {
	background-color: rgba(255, 255, 255, .4);
}
.footer_top_item_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
	gap: 8px;
}
.footer_top_item_title > div {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.footer_top_item_title > div span {
	font-weight: 300;
	font-size: 11px;
	line-height: 18px;
	letter-spacing: -0.2px;
	color: rgba(0, 0, 0, .75);
	display: block;
	text-transform: none;
}
.footer_top_item_title svg {
    width: 16px;
    min-width: 16px;
    height: 16px;
    transition: var(--transition);
}
.footer_top_item.active .footer_top_item_title svg {
    transform: scale(1, -1);
}
.footer_top_item_content {
    margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #FFFFFF;
    display: none;
}
.butik_item:not(:last-child) {
    margin-bottom: 12px;
}
.butik_item {
    display: flex;
    justify-content: space-between;
	padding-bottom: 12px;
	border-bottom: 1px solid #FFFFFF;
}
.butik_item_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.butik_item_title {
    display: flex;
    align-items: center;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 1.33;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: var(--color-black);
}
.butik_item_title svg {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 4px;
    fill: transparent;
}
.butik_item_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}
.butik_item_right a {
	width: 24px;
	min-width: 24px;
	height: 24px;
	color: #000000;
}
.butik_item_right a svg {
	width: 100%;
	height: 100%;
}
.butik_item_address {
	font-weight: 400;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: rgba(0, 0, 0, .75);
}
.butik_item_time {
	font-weight: 300;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.butik_item_time b,
.butik_item_time strong {
	color: rgba(0, 0, 0, .75);
}
.butik_item_phone {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.telegram_bot {
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: rgba(255, 255, 255, 0.4);
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: var(--color-black);
	padding: 12px;
	border-radius: 0px;
	width: 100%;
}
.telegram_bot svg {
    fill: transparent;
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 4px;
}
.footer_top_item_content .nav li:not(:last-child) {
    margin-bottom: 4px;
}
.footer_top_item_content .nav li a {
	border-radius: 0px;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 12px;
	backdrop-filter: blur(10px);
	font-weight: 300;
	font-size: 11px;
	line-height: 1.6;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer_top_item_content .nav li a::after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00004 14.6668C11.6819 14.6668 14.6667 11.6821 14.6667 8.00016C14.6667 4.31827 11.6819 1.3335 8.00004 1.3335C4.31814 1.3335 1.33337 4.31826 1.33337 8.00016C1.33337 11.6821 4.31814 14.6668 8.00004 14.6668Z' fill='white'/%3E%3Cpath d='M7 5.3335C7 5.3335 9 7.2975 9 8.00016C9 8.7029 7 10.6668 7 10.6668' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	width: 16px;
	min-width: 16px;
	height: 16px;
	display: block;
}
.socials {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.socials li {
    display: flex;
    align-items: center;
}
.socials li a {
	width: 40px;
	min-width: 40px;
	height: 40px;
    color: var(--color-black);
	padding: 8px;
}
.socials li a svg {
    width: 100%;
    height: 100%;
    fill: transparent;
}
.butik_item_help_phone {
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.butik_item_help {
	margin-top: 12px;
}
.butik_item_help .butik_item_right {
	padding: 9px 8px;
}
.footer_marquee {
	margin-top: 15px;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
}
.footer_bottom {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.copyright {
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: 0.25px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #888A8B;
}
.footer_bottom_icons {
    display: flex;
    align-items: center;
	gap: 10px;
}
.footer_bottom_icons > svg {
    max-height: 20px;
}
.header_drop_menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 80px 12px 60px;
    min-height: 366px;
	max-height: 600px;
    display: flex;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
	background-color: rgba(250, 250, 250, 0.8);
	border-radius: 0;
	z-index: -1;
}
.header_drop_menu.open {
    visibility: visible;
    opacity: 1;
}
.header_drop_wrapper {
	display: flex;
	gap: 30px 50px;
	width: 100%;
	flex-wrap: wrap;
}
.header_drop_col {
	max-width: 322px;
	width: 100%;
	position: relative;
}
.header_drop_col_wide {
	max-width: 700px;
}
.header_drop_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #888A8B;
	display: flex;
	align-items: center;
	margin-bottom: 4px;
	white-space: nowrap;
}
.header_drop_title::after {
	content: '';
	width: 100%;
	margin-left: 12px;
	height: 1px;
	background-color: #FFFFFF;
}
.header_drop_menu_list > li {
	padding: 4px 8px;
	display: flex;
	align-items: center;
	width: fit-content;
}
.header_drop_menu_list > li::before {
	content: '';
	width: 4px;
	height: 3px;
	background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.83495 3.5C1.32362 3.5 0.889968 3.38114 0.533981 3.14341C0.177994 2.90052 0 2.5801 0 2.18217C0 1.83075 0.10356 1.53101 0.31068 1.28295C0.517799 1.02972 0.786408 0.835917 1.1165 0.70155C1.45307 0.567183 1.80906 0.5 2.18447 0.5C2.70227 0.5 3.13269 0.618863 3.47573 0.856589C3.82524 1.09432 4 1.4199 4 1.83333C4 2.17959 3.89644 2.47674 3.68932 2.72481C3.4822 2.97287 3.21359 3.16408 2.8835 3.29845C2.5534 3.43282 2.20388 3.5 1.83495 3.5Z' fill='%23888A8B'/%3E%3C/svg%3E%0A");
	background-position: center;
	margin-right: 8px;
}
.header_drop_menu_list > li > * {
	font-family: Geologica;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.lang_switcher {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.lang_switcher > li > * {
	padding: 9px 10px;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	color: #000000;
	display: inline-block;
	border-bottom: 1px solid transparent;
}
.lang_switcher > li > span {
	border-color: #000000;
}
.header_drop_col .socials {
	margin-top: 8px;
}
.header_cat_menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 4px 50px;
}
.header_cat_menu li > * {
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 18px 10px 18px 16px;
    backdrop-filter: blur(10px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.header_cat_menu li > * > svg {
	width: 16px;
	height: 16px;
	min-width: 16px;
}
.header_drop_banner {
	aspect-ratio: 377/252;
	border-radius: 0px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: 0;
	margin-left: auto;
}
.btn_transp {
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
}
.hidden {
	opacity: 0;
	visibility: hidden;
	height: 0;
}
.product_gallery_item {
	overflow: hidden;
	height: 100%;
	width: 100%;
}
.product_info {
	margin-left: auto;
	margin-right: 0;
	width: 400px;
}
.product_info_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.product_info_top_btns {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	justify-content: flex-end;
}
.product_info_top .btn {
	white-space: nowrap;
}
.product_info_top_btn {
	width: 40px;
	height: 40px;
	min-width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	border-radius: 0px;
	background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(15px);
	color: #000000;
}
.product_info_top_btn.active svg {
	fill: #000000;
}
.product_info_col {
	padding: 18px 16px;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(15px);
	border-radius: 0px;
	margin-top: 10px;
}
.product_sku {
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.product_sku > div {
	font-weight: 300;
	font-size: 9px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.product_sku > div:last-child {
	margin-left: 4px;
	color: #000000;
}
.product_title {
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 1.1;
	letter-spacing: 0;
	vertical-align: middle;
	color: #000000;
}
.product_price_wrapper {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}
.product_old_price {
	font-weight: 300;
	font-size: 10px;
	line-height: 1.1;
	letter-spacing: 0;
	vertical-align: middle;
	text-transform: uppercase;
	text-decoration: line-through;
	color: rgba(0, 0, 0, 0.65);
	white-space: nowrap;
	margin-bottom: 2px;
}
.product_price {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.1;
	letter-spacing: 0;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
	white-space: nowrap;
}
.sale_price {
	color: #C60C0C;
}
.product_title_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.product_title_left {
	flex: 2;
}
.product_title_wrapper .product_price_wrapper {
	flex: 1;
}
.product_composition {
	margin-top: 28px;
}
.composition_title {
	font-weight: 300;
	font-size: 12px;
	leading-trim: Cap height;
	line-height: 1.5;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
	margin-bottom: 10px;
}
.composition_text {
	font-weight: 400;
	font-size: 13px;
	line-height: 1.1;
	letter-spacing: 0;
	vertical-align: middle;
	color: #000000;
}
.product_select_item {
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(216, 220, 223, 0.3);
}
.product_select_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
.product_select_title {
	display: flex;
	align-items: center;
}
.product_select_title > div {
	font-weight: 300;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
	transition: var(--transition);
}
.product_select_title > span {
	font-weight: 300;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #D8DCDF;
	margin: auto 12px;
}
.product_size_info {
	border-radius: 0px;
	display: flex;
	align-items: center;
	width: fit-content;
	background-color: #F8F8F8;
	padding: 4px 6px;
	font-weight: 300;
	font-size: 9px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.product_size_info svg {
	width: 12px;
	min-width: 12px;
	height: 12px;
	margin-left: 4px;
}
.product_selected_variants {
	margin-top: 20px;
	justify-content: center;
}
.product_selected_variants > * {
	font-size: 11px;
}
.product_selected_variants > span {
	margin: auto 4px;
}
.product_btns {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 20px;
}
.add_to_cart {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-radius: 0px;
	padding: 14px;
	background-color: #000000;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #EFE8DD;
}
.add_to_cart span {
	background-color: rgba(219, 200, 182, 0.3);
	width: 1px;
	height: 18px;
	margin: auto 6px;
	border-radius: 0px;
}
.product_colors,
.product_sizes {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 4px 0;
	margin-top: 4px;
}
.product_size {
	border: 1px solid #D8DCDF;
	padding: 9px 17px;
	border-radius: 0px;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.product_size.active {
	background-color: #EFE8DD;
	border-color: rgba(162, 107, 84, 0.4);
}
.product_size:disabled {
	opacity: .3;
}
.product_open .product_splide .splide__pagination {
	position: absolute;
	bottom: 90px;
	left: var(--container-padding);
	width: fit-content;
	margin: 0;
}
.product_open .product_splide .splide__pagination__page {
	background: #EFE8DD;
}
.teaser_btn_wrapper {
	position: absolute;
	z-index: 2;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 36px;
	transition: var(--transition);
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 0px;
}
.teaser_btn_wrapper.expanded {
	padding: 12px;
	width: calc(100% - 20px);
	background-color: rgba(242, 242, 242, 0.7);
	backdrop-filter: blur(15px);
	border-radius: 0px;
}
.teaser_btn {
	width: 36px;
	min-width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
}
.teaser_sizes {
	padding: 0 20px;
	width: 100%;
}
.teaser_sizes .splide__track {
	overflow: hidden;
}
.product_teaser .splide__arrow {
	background: #000000;
	height: 16px;
	width: 16px;
	min-width: 16px;
	border: none;
}
.product_teaser .splide__arrow svg {
	width: 100%;
	height: 100%;
	fill: transparent;
}
.product_teaser .splide__arrow--prev {
	left: 0;
}
.product_teaser .splide__arrow--next {
	right: 0;
}
body.modal_active {
	overflow: hidden;
}
::-webkit-scrollbar {
	width: 10px;
	height: 2px;
	background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
	background: var(--color-white);
}
.side_modal_overlay {
	background: rgba(241, 234, 227, 0.7);
	backdrop-filter: blur(15px);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.side_modal_wrapper {
	width: 100%;
	height: 100dvh;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	padding: 20px 0;
	z-index: 100;
}
header .side_modal_wrapper {
	z-index: unset;
}
.side_modal_wrapper .container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: fit-content;
	margin-left: auto;
	margin-right: 0;
	height: 100%;
}
.modal_wrapper.open,
.side_modal_wrapper.open {
	opacity: 1;
	visibility: visible;
}
.is-draggable .fancybox__content {
	cursor: default;
}
.side_modal {
	width: 510px;
	height: 100%;
	background: rgba(250, 250, 250, 0.56);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	backdrop-filter: blur(50px);
	border-radius: 0px;
	overflow: hidden;
}
#basket-box {
	position: relative;
	z-index: 10;
}
.side_modal_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 16px;
}
.side_modal_top_btn {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
	padding: 12px 15px;
	font-weight: 300;
	font-size: 11px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0px;
	gap: 4px;
	position: relative;
	height: fit-content;
}
.side_modal_top_btn svg {
	width: 16px;
	min-width: 16px;
	height: 16px;
	transform: rotate(45deg);
}
.side_modal_body {
	padding: 15px 12px;
	flex: 1;
	overflow-y: auto;
}
.side_modal_product {
	display: grid;
	grid-template-columns: 69px 1fr;
	grid-gap: 12px;
	padding: 12px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 0px;
}
.side_modal_product:not(:last-child) {
	margin-bottom: 4px;
}
.side_modal_product_img {
	min-height: 98px;
}
.side_modal_product_info {
	display: flex;
	flex-direction: column;
}
.side_modal_product_info_main {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.side_modal_product_sku {
	font-weight: 300;
	font-size: 8px;
	line-height: 1.5;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
	margin-bottom: 4px;
}
.side_modal_product_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	width: fit-content;
}
.side_modal_product_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 12px;
}
.side_modal_product_price_wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.side_modal_product_teaser_old_price {
	font-weight: 300;
	font-size: 8px;
	line-height: 1.5;
	letter-spacing: 0;
	vertical-align: middle;
	text-transform: uppercase;
	text-decoration: line-through;
	color: rgba(0, 0, 0, 0.65);
	margin-bottom: 4px;
}
.side_modal_product_teaser_price {
	font-weight: 400;
	font-size: 14px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: 0;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
	white-space: nowrap;
}
.side_modal_product_teaser_price.sale_price {
	color: #C60C0C;
}
.side_modal_product_params {
	margin-top: 12px;
	display: flex;
	align-items: center;
}
.side_modal_product_params > * {
	font-weight: 300;
	font-size: 12px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.side_modal_product_params > span {
	margin: auto 4px;
}
button:disabled {
	opacity: .3 !important;
	cursor: not-allowed;
}
.product_alert {
	background: #EDEDED;
	padding: 5px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: #B50015;
	text-align: center;
	font-family: var(--font-f);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	transition: var(--transition);
}
.product_alert svg {
	fill: transparent;
	width: 18px;
	min-width: 18px;
	height: 18px;
	margin-right: 4px;
}
.side_modal_qty {
	display: flex;
	width: fit-content;
	align-items: center;
	padding: 4px 6px;
}
.side_modal_qty button {
	width: 24px;
	min-width: 24px;
	height: 24px;
}
.side_modal_qty input {
	border: none;
	text-align: center;
	font-family: var(--font-f);
	margin: 0 2px;
	background: transparent;
	width: 24px;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	leading-trim: Cap height;
	line-height: 100%;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.side_modal_product_remove,
.filter_reset {
	display: flex;
	align-items: center;
	width: fit-content;
	font-weight: 300;
	font-size: 10px;
	leading-trim: Cap height;
	line-height: 1.8;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-decoration: underline;
	text-decoration-style: solid;
	text-decoration-offset: 0%;
	text-decoration-thickness: 0%;
	text-decoration-skip-ink: auto;
	color: #5C5E5E;
}
.side_modal_bottom {
	margin-top: 30px;
}
.side_modal_product_remove svg,
.filter_reset svg {
	width: 6px;
	min-width: 6px;
	height: 6px;
	margin-left: 4px;
}
.side_modal_bottom_btns {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 4px;
}
.wide_btn {
	border-radius: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px 18px;
	backdrop-filter: blur(15px);
	background: #000000;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #EFE8DD;
}
.form-action .btn {
	width: 100%;
}
.btn_black {
	backdrop-filter: blur(15px);
	background: #000000;
	color: #EFE8DD;
}
.btn_gray {
	background: #E1E5E8;
	color: #5C5E5E;
}
.side_modal_bottom_wrapper {
	margin-top: 12px;
	padding: 12px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(10px);
}
.side_modal_bottom_totals {
	padding: 4px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}
.side_modal_bottom_totals > div:first-child {
	font-weight: 300;
	font-size: 11px;
	line-height: 1.6;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.side_modal_bottom_totals > div:last-child {
	font-weight: 300;
	font-size: 11px;
	line-height: 1.6;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.side_modal_recommended {
	padding: 0 12px;
}
.side_modal_title {
	margin-bottom: 16px;
	font-weight: 300;
	font-size: 13px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.catalog_items {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 15px 8px;
}
.catalog_items.wide_col {
	grid-template-columns: repeat(3, 1fr);
}
.catalog {
	padding-top: var(--page-top);
}
.catalog_title_wrapper {
	display: flex;
	justify-content: center;
	padding: 8px 0;
	margin-bottom: 10px;
}
.page_title {
	font-weight: 400;
	font-style: normal;
	font-size: 21px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	text-align: center;
}
.catalog_title {
	padding: 0 12px;
	position: relative;
}
.catalog_title:before {
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 100%;
	top: 50%;
	background: #FFFFFF;
}
.catalog_title:after {
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	right: 100%;
	top: 50%;
	background: #FFFFFF;
}
.catalog .switcher {
	margin: 0 auto 10px auto;
}
.catalog_subcategory {
	background-color: rgba(255, 255, 255, 0.5);
	padding: 4px 0;
	border-top: 2px solid rgba(255, 255, 255, 0.15);
	border-bottom: 2px solid rgba(255, 255, 255, 0.15);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
}
.catalog_subcategory .container {
	padding: 0;
}
.search_category {
	overflow: auto;
	scroll-snap-type: x mandatory;
}
.search_category ul {
	display: flex;
	align-items: center;
}
.catalog_subcategory ul {
	display: flex;
	align-items: center;
	width: fit-content;
	margin: auto;
	padding: 0 var(--container-padding);
}
.catalog_subcategory ul li,
.search_category ul li {
	white-space: nowrap;
}
.catalog_subcategory ul li:not(:last-child):after {
	content: '/';
	font-weight: 300;
	font-size: 14px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
	margin: auto 8px;
}
.catalog_subcategory ul li > *,
.search_category ul li > * {
	font-weight: 300;
	font-size: 14px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: rgba(0, 0, 0, .75);
	padding: 12px 10px;
}
.catalog_subcategory ul li span {
	color: #000000;
	position: relative;
}
.catalog_subcategory ul li span:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 2px;
	transform: translateX(-50%);
	width: 10px;
	height: 2px;
	background: #000000;
	border-radius: 0px;
}
.filter_btn,
.sort_btn {
	padding: 12px;
	border: none;
	background-color: rgba(255, 255, 255, 0.5);
}
.catalog_views_btn {
	display: flex;
	align-items: center;
	padding: 12px;
	border-radius: 0px;
	background-color: rgba(255, 255, 255, 0.5);
}
.catalog_views_btn > div {
	display: flex;
}
.catalog_views_btn > div:not(:last-child) {
	padding-right: 8px;
	margin-right: 8px;
	border-right: 1px solid #D8DCDF;
}
.catalog_views_btn button {
	width: 16px;
	min-width: 16px;
	height: 16px;
	color: #888A8B;
}
.catalog_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}
.catalog_filter {
	position: relative;
}
.modal_overlay {
	background: rgba(241, 234, 227, 0.7);
	backdrop-filter: blur(15px);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.modal_wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 510px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.modal_wrapper_right {
	left: auto;
	right: 0;
}
.modal_wrapper_content {
	position: relative;
	width: 100%;
}
.modal_wrapper_item {
	padding: 12px;
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
	border-radius: 0px;
	margin-bottom: 8px;
}
.modal_wrapper_content_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.modal_wrapper_item_wrap {
	display: flex;
	align-items: center;
	gap: 4px;
}
.modal_wrapper_item_title {
	font-weight: 300;
	font-size: 11px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.modal_wrapper_item_wrap svg {
	width: 16px;
	min-width: 16px;
	height: 16px;
	color: #000000;
}
.index3 {
	z-index: 3;
}
.index10 {
	z-index: 10;
}
.catalog_filter_item_title {
	font-weight: 400;
	font-style: normal;
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #888A8B;
}
.count_result {
	font-weight: 400;
	font-style: normal;
	font-size: 11px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.catalog_sort_wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}
.page {
	margin-top: var(--page-top);
}
.login_page .container {
	max-width: 600px;
}
.login_title {
	color: rgb(43, 42, 41);
	font-family: var(--font-f);
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.63rem;
	text-align: center;
	padding: 0.63rem;
}
.form_wrapper .form_field:not(:last-child) {
	margin-bottom: 12px;
}
.form_wrapper input[type='text'],
.form_wrapper input[type="password"],
.form_wrapper input[type='number'],
.form_wrapper input[type='email'],
.form_wrapper input[type="phone"],
.form_wrapper textarea {
	border: 1px solid #E1E5E8;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 12px 13px;
	border-radius: 0px;
	font-family: var(--font-f);
	font-weight: 300;
	font-size: 13px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: var(--color-black);
	width: 100%;
	transition: var(--transition);
}
.form_wrapper input[type='text']:focus,
.form_wrapper input[type="password"]:focus,
.form_wrapper input[type='number']:focus,
.form_wrapper input[type='email']:focus,
.form_wrapper input[type="phone"]:focus,
.form_wrapper textarea:focus {
	background-color: #ffffff;
}
.form_wrapper input::placeholder,
.form_wrapper textarea::placeholder {
	color: #888A8B;
}
.form_wrapper label {
	padding: 4px 30px;
	font-weight: 300;
	font-size: 10px;
	line-height: 1.4;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	display: inline-block;
}
.form_wrapper label em {
	color: #CF1D2A;
}
.form_field {
	position: relative;
}
.password_trigger,
.field_icon {
	width: 20px;
	min-width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	color: #888A8B;
}
.password_trigger svg,
.field_icon svg {
	fill: transparent;
}
svg use + use {
	opacity: 0;
	visibility: hidden;
}
.form_wrapper input[type='checkbox'] + .checkbox_icon svg {
	opacity: 0;
	visibility: hidden;
}
.form_wrapper input[type='checkbox']:checked + .checkbox_icon svg {
	opacity: 1;
	visibility: visible;
}
.password_trigger.active > svg use:first-child {
	opacity: 0;
	visibility: hidden;
}
.password_trigger.active > svg use + use {
	opacity: 1;
	visibility: visible;
}
.checkbox_label {
	display: flex;
	align-items: center;
}
.checkbox_icon svg {
	fill: transparent;
}
.checkbox_icon svg use {
	transition: none;
}
.catalog_sort_list ul li:not(:last-child) {
	margin-bottom: 4px;
}
.catalog_sort_list ul li > * {
	background-color: rgba(255, 255, 255, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(15px);
	border-radius: 0px;
	padding: 12px 8px;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.catalog_sort_list ul li > span {
	border-color: #000000;
	background-color: #000000;
	color: #EFE8DD;
}
.checkout {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 16px;
}
.form_wrapper_title {
	font-weight: 400;
	font-style: normal;
	font-size: 10px;
	line-height: 2.4;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	text-align: center;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}
.form_wrapper_title:before,
.form_wrapper_title:after {
	content: '';
	background: #FFFFFF;
	border-radius: 0px;
	width: 100%;
	height: 1px;
}
.form_wrapper_title span {
	position: relative;
	padding: 0 12px;
	white-space: nowrap;
}
.country_wrapper {
	border: 1px solid #E1E5E8;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 0 13px;
	border-radius: 0px;
	width: 100%;
	display: flex;
	align-items: center;
	transition: var(--transition);
}
.country_wrapper:focus-within {
	background-color: #ffffff;
}
.relative {
	position: relative;
}
.country_wrapper input[type='text'] {
	border: none;
	padding-right: 0;
	padding-left: 2px;
	background: transparent;
}
.country_wrapper input[type='text']:focus {
	background-color: rgba(255, 255, 255, 0.6);
}
.country_wrapper > span {
	font-weight: 300;
	font-size: 13px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #888A8B;
	padding-left: 8px;
	border-left: 1px solid #D8DCDF;
	margin-left: 8px;
}
body .vue-country-select .dropdown {
	padding: 0;
	position: unset;
	outline: none;
}
body .vue-country-select {
	border-radius: 0;
	border: none;
}
body .vue-country-select .dropdown-arrow {
	color: transparent;
	font-size: 0;
	width: 16px;
	min-width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.33366 8.00004C1.33366 11.6819 4.31843 14.6667 8.00033 14.6667C11.6822 14.6667 14.667 11.6819 14.667 8.00004C14.667 4.31814 11.6822 1.33337 8.00033 1.33337C4.31843 1.33337 1.33366 4.31814 1.33366 8.00004Z' fill='white'/%3E%3Cpath d='M10.667 7C10.667 7 8.70299 9 8.00033 9C7.29759 9 5.33366 7 5.33366 7' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: center;
	transform: none;
	transition: var(--transition);
}
body .vue-country-select .dropdown.open .dropdown-arrow {
	transform: scale(1, -1);
}
body .vue-country-select:focus-within {
	box-shadow: none;
}
body .vue-country-select .dropdown.open,
body .vue-country-select .dropdown:hover {
	background-color: transparent;
}
body .vue-country-select .dropdown-list {
	border: 1px solid #E1E5E8;
	width: 100%;
	left: 0;
}
body .vue-country-select .dropdown-item strong {
	font-weight: 400;
}
body .vue-country-select .dropdown-item span {
	font-weight: 400;
}
body .vti__flag {
	display: inline-block;
	margin: 0 5px 0 0;
	border-radius: 0px;
	overflow: hidden;
}
.checkout_items {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 28px;
}
.checkout_items label {
	display: flex;
	align-items: center;
	gap: 4px;
	transition: var(--transition);
	flex-wrap: wrap;
}
.radio_title {
	font-weight: 300;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	display: flex;
	align-items: center;
	transition: var(--transition);
	border-radius: 0px;
	backdrop-filter: blur(15px);
	padding: 12px;
	flex: 1;
	background-color: rgba(255, 255, 255, 0.4);
}
.radio_img {
	background-color: rgba(255, 255, 255, 0.4);
	transition: var(--transition);
	width: 48px;
	min-width: 48px;
	height: 48px;
	border-radius: 0px;
	backdrop-filter: blur(15px);
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.checkout_items label.active .radio_img,
.checkout_items label.active .radio_title {
	background-color: #FFFFFF;
}
.radio_img svg {
	width: 100%;
	height: 100%;
}
.checkout_items label input {
	display: none;
}
.checkout_items label .radio {
	width: 16px;
	min-width: 16px;
	height: 16px;
	margin-right: 8px;
	border-radius: 0%;
	border: 1px solid rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
}
.checkout_items label .radio:after {
	content: '';
	transition: var(--transition);
	border-radius: 0%;
	background-color: #000000;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.checkout_items label.active .radio:after {
	opacity: 1;
}
.side_modal_product.disabled > .product_alert {
	opacity: 1;
	grid-column: 1/3;
}
body .select2-container--default .select2-selection--single {
	height: 50px;
	padding: 12px 13px;
	border: 1px solid #E1E5E8;
	border-radius: 0px;
	background: #ffffff;
	outline: none;
}
body .select2-dropdown {
	border: 1px solid #E1E5E8;
	border-radius: 0px;
	z-index: 99;
	overflow: hidden;
}
body .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0;
	font-family: var(--font-f);
	font-weight: 300;
	font-size: 13px;
	line-height: 24px;
	letter-spacing: 0;
	vertical-align: middle;
	color: var(--color-black);
}
body .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #888A8B;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 16px;
	height: 16px;
	top: 50%;
	margin-top: -8px;
	right: 14px;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_805_3130)'%3E%3Cpath d='M1.33366 8.00004C1.33366 11.6819 4.31843 14.6667 8.00033 14.6667C11.6822 14.6667 14.667 11.6819 14.667 8.00004C14.667 4.31814 11.6822 1.33337 8.00033 1.33337C4.31843 1.33337 1.33366 4.31814 1.33366 8.00004Z' fill='black' stroke='black' stroke-opacity='0.6'/%3E%3Cpath d='M10.667 7C10.667 7 8.70299 9 8.00033 9C7.29759 9 5.33366 7 5.33366 7' stroke='%23D8D8D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_805_3130'%3E%3Crect width='16' height='16' fill='white' transform='translate(16) rotate(90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	transition: var(--transition);
}
body .select2-container--default .select2-selection--single[aria-expanded="true"] .select2-selection__arrow {
	transform: scale(1, -1);
}
body .select2-results__option {
	padding: 0.63rem;
	color: #000000;
	font-family: var(--font-f);
	font-size: 0.88rem;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}
body .select2-results__option[aria-selected="true"] {
	background: #EFE8DD;
	color: #000000;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
body .select2-search--dropdown {
	padding: 0.63rem;
}
body .select2-results__option:hover {
	background: #EFE8DD;
}
.payment_items .radio_img {
	width: 80px;
	min-width: 80px;
}
.checkout .modal_wrapper_item {
	margin-bottom: 16px;
}
.form_field_relative {
	position: relative;
}
.field_danger input,
input.field_danger,
.country_wrapper.field_danger,
body .field_danger .select2-container--default .select2-selection--single {
	border-color: #C60C0C !important;
}
.checkout_items.payment_items {
	margin-bottom: 12px;
}
.checkout_promo {
	padding-top: 12px;
	border-top: 1px solid #FFFFFF;
}
.checkout_promo input {
	padding-right: 80px;
}
.promo_btn {
	font-weight: 300;
	font-size: 11px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	border-radius: 0px;
	padding: 8px;
	background: #D8DCDF;
	backdrop-filter: blur(15px);
	transition: var(--transition);
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
}
.checkout_promo input:disabled {
	cursor: not-allowed;
}
.fade-enter-active, .fade-leave-active {
	transition: var(--transition);
}
.fade-enter, .fade-leave-to {
	opacity: 0;
}
.slide-fade-enter-active {
	transition: var(--transition);
}
.slide-fade-leave-active {
	transition: var(--transition);
}
.slide-fade-enter, .slide-fade-leave-to  {
	transform: translateY(10px);
	opacity: 0;
}
.slide-up-enter-active {
	transition: var(--transition);
}
.slide-up-leave-active {
	transition: var(--transition);
}
.slide-up-enter, .slide-up-leave-to  {
	transform: translateY(100%);
}
.checkout_products_main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.checkout_products_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.checkout_products_main_amount {
	display: flex;
	align-items: center;
}
.checkout_products_main_amount > * {
	font-weight: 300;
	font-size: 11px;
	line-height: 1.6;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.checkout_products_main_amount > span {
	margin: auto 4px;
}
.checkout_products_sum {
	color: #000000;
}
.checkout_products_arrow {
	transition: var(--transition);
	width: 16px;
	min-width: 16px;
	height: 16px;
}
.checkout_products_main.active .checkout_products_arrow,
.orders_item_content.active .checkout_products_arrow {
	transform: scale(1, -1);
}
.checkout_products_arrow svg {
	width: 100%;
	height: 100%;
}
.checkout_products {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #FFFFFF;
}
.checkout_bottom {
	background-color: rgba(255, 255, 255, 0.7);
	padding: 12px;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(15px);
	border-radius: 0px;
}
.checkout_strings > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.checkout_strings > div > div {
	font-weight: 300;
	font-size: 11px;
	line-height: 18px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.checkout_strings > div > div:last-child {
	color: #000000;
}
.checkout_strings > div:not(:last-child) {
	margin-bottom: 8px;
}
.checkout_btn {
	margin-top: 4px;
}
.checkout_total {
	padding-top: 13px;
	padding-bottom: 8px;
	margin-top: 9px;
	border-top: 1px solid #FFFFFF;
}
.checkout_strings > .checkout_total > div {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.checkout_strings > .checkout_saved > div:last-child {
	color: #CF1D2A;
}
.radio_help {
	width: 100%;
}
.tnx_wrapper_title {
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 1.1;
	letter-spacing: -0.48px;
	text-align: center;
	vertical-align: middle;
	color: #000000;
}
.tnx_wrapper_text {
	margin-top: 10px;
	margin-bottom: 10px;
}
.tnx_wrapper_text p {
	font-family: Geologica;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.46;
	letter-spacing: 0;
	text-align: center;
	vertical-align: middle;
	color: #000000;
}
.order_number {
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.order_info {
	margin-top: 12px;
}
.tnx_btn {
	margin-top: 12px;
}
.product_info_top_btn_wrapper {
	position: relative;
}
.share_items {
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.share_items li a {
	width: 32px;
	min-width: 32px;
	height: 32px;
}
.share_items li a svg {
	width: 100%;
	height: 100%;
}
.copy_btn {
	border-radius: 0px;
	background: #000000;
	backdrop-filter: blur(15px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 12px;
	font-weight: 300;
	font-size: 14px;
	leading-trim: Cap height;
	line-height: 18px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #EFE8DD;
	width: 100%;
}
.copy_btn svg {
	width: 20px;
	min-width: 20px;
	height: 20px;
}
.modal_wrapper_top_right {
	position: fixed;
	top: var(--page-top);
	right: var(--container-padding);
	left: auto;
	z-index: 10;
}
.modal_wrapper_content .switcher {
	margin: 0 auto 12px auto;
}
.page_content table,
.modal_wrapper_content table {
	width: 100%;
}
.page_content thead th,
.modal_wrapper_content thead th {
	padding: 10px;
	color: #888A8B;
	font-family: var(--font-f);
	font-weight: 300;
	font-size: 11px;
	line-height: 100%;
	letter-spacing: -0.2px;
	text-align: center;
	vertical-align: middle;
}
.page_content tbody td,
.modal_wrapper_content tbody td {
	padding: 18px 10px;
	font-weight: 300;
	font-size: 13px;
	leading-trim: Cap height;
	line-height: 100%;
	letter-spacing: -0.2px;
	text-align: center;
	vertical-align: middle;
	color: #000000;
}
.page_content tbody tr:nth-of-type(odd) td,
.modal_wrapper_content tbody tr:nth-of-type(odd) td {
	background: rgba(255, 255, 255, 0.7);
}
.page_content tbody tr td:first-child,
.modal_wrapper_content tbody tr td:first-child {
	/*border-radius: 0px 0 0 12px;*/
	border-radius: 0;
}
.page_content tbody tr td:last-child,
.modal_wrapper_content tbody tr td:last-child {
	/*border-radius: 0 12px 12px 0;*/
	border-radius: 0;
}
.size_modal_wrapper {
	overflow-y: auto;
	height: 100%;
}
.page_title_wrapper {
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.page_content p {
	font-weight: 300;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 0;
	vertical-align: middle;
	color: #000000;
}
.advantages_wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 16px;
	margin-top: 24px;
}
.advantages_item {
	border-radius: 0px;
	background: rgba(255, 255, 255, 0.5);
	padding: 12px;
}
.advantages_item_top {
	display: flex;
	align-items: center;
}
.advantages_icon {
	margin-right: 12px;
	width: 50px;
	min-width: 50px;
	height: 50px;
}
.advantages_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.advantages_content {
	margin-top: 12px;
}
.advantages_content p {
	text-align: left;
}
.advantages_content > *:not(:last-child) {
	margin-bottom: 14px;
}
.contact_wrapper_text {
	margin-bottom: 24px;
}
.login_page_item_wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.login_page_item_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.login_page_item_text {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 0;
	text-align: center;
	vertical-align: middle;
	color: #888A8B;
	margin-bottom: 12px;
}
.form_action {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.form_info {
	font-weight: 400;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
	color: #888A8B;
	margin-bottom: 12px;
}
.form_info a {
	color: #000000;
	text-decoration: underline !important;
}
.form_wrapper input[type='checkbox'] {
	display: none;
}
.checkbox_icon {
	width: 18px;
	min-width: 18px;
	height: 18px;
	margin-right: 8px;
	border-radius: 0px;
	cursor: pointer;
	background-color: #EFE8DD;
}
.checkbox_icon svg {
	width: 100%;
	height: 100%;
}
.checkbox_label,
.form_wrapper label.checkbox_label {
	display: flex;
	align-items: center;
	font-weight: 300;
	font-size: 12px;
	leading-trim: Cap height;
	line-height: 1.5;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	padding: 0;
	margin-bottom: 12px;
}
.account_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.account_top_info_label {
	font-weight: 300;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	margin-bottom: 2px;
}
.account_top_title {
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.account_menu {
	grid-template-columns: 1fr;
}
.btn_flip svg {
	transform: scale(-1, 1);
}
.login_page_back {
	width: fit-content;
	margin-bottom: 12px;
}
.prod_added {
	position: fixed;
	right: 10px;
	top: calc(var(--header-height) + 10px);
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0px;
	backdrop-filter: blur(15px);
	display: grid;
	grid-template-columns: 37px 1fr;
	grid-gap: 12px;
	max-width: 200px;
	width: 100%;
	padding: 12px;
	z-index: 100000;
}
.prod_added_img {
	aspect-ratio: 37/52;
	overflow: hidden;
	border-radius: 0px;
	background-color: #FFFFFF;
	display: flex;
}
.prod_added_sku {
	font-weight: 300;
	font-size: 8px;
	line-height: 14px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
	margin-bottom: 2px;
}
.prod_added_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.prod_added_params {
	margin-top: 10px;
	display: flex;
	align-items: center;
}
.prod_added_params > * {
	font-weight: 300;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.prod_added_params > span {
	margin: auto 4px;
}
.prod_added_btn {
	width: 24px;
	min-width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: calc(100% + 4px);
}
.prod_added_btn svg {
	width: 100%;
	height: 100%;
	transform: rotate(45deg);
}
.v-lazy-component.v-lazy-component--loading {
	filter: blur(1.25rem);
}
.v-lazy-component.v-lazy-component--loaded {
	filter: blur(0);
	transition: filter 1s;
}
.product_teaser_count {
	font-weight: 400;
	font-size: 10px;
	line-height: 1.1;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	color: #888A8B;
}
.product_teaser_img .splide__track {
	height: 100%;
}
.modal_wrapper_item_teaser_top {
	display: flex;
	justify-content: space-between;
}
.modal_teaser_select {
	margin-top: 16px;
}
.modal_teaser_select .catalog_filter_item_title {
	color: #000000;
}
.modal_teaser_select .title_wrapper {
	padding: 0;
}
.modal_teaser_selected {
	font-weight: 300;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	transition: var(--transition);
	color: #888A8B;
	margin-top: 4px;
}
.prop_selected.active {
	color: #000000;
}
.modal_teaser_selected.error,
.prop_selected.error {
	color: #CF1D2A;
	animation: horizontal-shaking 0.35s;
}
.field_danger label {
	animation: horizontal-shaking 0.35s;
}
@keyframes horizontal-shaking {
	0% { transform: translateX(0) }
	25% { transform: translateX(5px) }
	50% { transform: translateX(-5px) }
	75% { transform: translateX(5px) }
	100% { transform: translateX(0) }
}
.modal_teaser_selected.modal_teaser_selected_active {
	color: #000000;
}
.product_teaser_add {
	padding: 18px 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0px;
	width: 100%;
	backdrop-filter: blur(15px);
	font-weight: 300;
	font-size: 14px;
	leading-trim: Cap height;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #EFE8DD;
	gap: 16px;
	background-color: #000000;
	margin-top: 28px;
}
.product_teaser_add svg {
	width: 20px;
	min-width: 20px;
	height: 20px;
	fill: transparent;
}
.push-up-enter-active,
.push-up-leave-active {
	transition: all 0.4s ease;
}
.push-up-enter {
	opacity: 0;
	transform: translateX(100%);
}
.push-up-leave-to {
	opacity: 0;
	transform: translateX(100%);
}
.side_modal_top_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.bottom-sheet__header {
	position: static;
	padding: 0;
	z-index: auto;
}
body .bottom-sheet__draggable-area[data-v-5938ea02] {
	padding: 12px;
}
body .bottom-sheet__draggable-thumb[data-v-5938ea02] {
	width: 30px;
	height: 3px;
	border-radius: 0px;
	margin: 0 auto;
}
.bottom-sheet__overlay[data-v-5938ea02] {
	backdrop-filter: blur(15px);
}
body .bottom-sheet[data-v-5938ea02] {
	transition: .5s ease;
}
body .bottom-sheet[aria-hidden=true][data-v-5938ea02] {
	transform: translateY(-190px);
}
body .bottom-sheet__content[data-v-5938ea02] {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(15px);
}
.product_info_wrapper .footer_marquee {
	display: none;
}
.product_info_col_top .product_selected_variants {
	margin-top: 12px;
}
.bottom-sheet__main .product_info_col_bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0 16px;
	background: #FFFFFF;
	z-index: 3;
}
.burger_btn span + span,
.burger_btn.active span {
	display: none;
}
.burger_btn.active span + span {
	display: block;
}
.header_drop_wrapper .side_modal_top_btn {
	width: fit-content;
}
.contacts_items {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 16px;
}
.contact_item {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
	padding: 12px;
	border-radius: 0px;
}
.contact_item iframe {
	width: 100%;
	height: auto;
	min-height: 211px;
	aspect-ratio: 319/211;
	outline: none;
	margin-top: 28px;
}
.contact_item .butik_item {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.contact_page .modal_wrapper_item {
	background-color: rgba(255, 255, 255, 0.5);
}
#search-box {
	padding: 0;
}
#search-box .side_modal {
	background: var(--color-bg);
	backdrop-filter: none;
}
.side_modal.wide_modal {
	width: 100%;
	border-radius: 0;
}
.search_close {
	position: fixed;
	bottom: 15px;
	display: flex;
	justify-content: center;
	left: 50%;
	transform: translateX(-50%);
}
.search_wrapper {
	padding: 14px 13px;
	border: 1px solid #D8DCDF;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.6);
	gap: 8px;
	margin-bottom: 24px;
	border-radius: 0px;
}
.search_icon,
.search_clear {
	width: 20px;
	min-width: 20px;
	height: 20px;
}
.search_wrapper input {
	border: none;
	outline: none;
	font-family: var(--font-f);
	font-weight: 300;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: var(--color-black);
	height: 24px;
	width: 100%;
	background: transparent;
}
.search_wrapper input::placeholder {
	color: #888A8B;
}
#search-box .side_modal_body {
	padding: 30px 16px;
	flex: 1;
	overflow-y: auto;
}
.search_product_teaser_price {
	flex: 1;
}
.catalog_top .search_wrapper {
	margin-bottom: 0;
}
.product_search_form {
	width: 100%;
}
.side_modal_product:not(:last-child) {
	margin-bottom: 16px;
}
.search_title_wrapper {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.search_title {
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.catalog_load_more {
	text-align: center;
	margin-top: 1.9rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	background-color: #000000;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.1;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #EFE8DD;
}
.header_cat_menu_new {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 8px;
}
.header_cat_menu_new li > * {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.post_img {
	/*height: 360px;*/
	margin-bottom: 6px;
}
.post_date {
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	vertical-align: middle;
	color: #888A8B;
	margin-bottom: 6px;
}
.post_title {
	font-weight: 400;
	font-size: 21px;
	line-height: 24px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 24px;
}
.post_body {
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
	padding: 12px;
}
.post_body p,
.post_body li {
	font-weight: 300;
	font-size: 15px;
	line-height: 22px;
	vertical-align: middle;
	color: rgba(0, 0, 0, 0.75);
}
.post_body img {
	width: 100% !important;
	height: auto !important;
}
.news_page_title {
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: -0.48px;
	text-align: center;
	vertical-align: middle;
	color: #000000;
}
.news_items {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 24px;
}
.news_teaser {
	position: relative;
}
.news_teaser_content {
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	color: rgba(0, 0, 0, 0.6);
}
.news_teaser_title {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 6px;
}
.news_teaser_btn {
	margin-top: 6px;
}
.news_teaser_img {
	margin-bottom: 6px;
	display: flex;
	width: 100%;
	aspect-ratio: 1/1;
}
.phone_form_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	bottom: 20px;
	width: 100%;
}
.phone_form_wrapper {
	max-width: 540px;
	margin-bottom: 0;
	width: calc(100% - var(--container-padding) * 2);
}
.intro_coming {
	overflow: visible;
	min-height: 650px;
	height: 100vh;
}
.intro_coming .img_cover {
	width: 100%;
	height: 100%;
}
.intro_coming .img_cover picture {
	display: flex;
}
.phone_form_container .example {
	--coef: 0.8;
	margin-bottom: 30px;
}
.label_text {
	text-align: center;
	margin-bottom: 5px;
}
.phone_form_container h1 {
	text-transform: uppercase;
	margin-bottom: 30px;
}
.product_info_section {
	padding: 40px 0;
}
.product_info_section_wrapper {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.product_info_section_photo {
	aspect-ratio: 540/620;
	max-width: 540px;
	width: 100%;
	height: fit-content;
	position: relative;
}
.product_info_section_photo .product_info_top_btn {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
}
.product_info_top_btn_wide {
	width: fit-content;
	height: auto;
	min-width: 40px;
	padding: 6px 6px 6px 20px;
	background-color: #EDEDED;
	backdrop-filter: none;
	gap: 8px;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.28;
	letter-spacing: -0.2px;
	vertical-align: middle;
}
.product_info_top_btn_wide span {
	width: 40px;
	height: 40px;
	min-width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);
	color: #000000;
}
.product_info_section_col {
	padding: 32px 20px 24px;
	background-color: rgba(250, 250, 250, 0.5);
	width: 100%;
	max-width: 674px;
	height: fit-content;
}
.product_info_section_item_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	gap: 8px;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.product_info_section_item {
	padding: 12px 18px;
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(15px);
	position: relative;
	margin-bottom: 16px;
	transition: var(--transition);
}
.product_info_section_item_title svg {
	width: 16px;
	min-width: 16px;
	height: 16px;
	transition: var(--transition);
}
.product_info_section_item_content {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #EFE8DD;
	display: none;
}
.product_info_section_item_content p,
.product_info_section_item_content li {
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #888A8B;
}
.product_info_section_item_content h4 {
	margin-top: 16px;
	margin-bottom: 4px;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: -0.2px;
	vertical-align: middle;
	color: #000000;
}
.load:after {
	content: '';
	width: 30px;
	height: 30px;
	border: 3px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	animation: rotation 1s linear infinite;
	position: absolute;
	top: calc(50% - 15px);
	left: calc(50% - 15px);
}
.load {
	background-color: #000000 !important;
	color: #000000 !important;
	position: relative;
}
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.pagination {
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	margin-top: 20px;
	gap: 4px;
}
.pagination_arrow .disabled {
	opacity: .3;
}
.pagination_arrow > * {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
}
.pagination_prev svg {
	transform: scale(-1, 1);
}
.pagination_arrow svg {
	width: 100%;
	height: 100%;
}
.pagination-numbers {
	display: flex;
	align-items: center;
	gap: 4px;
}
.pagination-numbers li > * {
	height: 30px;
	min-width: 30px;
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	text-align: center;
	vertical-align: middle;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000000;
}
.pagination-numbers .current > * {
	background-color: #000000;
	color: #FFFFFF;
}
.modal {
	max-width: 23.4375rem;
	width: 100%;
	padding: 1.25rem 0.625rem 2rem 0.625rem;
	background: #FFF;
	position: relative;
	z-index: 1;
	transform: translateY(20%);
	transition: var(--transition);
}
.modal_wrapper.open .modal,
.full_modal_wrapper.open .modal {
	transform: translateY(0);
}
.modal_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}
.modal_title {
	color: #000000;
	font-family: var(--font-f);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}
.modal_product_title {
	color: #000000;
	text-align: center;
	font-family: var(--font-f);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.modal_product_price_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.25rem;
}
.modal_text,
.modal_text p {
	margin-top: 1.25rem;
	color: #000000;
	text-align: center;
	font-family: var(--font-f);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.modal_text b {
	font-weight: 700;
}
#message-ajax-modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	z-index: 100;
	justify-content: center;
	align-items: center;
}
.modal_close {
	width: 1.5rem;
	min-width: 1.5rem;
	height: 1.5rem;
	color: #000000;
	justify-self: flex-end;
}
.modal_close svg {
	fill: transparent;
	width: 100%;
	height: 100%;
}
.modal_body_title {
	color: #000000;
	text-align: center;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-top: 1.25rem;
}
.modal_logo {
	height: 3.125rem;
}
.help_wrapper_time {
	margin-top: 0.5rem;
	color: #000000;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.page_content h2 {
	margin-top: 15px;
	margin-bottom: 10px;
}
.page_content ul {
	margin: 7px 0;
	list-style-type: disc;
	list-style-position: inside;
}
.page_content ol {
	margin: 7px 0;
	list-style-position: inside;
	list-style-type: decimal;
}
.full_modal_wrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 102;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.full_modal_wrapper.open {
	opacity: 1;
	visibility: visible;
}
.full_modal_wrapper .form_wrapper {
	margin-top: 1.25rem;
}
.fw-container {
	position:relative;
	display:inline-block;
	font-size:0;
	overflow:hidden;
	max-width: 730px;
	width: 100%;
	padding: 60px;
}
.fw-container canvas,
.fw-container img {
	display:block;
	width:100%
}
.fw-btn {
	position:absolute;
	top:0;
	left:0;
	z-index:1
}
.fw-btn,
.fw-btn__btn {
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%
}
.fw-btn__btn {
	position:relative;
	border-radius:50%;
	background: #FFFFFF;
	color: #000000;
	text-align:center;
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	padding: 12px;
	cursor: pointer;
	box-shadow:
			0 4px 8px rgba(65, 30, 0, 0.35),
			0 8px 16px rgba(95, 65, 40, 0.30),
			0 12px 24px rgba(136, 115, 96, 0.25),
			0 16px 32px rgba(173, 157, 144, 0.20),
			0 20px 40px rgba(202, 192, 184, 0.15),
			0 24px 48px rgba(225, 220, 215, 0.12),
			0 28px 56px rgba(241, 239, 237, 0.10);

}
.fw-btn__image {
	display:inline-block
}
.fw-btn:before {
	content: "";
	background-image: url(/template/images/wheel.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.fw-wheel {
	border-radius: 50%;
	overflow-y: hidden;
	border: 2px solid #EFE8DD;
}
.wheel_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.spin_btn {
	font-family: 'Helvetica Neue';
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
	color: #000000;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.28;
	vertical-align: middle;
	padding: 14px 20px;
	max-width: 375px;
	width: 100%;
}
.spin_btn svg {
	width: 28px;
	height: 30px;
	margin-left: 6px;
	padding-left: 6px;
	border-left: 1px solid #000000;
	transition: var(--transition);
}
.wheel_page .container {
	position: static;
}
.wheel_video {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.wheel_page_wrapper {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	grid-gap: 10px;
	align-items: flex-end;
	position: relative;
	min-height: 100svh;
	padding: 60px 0;
}
.wheel_page_info {
	padding-bottom: 60px;
}
.wheel_page_sup {
	font-family: 'Druk Wide Bold', sans-serif;
	font-weight: 700;
	font-size: 62px;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
	opacity: .35;
	margin-bottom: -20px;
}
.wheel_page_title {
	font-family: 'Druk Wide Bold', sans-serif;
	font-weight: 700;
	font-size: 62px;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
}
.wheel_page_text {
	margin-top: 29px;
}
.wheel_page_text p {
	font-family: 'Helvetica Neue';
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
}
.prizes_list_wrapper {
	grid-column: span 2;
	margin-top: 35px;
}
.prizes_list_title {
	font-family: 'Helvetica Neue';
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
}
.prizes_list_items {
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 4px;
}
.prizes_list_item {
	background: rgba(0, 0, 0, 0.4);
	box-shadow: 0 5px 4.6px 0 rgba(0, 0, 0, 0.25);
	padding: 10px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 10px;
	align-items: center;
	position: relative;
}
.prizes_list_item_label {
	position: absolute;
	top: 5px;
	left: 0;
	padding: 6px 10px;
	font-weight: 500;
	font-size: 10px;
	line-height: 1;
	vertical-align: middle;
	text-transform: uppercase;
	color: #FFFFFF;
	background: #000000;
	border-radius: 0 4px 4px 0;
}
.prizes_list_item_title {
	font-family: 'Helvetica Neue';
	font-weight: 800;
	font-size: 28px;
	line-height: 100%;
	text-align: right;
	color: #FFFFFF;
}
.prizes_list_item_text {
	font-family: 'Helvetica Neue';
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	text-align: right;
	text-transform: uppercase;
	color: #D8DCDF;
}
.win_modal_item_title {
	font-weight: 800;
	font-size: 28px;
	line-height: 100%;
	text-align: center;
	color: #000000;
	margin-bottom: 10px;
	margin-top: 10px;
}
.win_modal_item_subtitle {
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
}
.win_modal_img {
	height: 170px;
}
.front_banner,
.front_banner_link {
	position: relative;
	width: 100%;
	display: flex;
}
.promo_field .field_icon {
	color: #000000;
	cursor: pointer;
}
.catalog_items.one_col {
	grid-template-columns: repeat(1, 1fr);
}
.wide_products_banner {
	margin-bottom: 15px;
}
.wide_products_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 15px 8px;
}
.front_banners .front_list {
	margin-top: 20px;
}
.media_splide {
	margin-top: 30px;
}