html {
	overflow-y: scroll;
	width: 100%;
}

*, body {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::placeholder {
	color: var(--bgL);
}

::-ms-input-placeholder {
	color: var(--bgL);
}

::after, ::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-size: var(--body-font-size);
	font-family: var(--font);
	font-weight: 400;
	line-height: 140%;
	background-color: white;
	color: var(--bgT);
	min-width: calc(var(--min-desktop-width)*1px);
	min-height: 100%;
	text-transform: none;
	word-spacing: normal;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: normal;
}

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

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

button, input {
	font-size: var(--body-font-size);
	font-family: var(--font);
	line-height: var(--body-line-height);
	-webkit-mask-image: -webkit-radial-gradient(#fff,#000);
	-webkit-appearance: none;
	background-color: white;
	outline: none;
	height: auto;
	margin: 0;
	border-radius: var(--bdR);
	color: var(--bgT);
}

select {
	font-size: var(--body-font-size);
	font-family: var(--font);
	line-height: var(--body-line-height);
	-webkit-mask-image: -webkit-radial-gradient(#fff,#000);
	background-color: white;
	outline: none;
	height: auto;
	margin: 0;
	border-radius: var(--bdR);
	color: var(--bgT);
}

input {
	width: 100%;
	border: 1px solid var(--icon-color);
	min-height: 16px;
	padding: var(--padding-button);
}

.input_form {
	border: 1px solid var(--input-form);
	display: block;
	padding: 10px 16px;
}

.input_form+.input_form {
	margin-top: 12px;
}



/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

a {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: var(--t);
}

img {
	border: none;
	outline: none;
	user-drag: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--bgT);
	font-weight: bold;
}

.none {
	display: none;
}

.height {
	position: relative;
	width: 100%;
	display: flex;
}

.height_10 {
	height: 10px;
}

.height_20 {
	height: 20px;
}

.height_30 {
	height: 30px;
}

.height_40 {
	height: 40px;
}

.height_50 {
	height: 50px;
}

.height_60 {
	height: 60px;
}

.height_70 {
	height: 70px;
}

.height_80 {
	height: 80px;
}

.height_90 {
	height: 90px;
}

.height_100 {
	height: 100px;
}

.cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.transparent {
	background: var(--t);
}

.user_select {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.container {
	max-width: var(--max-row-width);
	margin: 0 auto;
	padding: 0 var(--padding-row);
}

.button {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	background-color: var(--bgS);
	padding: 0 16px;
	margin: 0;
	cursor: pointer;
	border: 0;
	white-space: nowrap;
	color: white;
	font-size: var(--body-font-size);
	border-radius: var(--bdR);
	transition: color .15s ease-in-out,background .15s ease-in-out;
	font-weight: 400;
}

.full_width {
	width: 100%;
}




/* MAIN */


.r_modal_close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: var(--height-close);
	height: var(--height-close);
	padding: 0;
	z-index: 10;
	background-color: var(--t);
	color: var(--bgT);
	border-radius: 8px;
}

.r_btn_text {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.r_modal_close span:after, .r_modal_close span:before {
	content: "";
	width: 18px;
	height: 2px;
	background-color: var(--bgT);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.white.r_modal_close span:after, .white.r_modal_close span:before {
	background-color: white;
}

.r_modal_close span:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.r_modal_close span:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
	.r_btn:hover {
		border-radius: 8px;
	}
}

.main {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	margin-top: var(--header-height);
}

.header_fixed+.main {
}


/* MAIN END */








/* HEADER START */

.header {
	position: relative;
}

.header_fixed {
}

.grid_header {
	width: 100%;
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_fixed .grid_header {
}

.layout_header {
	z-index: 31;
}

.header_shadow {
}

.order-catalog .header_shadow {
	box-shadow: none;
	background: white;
}

.order-catalog .layout_header {
	background: white;
}

.layout_header_home {
}

.container_header {
	left: 0;
	position: absolute;
	right: 0;
	top: var(--header-menu-height);
	transition: box-shadow .3s;
	background-color: white;
	box-shadow: 0 2px 4px 0 rgba(8,9,10,.08);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.10);
}

.header_fixed .container_header {
	position: fixed;
	top: 0;
}

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

.logo_header {
	display: flex;
}

.logo_header svg {
	width: 152px;
	height: 21px;
	fill: var(--bgS);
}

.catalog {
	margin: 0 12px 0 26px;
}

.box_catalog {
	display: flex;
	position: relative;
	align-items: center;
	white-space: nowrap;
	cursor: pointer;
	background-color: var(--bgS);
	border-radius: var(--bdR);
	overflow: hidden;
	padding: 0 18px;
	height: var(--height-components);
}

@media (hover: hover) and (pointer: fine) {
	.box_catalog:hover {
		background-color: var(--second-hover-color);
	}
}

.icon_catalog {
	height: 18px;
	width: 16px;
}

.icon_catalog span {
	display: block;
	position: relative;
	width: 16px;
	height: 2px;
	margin-top: 3px;
	border-radius: 10px;
	background-color: white;
	transition: transform 0.2s, background-color 0.2s;
}

.catalog_open span:first-of-type {
	-webkit-transform: translateY(5px) translateZ(0) rotate(45deg);
	transform: translateY(5px) translateZ(0) rotate(45deg);
}

.catalog_open span:nth-of-type(2) {
	opacity: 0;
}

.catalog_open span:nth-of-type(3) {
	-webkit-transform: translateY(-5px) translateZ(0) rotate(-45deg);
	transform: translateY(-5px) translateZ(0) rotate(-45deg);
}

.text_catalog {
	color: white;
	margin-left: 10px;
	display: flex;
	text-align: center;
	font-size: 15px;
	font-weight: 500;
}

.right_header_gap {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.cart_header {
}

.cart_header a {
	align-items: center;
	border-radius: var(--bdR);
	display: flex;
	height: var(--height-components);
	width: var(--height-components);
	justify-content: center;
	position: relative;
	background-color: var(--bgW);
}

@media (hover: hover) and (pointer: fine) {
	.cart_header a:hover .basket_header_icon {
		color: var(--bgS);
	}
}

.contact_header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 12px;
}

.contact_header a {
	display: flex;
	align-items: center;
	height: var(--height-components);
	justify-content: center;
	position: relative;
	padding: 0 12px;
	border-radius: var(--bdR);
	border: 1px solid var(--bgB);
}

.basket_header_icon {
	display: flex;
	color: var(--bgL);
	transition: color 0.2s ease 0s;
}

.count-cart {
	background-color: var(--bgR);
	font-size: 10px;
	line-height: 1;
	font-weight: 500;
	z-index: 2;
	top: 4px;
	left: calc(100% - 20px);
	padding: 0 4px;
	min-width: 16px;
	height: 16px;
	text-align: center;
	color: #fff;
	border-radius: 16px;
	position: absolute;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone_main {
	font-weight: bold;
	white-space: nowrap;
	font-size: 17px;
}


/* HEADER END */

















/* SEARCH START */
.search {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	flex-grow: 1;
	margin-right: 12px;
}

.form_search {
	background: var(--bgS);
	justify-content: flex-start;
	position: relative;
	border-radius: var(--bdR);
	display: flex;
	width: 100%;
	overflow: hidden;
}

.active_search {
	z-index: 100;
}

.layout_header_search {
}

.box_search {
	justify-content: flex-start;
	position: relative;
	display: flex;
	width: 100%;
}

.item_box_search {
	background: white;
	border: 2px solid var(--bgS);
	flex-grow: 1;
	border-radius: var(--bdR);
	display: flex;
	width: 100%;
}

.ml_search_selection {
	align-items: center;
	background: var(--bgW);
	border-radius: 4px;
	color: var(--bgL);
	display: flex;
	margin: 3px 0 3px 3px;
}

.search_selection_item {
	display: block;
	margin-left: 8px;
	margin-right: 2px;
	max-width: 170px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search_selection_icon {
	height: 16px;
	margin-right: 4px;
	width: 16px;
}

.ml_item_box_search {
	position: relative;
	display: flex;
	height: 100%;
	width: 100%;
}

.layout_header_search .catalog_ml_search {
}

.catalog_search {
	position: relative;
	flex-grow: 1;
	display: flex;
	width: 100%;
}

.catalog_ml_search {
	color: var(--bgT);
	z-index: 3;
	width: 100%;
	border: none;
	position: relative;
	background-color: var(--t);
}

.button_search_clear {
	z-index: 5;
	position: absolute;
	right: 0;
	width: var(--height-components);
	height: 100%;
	padding: 0;
	border: none;
	background: var(--t);
}

.go_button_search_clear {
	width: var(--height-components);
	height: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.go_button_search_clear svg {
	display: flex;
	fill: var(--bgL);
}

.search_button {
	position: relative;
	flex-shrink: 0;
	border-radius: 0 var(--bdR) var(--bdR) 0;
	padding: 8px 22px 10px 20px;
	height: var(--height-components);
	display: inline-flex;
	background-color: var(--t);
}

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

.search_conclusion {
	position: absolute;
	z-index: 29;
	top: 100%;
	left: 0;
	width: 100%;
	display: none;
	background: white;
	border-radius: var(--bdR);
	box-shadow: 0px 6px 20px rgba(0, 16, 61, 0.1);
	margin-top: 22px;
}

.active_search+.search_conclusion {
	z-index: 99;
	display: block;
}

.autocomplete_content {
	padding: 0px 16px;
}

.autocomplete_scroll_container {
}

.autocomplete_list {
}

.acplt_t_box {
	padding: 0 16px;
}

.acplt_t_box+.acplt_t_box a {
	border-top: 1px solid var(--color-border);
}

.acplt_t_box a {
	display: flex;
	align-items: center;
	padding: 12px 0 14px;
}

.acplt_t_box a svg {
	display: flex;
	margin-right: 8px;
	color: var(--bgL);
}

.autocomplete_list_catalog {
}

.search_item_parse {
	border-bottom: 1px solid var(--color-border);
}

.search_item_parse+.search_item_parse {
}

.search_item_parse_link {
	display: flex;
	align-items: center;
	padding: 12px 0px;
	cursor: pointer;
	border-radius: 8px;
}

.parse_link_selected  .autocomplete_text_name {
	color: var(--bgS);
}

.search_item_parse_text {
	display: flex;
	flex-grow: 1;
	margin-left: 12px;
}

.search_item_parse_right {
	display: flex;
	flex-shrink: 0;
	margin-left: auto;
}

.search_item_parse_right:after {
	width: 20px;
	height: 20px;
	content: "";
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="%23000" fill-rule="evenodd" d="M10 20l-1.4-1.4 6.6-6.6-6.6-6.6L10 4l8 8z"/></svg>');
	background-size: contain;
	opacity: 1;
}

.search_item_parse_img {
	display: flex;
	align-items: center;
	position: relative;
}

.item_parse_text_pic {
	width: 42px;
	height: 42px;
	object-fit: contain;
	user-drag: none;
	-webkit-user-drag: none;
	touch-action: pan-y;
	-ms-touch-action: pan-y;
	border-radius: 6px;
}

.autocomplete_text_box {
	display: block;
}

.autocomplete_text_name {
}

.autocomplete_text_id {
	display: flex;
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	color: var(--bgL);
}

.autocomplete_text_sku {
}

.autocomplete_text_param {
	margin-left: 10px;
	position: relative;
}

.autocomplete_text_param::before {
	content: '';
	display: block;
	border-radius: 50%;
	width: 4px;
	height: 4px;
	background-color: #868695;
	position: absolute;
	left: 0;
	top: 8px;
}

.autocomplete_text_param_num {
	margin-left: 12px;
}

.autocomplete_text_sku_text {
}

.autocomplete_text_sku_num {
	margin-left: 6px;
}

.search_request_content_none {
}

.darken_search {
	cursor: pointer;
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
	animation: darken_search .2s ease-out forwards;
	animation-play-state: running;
}

@keyframes darken_search {
	0% {
		background: rgba(3,8,13,.0);
	}

	100% {
		background: rgba(3,8,13,.2);
	}
}

/* SEARCH END */














/* CATALOG START */

.darken {
	cursor: pointer;
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 18;
	animation: darken .3s ease-out forwards;
	animation-play-state: running;
}

@keyframes darken {
	0% {
		background: rgba(3,8,13,.0);
	}

	100% {
		background: rgba(3,8,13,.2);
	}
}

.darken_close {
	animation: darken-close .0s ease-out forwards;
	animation-play-state: running;
}

@keyframes darken-close {
	0% {
		background: rgba(3,8,13,.1);
	}

	100% {
		background: rgba(3,8,13,.0);
	}
}

.ml_catalog {
	position: fixed;
	top: calc(var(--header-menu-height) + var(--header-height));
	background-color: white;
	width: 100%;
	z-index: 32;
}

.menu_fixed .ml_catalog {
	top: calc(var(--header-menu-height) + var(--header-height) - 38px);
}

.ml_catalog_box {
	display: flex;
	flex-direction: row;
}

.ml_catalog_left {
}

.ml_catalog_main {
	border-right: 1px solid var(--bgB);
	padding-right: 16px;
	padding-bottom: 18px;
}

.ml_catalog_header {
	display: flex;
	width: var(--width-left-box);
	flex-direction: column;
	height: 100%;
	min-height: 616px;
}

.ml_catalog_name {
	white-space: nowrap;
	outline: none;
	background-color: var(--t);
	display: flex;
	align-items: center;
	padding: 0 8px 0 12px;
	border-radius: var(--bdR);
	width: 100%;
}

.ml_catalog_name_active, .ml_catalog_name_default {
	background-color: var(--bgW);
}

.ml_catalog_link {
	flex-grow: 1;
	display: flex;
	align-items: center;
	max-width: 100%;
	outline: none;
	height: var(--height-catalog);
}

.ml_catalog_link:after {
	width: 20px;
	height: 20px;
	content: "";
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="%23000" fill-rule="evenodd" d="M10 20l-1.4-1.4 6.6-6.6-6.6-6.6L10 4l8 8z"/></svg>');
	background-size: contain;
	opacity: 1;
}

.ml_category_icon {
	display: inline-block;
	width: 19px;
	height: 24px;
	margin-right: 12px;
	vertical-align: middle;
	background: transparent 50% 50% no-repeat;
	background-size: 100%;
}

.ml_category_name {
	flex: 1;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}

.ml_catalog_right {
	flex: 1;
	flex-grow: 1;
	padding-left: 36px;
	padding-bottom: var(--padding-box);
	padding-top: 4px;
}

.ml_catalog_row {
	display: none;
}

.ml_catalog_row_active {
	display: block;
}

.ml_catalog_row_default {
	display: block;
}

.ml_catalog_r_link {
	font-size: 28px;
	line-height: 36px;
	font-weight: bold;
	margin-bottom: var(--padding-box);
	display: inline-block;
	outline: none;
}

.ml_catalog_r_item {
	overflow: hidden;
	height: auto;
	display: flex;
	width: 100%;
}

.ml_catalog_ul_box {
	width: 50%;
	display: block;
}

.ml_cat_ul_item {
	display: flex;
}

.ml_cat_ul_item+.ml_cat_ul_item {
	margin-top: 16px;
}

.ml_cat_ul_item_link {
	margin-top: 24px;
	display: inline-block;
}

.ml_cat_ul_item_all {
	color: var(--bgL);
	margin-right: 2px;
}

.ml_cat_ul_item_a_all {
	display: flex;
	align-items: center;
	border: 1px solid var(--bgB);
	padding: 8px 6px 8px 12px;
	border-radius: var(--bdR);
}

.ml_cat_ul_item_a_all:after {
	width: 20px;
	height: 20px;
	content: "";
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbC1vcGFjaXR5PSIuOSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTAgMjBsLTEuNC0xLjQgNi42LTYuNi02LjYtNi42TDEwIDRsOCA4eiIvPjwvc3ZnPg==);
	background-size: contain;
	opacity: 0.4;
}

.ml_cat_ul_item_a {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: var(--bdR);
}

.ml_cat_ul_item_a .ml_cat_ul_item_img::before {
	content: '';
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	height: 26px;
	width: 26px;
	display: flex;
	margin-right: 14px;
}

.ml_cat_ul_item_box {
}

@media (hover: hover) and (pointer: fine) {
	.ml_cat_ul_item_a:hover {
		color: var(--bgS);
		text-decoration: underline;
	}
}


/* CATALOG END */


















/* TOP_HEADER START */

.container_menu_header {background-color: white;position: relative;z-index: 1;}

.box_menu_header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	height: var(--header-menu-height);
	white-space: nowrap;
}

.left_box_menu_header, .right_box_menu_header, .point_header, .city, .manager {
	align-items: center;
	display: flex;
}

.right_box_menu_header {
	gap: 24px;
}

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

.city {
	cursor: pointer;
}

.city svg {
	margin-right: calc(var(--padding-adt) / 4);
	color: var(--bgS);
	display: flex;
}

.manager span {
	margin-right: calc(var(--padding-adt) / 4);
}

.contacts_r {
	margin-left: var(--padding-box);
}

.manager {
	cursor: pointer;
}

.manager svg {
	display: flex;
}







/* TOP_HEADER END */
















/* SLIDER */

.container_box {
	max-width: calc(var(--max-row-width));
	margin: 0 auto;
	padding: 0 var(--padding-row);
}

.banner_box {
	position: relative;
	margin-top: 18px;
}

.slide_wrapper {
	position: relative;
	overflow: hidden;
	height: var(--height-banner);
	background-color: var(
	--bgW);
	border-radius: var(--bdR);
}

.banner_item {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.slide_item {
	display: flex;
	white-space: nowrap;
	will-change: transform;
}

.slide_box {
	position: relative;
	width: 100%;
}

.banner_link {
	display: flex;
	justify-content: center;
}

.slide_img {
	width: 100%;
	height: var(--height-banner);
	object-position: 10% center;
}

.ts_control_btn {
}

.ts_paging {
	bottom: 40px;
	display: flex;
	height: 0;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
}

.ts_paging_btn {
	background-color: white;
	border-radius: 50%;
	box-shadow: 0 4px 16px 1px rgb(0 26 52 / 16%);
	box-shadow: var(--boxShadow);
	cursor: pointer;
	display: block;
	height: 10px;
	margin: 5px;
	opacity: .2;
	transition: all .4s;
	width: 10px;
}

.ts_paging_active {
	opacity: .6;
}

.ts_btn {
	-webkit-touch-callout: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	color: inherit;
	cursor: pointer;
	display: block;
	font-size: inherit;
	font-weight: inherit;
	line-height: 0;
	margin: 0;
	padding: 0;
	position: relative;
	text-decoration: none;
	white-space: normal;
	height: 44px;
	width: 44px;
}

.ts_control_btn {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 50%;
}

.ts_button {
	position: absolute;
	transform: translateY(-50%);
	display: inline-flex;
	border-radius: 50%;
	background: white;
	box-shadow: 0 4px 16px 0 rgba(8,9,10,.08);
}

.ts_left {
	left: 16px;
}

.ts_right {
	right: 16px;
}

.ts_prev {
}

.ts_next {
}







/* SLIDER END */



















/* MANAGER */


.blackout {
	cursor: pointer;
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	animation: overlay .3s ease-out forwards;
	animation-play-state: running;
}

@keyframes overlay {
	0% {
		background: rgba(3,8,13,.0);
	}

	100% {
		background: rgba(3,8,13,.2);
	}
}

.blackout_box {
	background-color: white;
	height: 100vh;
	width: 424px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 101;
	animation: manager-box .3s ease-in-out forwards;
	animation-play-state: running;
	touch-action: none;
	-webkit-user-drag: none;
	overflow: hidden;
	border-radius: 24px 0 0 24px;
}

@keyframes manager-box {
	0% {
		right: -424px;
	}

	100% {
		right: 0;
	}
}

.blackout_close {
	animation: overlay-close .3s ease-out forwards;
	animation-play-state: running;
}

@keyframes overlay-close {
	0% {
		background: rgba(3,8,13,.6);
	}

	100% {
		background: rgba(3,8,13,.0);
	}
}

.blackout_box_close {
	animation: manager-box-close .3s ease-out forwards;
	animation-play-state: running;
}

@keyframes manager-box-close {
	0% {
		right: 0;
	}

	100% {
		right: -424px;
	}
}

.manager_box {
	position: relative;
	padding: var(--padding-row);
	height: 100%;
}

.manager_box:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 12px;
	z-index: 10;
	width: 4px;
	height: 64px;
	border-radius: 2px;
	background-color: var(--bgW);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.manager_form_header {
	margin-bottom: var(--padding-box);
}

.manager_form_box {
	height: 100%;
	flex-direction: column;
	display: flex;
}

.manager_form_box_item {
	flex: 1 1 auto;
}

.manager_form_item {
}

.manager_form_item+.manager_form_item {
	margin-top: calc(var(--padding-row) / 2);
}

.r_m_row_wrapper {
	position: relative;
	z-index: 1;
	border-radius: 20px;
	padding: 20px;
	background-color: var(--bgW);
	min-height: 80px;
}

.r_m_row_content {
	display: flex;
	align-items: flex-start;
	width: 100%;
}

.r_m_row_photo {
	position: relative;
	margin-right: calc(var(--padding-box) / 2);
}

.r_m_row_photo_inner {
	width: 48px;
	height: 48px;
}

.r_m_row_photo_inner svg {
	width: 100%;
	height: 100%;
	color: #b3bcc5;
	display: flex;
}

.r_m_row_body {
	width: 100%;
}

.r_m_row_top {
}

.r_m_row_manager {
}

.r_m_row_title {
}

.r_m_row_row {
}

.r_m_row_cell {
}

.r_m_row_val {
	font-weight: bold;
	white-space: nowrap;
	font-size: 18px;
	line-height: 26px;
}

.r_m_row_additional {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 6px;
}

.r_m_row_additional_social {
	display: flex;
}

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

.r_m_row_additional_social_item {
	display: flex;
}

.r_m_row_additional_social_item+.r_m_row_additional_social_item {
	margin-left: 4px;
}

.r_m_row_additional_mail {
	display: flex;
}

.r_m_row_additional_mail a {
	background: white;
	padding: 4px 12px;
	display: flex;
	border-radius: 8px;
	font-size: 14px;
	line-height: 18px;
}

.manager_form_footer {
	display: flex;
	justify-content: center;
	color: var(--bgL);
	font-size: 12px;
	line-height: 16px;
}





/* MANAGER END */










/* LOCATION START */


.blackout_location {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	animation: overlay-location .2s ease-out forwards;
	animation-play-state: running;
}

@keyframes overlay-location {
	0% {
		background: rgba(3,8,13,.0);
	}

	100% {
		background: rgba(3,8,13,.2);
	}
}

.blackout_location_close {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	animation: overlay-location-close .2s ease-out forwards;
	animation-play-state: running;
}

@keyframes overlay-location-close {
	0% {
		background: rgba(3,8,13,.6);
	}

	100% {
		background: rgba(3,8,13,.0);
	}
}

.location_r {
	bottom: 0;
	outline: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	z-index: 101;
	left: 50%;
	transform: translateX(-50%);
}

.container_location {
	height: 100%;
	overscroll-behavior: contain;
	position: relative;
}

.box_container_location {
	display: flex;
	justify-content: center;
	min-height: calc(100vh - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
	align-items: center;
}

.location_r_open .box_container_location {
	animation: open_region .3s ease-out forwards;
	animation-play-state: running;
}

@keyframes open_region {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.location_r_close .box_container_location {
	animation: close_region .3s ease-out forwards;
	animation-play-state: running;
}

@keyframes close_region {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.location_r_box {
	position: relative;
	box-shadow: 0px 6px 20px rgba(0, 16, 61, 0.1);
}

.location_r_box_cx {
	background: #fff;
	min-height: 100px;
	min-width: 404px;
	border-radius: var(--border-radius);
}

.location_r_box_cx_row {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: auto;
}

.r_city {
	display: flex;
	flex-direction: column;
	padding: 36px 0;
	height: 404px;
}

.r_city_cx {
	padding: 0 var(--padding-row);
	flex-shrink: 0;
}

.form_search_ml {
	margin-top: 20px;
}

.form_search_ml_item {
	display: block;
}

.form_search_box {
	font-size: 16px;
	border: 2px solid var(--bgS);
	border-radius: var(--bdR);
	background-color: #fff;
	background-clip: padding-box;
	position: relative;
	display: flex;
	transition: border-color .2s var(--default-easing);
	will-change: border-color;
	overflow: hidden;
}

.form_search_box:hover, .form_search_box:focus {
	border-color: var(--bgS);
}

.active_placeholder {
	border-color: var(--bgS);
}

.form_search_r {
	font-family: var(--font);
	color: var(--bgT);
	z-index: 3;
	width: 100%;
	margin: 0;
	font-size: var(--body-font-size);
	border: none;
	border-radius: 0;
	outline: none;
	background: var(--t);
	-webkit-appearance: none;
	height: auto;
	position: relative;
	padding: 10px 16px;
	line-height: 1;
}

.r_city_erase {
	height: auto;
	cursor: pointer;
}

.r_city_erase_box {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	width: var(--padding-row);
}

.r_city_cx_box {
	flex-shrink: 1;
	height: 100%;
	overflow: hidden;
	position: relative;
	margin-top: 16px;
	padding: 0 var(--padding-row);
}

.r_city_cx_box_cx {
	max-height: 100%;
	overflow: auto;
}

.r_city_cx_box_cs {
}

.r_city_item {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
}

.region_confirm {
	margin-top: 10px;
}

.r_city_item_region {
	display: flex;
	flex-direction: column;
	width: auto;
}

.r_city_item_region_label {
	flex-shrink: 0;
}

.r_city_item_r_l_d {
	border: 1px solid var(--icon-color);
	flex: 0 0 16px;
	height: 22px;
	max-width: 22px;
	position: relative;
	width: 22px;
	margin-left: 5px;
	display: flex;
	border-radius: 50%;
}






/* LOCATION END */









/* FILTER START */


.filter {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	position: relative;
	width: 206px;
}

.filter_box {}

.filter_box_sticky {transform: translate3d(0px, 0px, 0px);position: fixed;bottom: 0px;}



.filter_item {
	margin-bottom: 24px;
}

.filter_line_box {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.filter_line_box .chosen a {
	border: 2px solid var(--bgS);
}

.filter_line_item {
}

.filter_line_item a {
	max-width: 100%;
	min-height: 30px;
	padding: 3px 10px 4px;
	cursor: pointer;
	border-radius: 7px;
	border: 1px solid var(--input-form);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	max-height: 30px;
}

@media (hover: hover) and (pointer: fine) {
	.filter_line_item a:hover:not(.filter_line_box .chosen a) {
		border-color: var(--input-form-hover);
	}
}

.filters_item_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	cursor: pointer;
	margin-bottom: 12px;
}

.filters_item_title {
	font-size: var(--body-font-size);
	font-weight: 500;
}

.filter_item ul {
	width: 100%;
}

.filter_item ul::-webkit-scrollbar {
	width: 6px;
}

.filter_item ul::-webkit-scrollbar-thumb {
	height: 30px;
	background-color: #d5d5d5;
	border-radius: 3px;
}

.filter_item ul::-webkit-scrollbar-track {
	background-color: transparent;
}

.filter_item ul::-webkit-scrollbar-thumb:hover {
	background: #646464;
}

.filter_item ul li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	width: 100%;
}

.filter_item ul li~li {
	margin-top: 12px;
}

.filter_item ul li a, .filter_item ul li .radio_button_label {
	cursor: pointer;
	position: relative;
	display: flex;
	padding-left: 28px;
	user-drag: none;
	-webkit-user-drag: none;
	touch-action: pan-y;
	-ms-touch-action: pan-y;
	line-height: 20px;
}

.filter_item ul li a::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	background: white;
	border: 1px solid var(--bgN);
	border-radius: 5px;
	position: absolute;
}

.filter_item ul li a:hover::before {
	border-color: #a9a8b0;
}

.filter_item ul li a:active::before {
	background: var(--bgS);
	border-color: var(--t);
}

.filter_item ul .chosen a::before {
	background: var(--bgS);
	border-color: var(--t);
}

.filter_item ul .chosen a:hover::before {
	background: var(--bgS);
	border-color: var(--t);
}

.filter_item ul li a::after {
	content: '';
	display: block;
	width: 6px;
	height: 10px;
	top: 3px;
	left: 7px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.filter_item .count {
	display: none;
}

.filter_text_color {
	display: inline-block;
	vertical-align: middle;
	width: 22px;
	height: 22px;
	min-width: 22px;
	min-height: 22px;
	border: 1px solid transparent;
	border-radius: 50%;
	margin-right: 12px;
}

.filter_orderby_item {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
}

.radio_button {
	cursor: pointer;
	height: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}

.radio_button_label {
	cursor: pointer;
	position: relative;
	display: flex;
	padding-left: 28px;
	user-drag: none;
	-webkit-user-drag: none;
	touch-action: pan-y;
	-ms-touch-action: pan-y;
	line-height: 20px;
}

.radio_with_text_decor {
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 0;
	border: 2px solid var(--input-form);
	border-radius: 50%;
	background: #fff;
}

@media (hover: hover) and (pointer: fine) {
	.filter_orderby_item:hover .radio_with_text_decor:hover:not(.radio_button:checked+.radio_with_text_decor) {
		border-color: var(--input-form-hover);
	}
}

.radio_button:checked+.radio_with_text_decor {
	border: 2px solid var(--bgS);
}

.radio_button:checked+.radio_with_text_decor::after {
	content: '';
	width: 10px;
	height: 10px;
	top: 3px;
	left: 3px;
	background: var(--bgS);
	border-radius: 50%;
	position: absolute;
}

.radio_with_text_text {
}

.filter_price {
	display: flex;
	width: 100%;
}

.filter_price_item {
	width: calc(50% - 4px);
}

.filter_price_item~.filter_price_item {
	margin-left: 8px;
}

.filter_price_title {
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	color: var(--bgL);
	margin-bottom: 6px;
}

.filter_price_input_search {
	width: 100%;
	position: relative;
}

.filter_search_price {
	padding: 0 12px;
	height: 36px;
	background-color: var(--bgW);
	border-color: var(--bgW);
}

.filter_search_price:hover, .filter_search_price:focus {
	background-color: #eeeef3;
	border-color: #eeeef3;
}

.filter_price_button {
	margin-top: 8px;
	width: 100%;
}

.apply {
	background-color: rgba(0,150,255,.12);
	color: var(--bgS);
	font-weight: 400;
	height: 36px;
}



/* FILTER END */













/* SHOP START */

.page_board {
	width: auto;
	display: flex;
	flex-wrap: nowrap;
}

.catalog_page {
	display: flex;
	flex: 1 1 100%;
	flex-direction: column;
	position: relative;
	margin-left: 26px;
}

.tags_item {
	margin-bottom: 16px;
	border-bottom: 1px solid var(--bgB);
	padding-bottom: 16px;
}

.tags_item ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tags_item ul li {
	display: flex;
	position: relative;
}

.tags_item ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--bgS);
	color: white;
	border-radius: 16px;
	padding: 5px 8px 5px 12px;
	transition: color .15s ease-in-out,background .15s ease-in-out;
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
}

@media (hover: hover) and (pointer: fine) {
	.tags_item ul li a:hover {
		background-color: var(--second-hover-color);
	}
}

.tags_item ul li a:after {
	content: '';
	background-image: url(/static/media/svg/delete.svg?3);
	background-size: 16px 16px;
	display: flex;
	width: 16px;
	height: 16px;
	margin-left: 8px;
}

.search_cats {
}

.cats_item {
	margin-bottom: var(--padding-adt);
}

.search_cats .product-categories {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.search_cats .cat-item {
}

.search_cats .cat-item a {
	padding: 0px 14px 0px 12px;
	display: flex;
	position: relative;
	align-items: center;
	height: 44px;
	overflow: hidden;
	border-radius: var(--bdR);
	box-shadow: 0 4px 12px 0 rgba(8,9,10,.08);
}

.search_cats .cat-item a::before {
	content: '';
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	height: 26px;
	width: 26px;
	display: flex;
	margin-right: 8px;
	mix-blend-mode: darken;
	margin-top: 2px;
}

.products_card_list {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(5,1fr);
}

.related_products .products_card_list {
	grid-template-columns: repeat(6,1fr);
}


.product_featured .products_card_list {
	grid-template-columns: repeat(6,1fr);
}



.categories .products_card_list {grid-template-columns: repeat(7,1fr);}

.catalog_page .product_card {
}

.catalog_page .category_card {
	position: relative;
	width: calc(100%/5);
	padding: 8px;
}

.product_featured {
	position: relative;
}


.categories .category_card {
	position: relative;
}

.category_card_box {
	position: relative;
	padding-top: 100%;
	height: 0;
	background-color: var(--bgW);
	border-radius: var(--bdR);
}


.product_card_wrapper {
	height: 100%;
	position: relative;
}



.product_card_relative {
	position: relative;
	height: 100%;
}



.category_card_wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}





.product_card_brand_logo {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	pointer-events: none;
}

.product_card_img_box .product_card_tips {
	display: flex;
	position: absolute;
	left: 10px;
	bottom: 10px;
	gap: 4px;
	flex-direction: column;
}

.product_card_link {
	flex-direction: column;
	display: flex;
	position: relative;
	height: 100%;
}

.product_card_link:hover::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    z-index: 0;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(36,36,36,.1);
    border-radius: calc(var(--bdR) + 6px);
}


.category_card_link {
}

[data-id-cat="1727"]:before, [data-id-cat="147"]:before, [data-id-cat="2137"]:before, [data-id-cat="140"]:before, [data-id-cat="16"]:before {
	content: '';
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="%23999" focusable="false" aria-hidden="true"%3E%3Cpath d="M8.003 1.224C8.096.79 7.91.342 7.547.125a.883.883 0 0 0-1.109.167L1.774 5.289a1.055 1.055 0 0 0-.203 1.09c.144.374.483.618.86.618h2.374l-.803 3.78c-.092.435.095.882.457 1.098a.883.883 0 0 0 1.109-.168l4.659-4.998c.266-.286.346-.716.202-1.09-.144-.374-.483-.618-.86-.618H7.196l.807-3.777Z" fill="%23fff"%3E%3C/path%3E%3C/svg%3E');
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
	display: flex;
	position: absolute;
	right: 12px;
	top: 12px;
	background-color: var(--bgS);
	width: 20px;
	height: 20px;
	border-radius: var(--bdR);
}

.category_card_middle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.product_card_middle {
	flex: 1 1 auto;
	height: 100%;
}



.product_card_tip_box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: absolute;
    left: 96px;
    top: 16px;
    z-index: 2;
    pointer-events: none;
    gap: 4px;
}


.product_card_tip {
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	font-size: 13px;
	height: 23px;
	line-height: 1;
	padding: 0px 10px;
	border-radius: calc(23px/2);
	color: white;
	width: fit-content;
}

.svg-icon {
    fill: currentColor;
    display: flex;
    position: relative;
    width: 16px;
    height: 16px;
    justify-content: center;
    align-items: center;
}


.badge-box {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    height: 28px;
    padding: 0px 10px;
    border-radius: 100px;
    width: fit-content;
    text-transform: uppercase;
    gap: 6px;
}

.badge-box[data-badge="black-friday"] {
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
}

.badge-box[data-badge="high-discount"] {display: none;}

.badge-box[data-badge="best-seller"] {display: none;}




.badge-box[data-badge="black-friday"]::after {
    content: "";
    position: absolute;
    top: -88px;
    right: -30px;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    z-index: -1;
    background: radial-gradient(94.64% 94.64% at 31.25% 5.36%, #c339c5 19.41%, #0095f0 59.73%, #40f9ce 99.25%);
    background-position: center;
    background-size: cover;
    animation: rotateGradient 15s linear infinite;
    transform-origin: center;
    aspect-ratio: 1 / 1;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}






.product_card_tip:last-child {
	margin-right: 0;
}

.tip_sale {
	background: var(--bgR);
}

.tip_featured {
	background-color: #a73afd;
}

.tip_nonds {
	background: #06ca99;
}

.tip_savings {
	background: #ffd83a;
	color: var(--bgT);
}

.tip_rate {
	background: white;
	color: var(--bgT);
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	font-size: 13px;
	height: 23px;
	line-height: 1;
	padding: 0px 10px;
	border-radius: calc(23px/2);
}

.product_card_rate {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    left: 10px;
    top: 10px;
}

.tip_rate svg {
    display: flex;
    color: var(--bgJ);
}
.tip_rate span {
    margin-left: 4px;
}

._norate svg {
    color: var(--bgK);
}


.product_card_img_box, .category_card_img_box {
	position: relative;
	z-index: 2;
}

.product_card_img, .category_card_img {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--bgW);
	border-radius: var(--bdR);
	overflow: hidden;
}

.product_card_info_box {
	z-index: 5;
	position: relative;
	margin-top: 14px;
}

.category_card_info_box {
	padding: 2px 14px 16px 14px;
	flex-grow: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.product_card_thumbnail {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	mix-blend-mode: darken;
	max-height: 100%;
	max-width: 100%;
}

.category_card_thumbnail {
	object-fit: contain;
	mix-blend-mode: darken;
	flex-grow: 1;
	height: 0;
	width: 100%;
	padding-top: 10px;
}

.product_card_price {letter-spacing: -.4px;}

.details_mini {
	margin-top: 2px;
}

.details_full {
    display: none;
}

.details_mini_wrap {font-size: 13px;color: var(--bgL);}

.product_card_title {
	margin-top: 6px;
}

.category_card_title {
	text-align: center;
}

.product_card_title span, .category_card_title span {
	display: inline-block;
	font-weight: 500;
}

.category_card_title span {
};

.product_card_price_box {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
}

.product_card_price_box .price_actual {
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
}

.product_card_price_box_single .price_actual {
	font-size: 28px;
	line-height: 36px;
	font-weight: bold;
}

.product_card_price_box .price_sale {
	font-size: 18px;
	font-weight: bold;
	margin-right: 6px;
}

.product_card_price_box_single .price_sale {
	font-size: 28px;
	line-height: 36px;
	font-weight: bold;
	margin-right: 8px;
	color: var(--bgR);
}

.product_card_price_box .price_old {
	font-size: 14px;
	font-weight: 400;
	color: var(--bgL);
	position: relative;
}

.product_card_price_box_single .price_old {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: var(--bgL);
	position: relative;
}

.product_card_price_box .price_old:before {
	border-top: 1px solid var(--bgR);
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
}

.product_card_price_box_single .price_old:before {
	border-top: 1px solid var(--alert-color);
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
}

.product_card_price_box .price_none {
	color: var(--bgT);
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
}

.product_card_price_box_single .price_none {
	font-size: 28px;
	line-height: 120%;
	font-weight: bold;
}

.product_card_bottom {
	display: inline-block;
	padding: 14px 0 0;
	z-index: 5;
	margin-top: auto;
}

.product_card_detailed {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	cursor: pointer;
}

.product_card_detailed_button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--bgS);
	border-radius: var(--bdR);
	padding: 0 24px;
	height: 36px;
	transition: color .15s ease-in-out,background .15s ease-in-out;
	width: 100%;
}

.product_card_detailed_button span {
	color: white;
	font-weight: 500;
	font-size: 13px;
	line-height: 1;
}

.product_card_detailed_button svg {
	color: white;
	margin-right: 6px;
	display: flex;
}


@media (hover: hover) and (pointer: fine) {
	.product_card_detailed_button:hover {
		background-color: var(--second-hover-color);
	}
}


.product_card_sku {
    margin-top: 4px;
}



.product_card_sku_text {
	color: var(--bgL);
	font-size: 13px;
}

.product_page_common_info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin: 10px 0 30px;
	font-size: 13px;
}



.common_info_sku_text, .common_info_brand_text {
	color: var(--bgL);
}

.common_info_sku_num, .common_info_brand_num {
	margin-left: 4px;
}

.product_page_grid_box {
}

.product_page_grid {
	width: auto;
	display: flex;
	flex-wrap: nowrap;
}

.product_page_slider_wrap {
	width: calc(100% - 516px);
}

.product_page_slider_sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 92px;
}

.product_page_slider_box {
	position: relative;
	margin-right: 48px;
}

.product_page_gallery {
}

.product_page_gallery_grid {
	display: flex;
}

.gallery_box {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	margin-left: 16px;
}

.img_main_resolution {
	position: relative;
	max-width: 100%;
	border-radius: 24px;
}

.img_main_resolution:after {
    background: rgba(57,86,115,.05);
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 24px;
    overflow: hidden;
}



.img_main {
            width: 100%;
            height: 100%;
            touch-action: pan-y;
            -ms-touch-action: pan-y;
            max-width: 100%;
            max-height: 700px;
            -o-object-fit: contain;
            object-fit: contain;
}

.photo_active {
	display: flex;
}

.photo_no_active {
}

.photo_zoom_preview {

}


.zoom_img {cursor: zoom-in;}


.slide_thumbnail {display: block;}

.slide_thumbnail_wrap {
	width: 64px;
	height: 64px;
	max-height: 64px;
}

.slide_thumbnail_wrap~.slide_thumbnail_wrap {
	margin-top: 8px;
}

.slide_thumbnail_line {
	text-align: center;
	border: 1px solid var(--t);
	border-radius: var(--bdR);
	overflow: hidden;
	padding: 4px;
	cursor: pointer;
	display: flex;
}

@media (hover: hover) and (pointer: fine) {
	.slide_thumbnail_line:not(.slide_thumbnail_active):hover {
		border-color: var(--light-bgS);
	}
}

.params_list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.another_product {
	max-width: 100%;
	padding: 6px 10px 6px;
	cursor: pointer;
	border-radius: 8px;
	border: 2px solid var(--bgB);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	position: relative;
}

.another_product:hover .another_product_img {
	display: block;
}

.another_product_img {
	display: none;
	z-index: 10;
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%) translateY(20px);
	width: 120px;
	height: 120px;
}

.another_product_img_box {
	background-color: white;
	border-radius: var(--bdR);
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,.1);
	width: 120px;
	height: 120px;
	padding: 16px;
}

.another_product_img::before {
	content: '';
	border: 10px solid transparent;
	border-bottom-color: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 100%;
}

.another_product_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	user-drag: none;
	touch-action: pan-y;
}

@media (hover: hover) and (pointer: fine) {
	.another_product:not(.another_product_current):hover {
		border-color: var(--bgS);
	}
}

.another_product_current {
	scroll-snap-align: end;
	border-color: var(--bgS);
	pointer-events: none;
}

.slide_thumbnail_active {
	border-color: var(--bgS);
	cursor: default;
	pointer-events: none;
	box-shadow: none;
}

.slide_thumbnail_img {
	height: 100%;
	width: 100%;
}

.product_page_options {
	width: 516px;
	display: block;
	flex-shrink: 0;
}

.product_page_options_wpar {
	position: relative;
}

.product_card_price_single {
}

.product_card_price_box_single {
}

.product_val{
    margin-top: 6px;
    color: var(--bgL);
}

.product_page_about_excerpt {
}

.product_page_options_heading {
	font-size: 17px;
	font-weight: bold;
}

.details_additional_box {
	margin-top: 10px;
}

.details {
	margin-top: 12px;
}

.details_wrap {
}

.details_additional+.details_wrap {
	margin-top: 16px;
}

.details_wrap+.details_wrap {
	margin-top: 6px;
}

.details .details_content {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
	font-size: 13px;
}

.details_mini .details_content {
	align-items: center;
	display: flex;
	justify-content: flex-start;
}

.details_label {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--bgL);
}

.details_mini .details_decor {
	display: flex;
	align-items: center;
}

.details .details_decor {
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzIiBoZWlnaHQ9IjEiPjxyZWN0IGZpbGw9IiNmZmYiIHdpZHRoPSIzIiBoZWlnaHQ9IjEiLz48cmVjdCBmaWxsPSIjOGU5MGE3IiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PC9zdmc+);
	height: 1px;
	margin: 0 12px;
	flex-grow: 1;
	opacity: 0.5;
}

.details_value {
	text-align: left;
	width: 50%;
}

.product_page_about_set {
}

.products_set_box {
	margin-top: 16px;
	border: 1px solid var(--bgB);
	border-radius: var(--bdR);
}

.products_set_item {
	padding: 12px 16px;
	position: relative;
	width: 100%;
}

.products_set_item+.products_set_item {
	border-top: 1px solid var(--bgB);
}

.products_set_item_side {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}

.products_set_preview {
	width: 48px;
	margin: 0 16px 0 0;
	flex-shrink: 0;
	position: relative;
}

.products_set_preview a {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
}

.products_set_preview img {
	height: 48px;
	width: 48px;
	border-radius: var(--bdR);
}

.products_set_choose {
	min-width: 108px;
	display: flex;
	justify-content: flex-end;
}

.products_set_side_wrap {
	display: flex;
	width: 100%;
	align-items: center;
}

.products_set_desc {
	display: flex;
	flex-direction: column;
	width: calc(100% - 16px);
}

.products_set_desc_name {
}

.products_set_desc_name a {
}

.products_set_desc_price {
	margin-top: 2px;
}

.products_set_desc_price .price_sale {
	font-weight: bold;
	margin-right: 6px;
}

.products_set_desc_price .price_actual {
	font-weight: bold;
}

.products_set_desc_price .price_old {
	color: var(--bgL);
	position: relative;
}

.products_set_desc_price .price_old:before {
	border-top: 1px solid var(--alert-color);
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
}

.products_set_choose_btn {
	width: 100%;
	padding: 8px 16px;
}

@media (hover: hover) and (pointer: fine) {
	.products_set_choose_btn:hover {
		background-color: var(--second-hover-color);
	}
}

.products_set_choose_btn_added {
	background: var(--bgA);
	color: var(--bgS);
	width: 100%;
}

.item_add_choose {
	white-space: nowrap;
}

.product_page_options_excerpt_box {
	margin-top: 10px;
}

.options_excerpt_box , .details_additional_text {
	display: inline-block;
	line-height: 160%;
	font-size: 13px;
}

.details_additional_text_main {
	margin-bottom: 8px;
}

.details_additional_text .box_files {
}

.details_additional_text .box_files+.box_files {
	margin-top: 6px;
}

.details_additional_text .link_files {
	color: var(--bgS);
	text-decoration: underline;
	font-size: var(--body-font-size);
	font-weight: 400;
}

.details_additional_text li {
	position: relative;
	padding-left: 16px;
}

.details_additional_text li+li {
	margin-top: 6px;
}

.details_additional_text li:before {
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	background-color: var(--bgS);
	position: absolute;
	left: 0;
	top: 6px;
	border-radius: 50%;
}

.product_page_about_warnings {
}

.warnings_text {
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	color: var(--bgL);
	display: inline-block;
}

.product_page_brand_logo {
	display: inline-block;
}

.brand_logo_box {
	padding: 4px 8px;
	border-radius: var(--bdR);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: rgba(255,255,255,.6);
	backdrop-filter: blur(20px);
}

.brand_logo {
	padding: 2px;
	object-fit: cover;
	width: 68px;
	height: auto;
}

.product_page_about_specifications {
}

.button_basket .quantity {
	margin-left: 16px;
}

.quantity {
	display: flex;
	justify-content: center;
}

.product_page_options .count_input_number {
	display: flex;
	border-radius: var(--bdR);
	overflow: hidden;
	width: 100%;
	height: 56px;
	background: var(--bgW);
}

@media (hover: hover) and (pointer: fine) {
	.product_page_options .count_input_number:hover {
		background: var(--bgW);
	}
}

.product_page_options .count_minus, .product_page_options .count_plus {
	display: flex;
}

.product_page_options .count_input_button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 100%;
	cursor: pointer;
}

.product_page_options .count_input_button svg {
	display: flex;
	color: var(--bgT);
}

.product_page_options .quntity_input_box {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 36px;
}

.product_page_options .count_numeric {
	border: none;
	height: calc(var(--height-components) - 4px);
	text-align: center;
	font-size: 18px;
	line-height: 24px;
	cursor: default;
	background-color: var(--t);
	padding: 0;
}

.button_basket {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	margin-top: 16px;
}

.add_button {
	width: 100%;
	height: 56px;
}


.add_button_collector {
	pointer-events: none;
}

.added {
	min-width: 100%;
	background-color: var(--bgA);
	color: var(--bgS);
	height: 56px;
}

@media (hover: hover) and (pointer: fine) {
	.add_button:hover {
		background-color: var(--second-hover-color);
	}
}

@media (hover: hover) and (pointer: fine) {
	.added:hover {
		background-color: var(--bgA);
	}
}

.item_add_button, .item_added_button {
	text-align: center;
	font-size: 17px;
	font-weight: 500;
}

.delivery {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 20px;
}

.delivery_decor, .pickup_decor {
	display: flex;
	align-items: center;
	padding-top: 2px;
}

.delivery_decor:before, .pickup_decor:before, .details_mini .details_decor:before {
	display: flex;
	content: "";
	margin: 0 6px 0 7px;
	border-radius: 50%;
	width: 4px;
	height: 4px;
	background-color: var(--bgL);
}

.delivery_item {
	color: var(--bgS);
}

.pickup {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2px;
}

.pickup_item {color: var(--bgS);}

@media (max-width: 1370px) {



.products_card_list {
grid-template-columns: repeat(4,1fr);
}

	

.product_featured .products_card_list {
grid-template-columns: repeat(5,1fr);
}


.product_featured .product_card:nth-last-child(5n) {
display:none;
}

.related_products .products_card_list {
	grid-template-columns: repeat(5,1fr);
}

.related_products .product_card:nth-last-child(5n) {
display:none;
}
	
	
}












/* SHOP END */





















/* breadcrumbs START */


.catalog_page_breadcrumbs {
	width: 100%;
	margin-bottom: 16px;
	margin-top: 16px;
}

.breadcrumbs {
	display: flex;
	align-items: baseline;
}

.breadcrumbs_list {
	color: var(--bgL);
	display: flex;
	flex-wrap: wrap;
	font-size: var(--body-font-size-m);
	align-items: center;
}

.breadcrumbs_item {
	align-items: baseline;
	margin-right: 24px;
	display: flex;
	flex-shrink: 0;
}

.breadcrumbs_item_end {
	overflow-wrap: break-word;
	word-break: break-word;
	max-width: 100%;
	align-items: baseline;
	display: flex;
	flex-shrink: 0;
}

.breadcrumbs_item_end span {
	display: flex;
	align-items: center;
	white-space: nowrap;
	color: var(--bgL);
}

.layout_order .breadcrumbs_item_end span {
	background-color: white;
}

.breadcrumbs_link {
	display: flex;
	align-items: center;
	white-space: nowrap;
	position: relative;
}

.layout_order .breadcrumbs_link {
	background-color: white;
}

.breadcrumbs_link:after {
	position: absolute;
	right: -15px;
	top: auto;
	content: "";
	width: 5px;
	height: 9px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='5' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.664 1.5l3 3-3 3' stroke='%2321201F' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.breadcrumbs_link svg {
	opacity: .4;
	margin-left: 2px;
}

/* breadcrumbs END */




/* title H1 START */

.catalog_title_wrap {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 24px;
}

.catalog_single_title_wrap {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	width: 100%;
}

.heading {
	font-size: 28px;
	line-height: 120%;
	overflow-wrap: break-word;
	word-break: break-word;
	font-weight: bold;
}

.goods_count {
	color: var(--bgL);
	white-space: nowrap;
	margin-top: 4px;
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	padding-left: 16px;
}


/* title H1 END */







/* pagination START */


.pagination {
	margin-top: var(--padding-box);
}

.pagination_wrapper {
	display: inline-flex;
	flex-wrap: wrap;
}

.pagination_item:not(.next):not(.prev) {
	width: 36px;
	min-width: 36px;
	height: 36px;
	border-radius: 50%;
	text-align: center;
}

.pagination_item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination_item~.pagination_item {
	margin-left: 8px;
}

.pagination_item.current {
	background-color: var(--bgS);
	color: #fff;
}

.pagination_item.next {
	white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
	.pagination_item:not(.current):not(.next):not(.prev):hover {
		background-color: var(--bgW);
	}
}



/* pagination END */








/* DOTS START */


.product_card_gallery {
	bottom: 0;
	display: flex;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 4;
	border-radius: var(--bdR);
	overflow: hidden;
}

.product_card_gallery_dot {
	flex: 1 1 auto;
	height: 100%;
}

.product_card_gallery_dot_second {
	align-items: center;
	bottom: 0;
	display: flex;
	height: 2px;
	justify-content: center;
	left: 0;
	position: absolute;
	width: 100%;
	opacity: 0;
	flex-flow: row nowrap;
	transition: opacity .2s;
}

.product_card_link:hover .product_card_gallery_dot_second {
	opacity: 1;
}

.dot_item {
	background: var(--bgB);
	margin-left: 2px;
	flex-grow: 1;
	height: 2px;
	margin-left: 4px;
	border-radius: 4px;
}

.dot_item:first-child {
	margin-left: 0;
}

.product_card_gallery_dot_second .active {
	background: var(--bgL);
}







/* DOTS END */







/* backtotop START */

.backtotop_r {
	left: 24px;
	bottom: 24px;
	position: fixed;
	z-index: 99;
}

.backtotop_button {
	border: none;
	background: var(--bgS);
	width: 48px;
	height: 48px;
	cursor: pointer;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}



/* backtotop END */










/* review STARS START */



.stars_line {
	white-space: nowrap;
	display: flex;
	align-items: center;
}



.stars_line svg {
    display: flex;
    color: var(--bgJ);
}

.stars_no svg {
	color: var(--bgK);
}

.stars_line span {
    margin-left: 6px;
    font-weight: 500;
}

/* review STARS END */




































































/* LOADER START */

.preload_container {
	bottom: 0;
	left: 0;
	padding-top: 72px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	z-index: 50;
}

.preload_container~.product_card .product_card_wrapper:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: white;
	opacity: .6;
	z-index: 10;
	overflow: hidden;
}

.loader {
	margin: auto;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10px;
	position: relative;
}

.loadmore {
	margin-top: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.preload_basket {
	outline: none;
	overflow: hidden;
	position: fixed;
	top: calc(50% - 16px);
	z-index: 101;
	left: 50%;
	transform: translate(-50%);
}

.loading_basket {
	outline: none;
	overflow: hidden;
	position: absolute;
	z-index: 101;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}




/* LOADER END */














/* NOTIFICATION START */

.action_notification {
	display: flex;
	justify-content: center;
	position: fixed;
	top: -200px;
	transition: top .5s cubic-bezier(.62,-.16,0,1.49);
	z-index: 1000;
	pointer-events: none;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	text-align: center;
}

.action_notification.show {
	top: 80px;
}

.action_notification .action_notification_text {
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	display: inline-flex;
	min-height: 36px;
	width: auto;
	max-width: calc(100vw - 32px);
	padding: 11px 16px 13px 37px;
	border-radius: 8px;
	background-color: rgba(36,36,36,.94);
	position: relative;
}

.action_notification .action_notification_text::before {
	content: '';
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	display: inline-block;
	position: absolute;
	z-index: 1;
	width: 7px;
	height: 13px;
	left: 17px;
	top: calc(50% - 9px);
}






/* NOTIFICATION END */

















/* DEFAULT START */


.download_link {
	display: inline-block;
}

.download_link a {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	border-radius: var(--bdR);
	background-color: var(--bgA);
	color: var(--bgS);
}


/* DEFAULT END */





















/* BASKET LK START */


.basket_empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: var(--padding-box);
}

.basket_empty_text {
	max-width: 365px;
	margin: 12px 0 24px 0;
	text-align: center;
	color: var(--bgL);
}

.basket_empty_btn {
}

.btn_main {
	display: flex;
	position: relative;
	align-items: center;
	white-space: nowrap;
	cursor: pointer;
	background-color: var(--bgS);
	border-radius: var(--bdR);
	overflow: hidden;
	padding: 8px 24px 10px;
	height: var(--height-components);
	color: white;
	font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
	.btn_main:hover {
		background-color: var(--second-hover-color);
	}
}

.preload_basket_text {
	margin-top: 12px;
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	display: inline-block;
}

.order {
	background-color: var(--bgW);
}

.order .layout_footer {
	border: none;
}

.order_title_wrap {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: var(--padding-box);
}

.layout_order {
	background-color: var(--bgW);
	padding-top: var(--padding-box);
}

.basket {
	display: flex;
}

.basket_form {
	margin-right: 40px;
	width: calc(100% - 380px);
}

.basket_form_sidebar {
	position: relative;
	width: 380px;
	display: block;
	flex-shrink: 0;
}

.sidebar_sticky_wrap {
	position: sticky;
	top: 10px;
}

.basket_form_contents {
	padding: var(--padding-box);
	border-radius: 20px;
	background-color: white;
}

.basket_list_content {
	position: relative;
}

.list_item_basket {
}

.hoverload {
	animation: hoverload .2s ease-out forwards;
	animation-play-state: running;
	pointer-events: none;
}

@keyframes hoverload {
	0% {
		opacity: 1;
	}

	100% {
		opacity: .35;
	}
}

.list_item_basket+.list_item_basket {
	border-top: 1px solid var(--bgB);
	padding-top: var(--padding-box);
	margin-top: var(--padding-box);
}

.list_item_basket_wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.item_basket_good {
	display: flex;
	width: calc(100% - 140px - 120px - 60px);
	position: relative;
}

.list_item_count {
	width: 140px;
	margin: 4px 8px 0 8px;
}

.list_item_count .count_input_number {
	display: flex;
	height: 32px;
}

.list_item_count .count_minus, .list_item_count .count_plus {
	width: 32px;
	height: 32px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--bgW);
	border-radius: var(--bdR);
}

.list_item_count .count_input_button {
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.list_item_count .count_input_button svg {
	display: flex;
}

.list_item_count .quntity_input_box {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 42px;
}

.list_item_count .count_numeric {
	border: none;
	height: 32px;
	text-align: center;
	background-color: var(--t);
	padding: 0;
	width: 42px;
}

.list_item_subtotal {
	margin: 4px 8px 0 8px;
	text-align: right;
	width: 120px;
	overflow: hidden;
}

.list_item_subtotal span {
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.list_item_remove {
	text-align: right;
	width: 60px;
	margin: 4px -4px 0 0;
	justify-content: flex-end;
	display: flex;
}

.list_item_remove_go {
	width: var(--size-svg);
	height: var(--size-svg);
	display: flex;
	justify-content: center;
	align-items: center;
}

.list_item_remove_go svg {
	color: var(--color-svg);
}

@media (hover: hover) and (pointer: fine) {
	.list_item_remove_go:hover svg {
		color: var(--alert-color);
	}
}

.list_item_good_box {
	margin-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.list_item_good_img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	user-drag: none;
	-webkit-user-drag: none;
	touch-action: pan-y;
	-ms-touch-action: pan-y;
	border-radius: var(--bdR);
}

.list_item_good_info {
	margin-top: 4px;
}

.list_item_good_info a {
}

.basket_sku_product {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 11px;
	line-height: 1;
	z-index: 2;
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	padding: 2px 4px 3px 4px;
	border: 1px solid var(--icon-color);
	border-radius: 4px;
	background-color: white;
}

.good_info_good_name {
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}

.good_info_properties {
	margin-top: 6px;
	display: flex;
	align-items: center;
}

.good_info_details_price {
	margin-top: 8px;
	display: flex;
	align-items: center;
}

.good_info_details_price_num {
}

.good_info_details_price span {
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
}

.good_info_details_label {
}

.good_info_details_label~.good_info_details_label {
	position: relative;
	padding-left: 20px;
}

.good_info_details_label~.good_info_details_label::before {
	content: '';
	display: block;
	border-radius: 50%;
	width: 4px;
	height: 4px;
	background-color: #868695;
	position: absolute;
	left: 9px;
	top: 10px;
}

.good_info_item_label {
	color: var(--bgL);
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
}

.basket_wrap {
}

.basket_section_order {
}

.basket_order_form {
	padding: var(--padding-box);
	border-radius: 20px;
	background: #fff;
}

.basket_order_delivery {
	font-weight: bold;
}

.basket_order_edit {
	height: var(--size-svg);
	display: flex;
	justify-content: center;
	align-items: center;
}

.basket_order_edit svg {
	color: var(--color-svg);
}

@media (hover: hover) and (pointer: fine) {
	.order_form_wrap_delivery:hover .basket_order_edit svg {
		color: var(--bgT);
	}
}

.basket_order_payment {
	margin-bottom: 22px;
}

.basket_order_user {
	margin-bottom: 22px;
}

.basket_order_sum {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.order_sum_text {
	margin-right: 8px;
	font-weight: bold;
	font-size: 24px;
	line-height: 32px;
}

.order_sum_all {
	font-weight: bold;
	font-size: 24px;
	line-height: 32px;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-left: 8px;
}

.basket_order_footer {
}

.basket_order_oferta {
	margin-top: 16px;
}

.order_oferta_text {
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	position: relative;
	padding-left: 22px;
}

.order_oferta_text:before {
	content: '';
	border-right: 2px solid var(--pozitive-color);
	border-bottom: 2px solid var(--pozitive-color);
	transform: rotate(45deg);
	display: inline-block;
	position: absolute;
	z-index: 1;
	width: 5px;
	height: 11px;
	left: 5px;
	top: 2px;
}

.order_form_wrap_delivery {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	cursor: pointer;
}

.basket_order_contents {
	margin-bottom: 12px;
}

.basket_order_count, .basket_order_weight, .basket_order_city {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.basket_order_count {
	margin-bottom: 4px;
}

.basket_order_city {
	margin-top: 4px;
}

.contents_count_text, .contents_weight_text, .contents_city_text {
	color: var(--bgL);
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
}

.contents_count_num, .contents_weight_num, .contents_city_num {
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-left: 8px;
}

.confirm_order {
	width: 100%;
	background-color: var(--pozitive-color);
	height: 56px;
}

.item_order_button {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}


/* BASKET END */








/* CALCULATOR START */


.calculator_container {
	display: flex;
	gap: 48px;
	margin-top: 24px;
}

.calculator_main {
	width: calc(100% - 366px);
}

.calculator_main_flexy {
	position: -webkit-sticky;
	position: sticky;
	top: 16px;
}

.calculator_main_flexy_main {
	width: 100%;
}

.calculator_box_dess {
	border-top: 1px dashed var(--bgB);
	padding-top: 20px;
}

.calculator_box {
}

.calculator_box+.calculator_box {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px dashed var(--bgB);
}

.calculator_box+.calculator_box.calculator_box_panel {
	margin-top: 20px;
}

.calculator_item_label_title {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 14px;
}

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

.calculator_item_label {
}

.calculator_item_label+.calculator_item_label {
	margin-top: 12px;
}

.calculator_item_label_line .calculator_item_label+.calculator_item_label {
	margin: 0px 0px 0px 18px;
}

.calculator_item_option {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 48px;
}

.calc_margin_right {
	margin-top: 18px;
}

.calculator_item_option label {
	font-weight: 500;
}

.calculator_item_option select {
	display: block;
	padding: 10px 16px;
	width: 100%;
	max-width: 476px;
	border-radius: var(--bdR);
	border: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	background: var(--bgW) url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><path fill='%2315181a' d='m4 6 4 5 4-5H4Z'></path></svg>") no-repeat calc(100% - 10px) center;
}

.calculator_item_option select option {
	background-color: white;
}

.calculator_disabled {
	opacity: .4;
	pointer-events: none;
}

.calculator_item_option+.calculator_item_option {
	margin-top: 12px;
}

.rack-button-style {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--bgS);
	color: white;
	border-radius: var(--bdR);
	padding: 10px 24px;
	transition: color .15s ease-in-out,background .15s ease-in-out;
	border: none;
	cursor: pointer;
}

.rack-button-on {
	background: var(--bgS);
	color: white;
}

.alert_text_red_margin {
	margin-bottom: 16px;
}

.calculator_preview {
	box-shadow: 0px 6px 20px rgba(0, 16, 61, 0.1);
	padding: 30px;
	border-radius: 20px;
	height: 100%;
	width: 366px;
	flex-shrink: 0;
}

.calculator-building-image {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	user-drag: none;
	-webkit-user-drag: none;
	touch-action: pan-y;
	-ms-touch-action: pan-y;
	mix-blend-mode: darken;
	max-height: 100%;
	max-width: 100%;
}

.calculator_result {
}

.feed_ajax_calc .calculator_result_box {
	display: none;
}

.calculator_result_box {
}

.calculator_result_table {
}

.accessories_table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--bgW);
}

.accessories_table tr {
}

.accessories_table th {
	padding: 12px 16px;
	white-space: nowrap;
	text-align: left;
	background: var(--bgW);
	font-weight: 500;
}

.accessories_table td {
	padding: 12px 16px;
}

.accessories_table tr:nth-child(2n) td {
	background: var(--bgW);
}

.accessories_pseudo {
}

.accessories_pseudo a {
	border-bottom: 1px dotted var(--bgT);
}

.accessories_summary {
	margin: 24px 0;
	border-radius: var(--bdR);
	font-weight: bold;
	font-size: 24px;
	line-height: 32px;
}

.calculator_limiter_box {
	display: block;
	padding: 14px 16px;
	width: 100%;
	border-radius: var(--bdR);
	background-color: var(--bgW);
}

.calculator_limiter_item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	width: 100%;
}

.calculator_limiter_box li~li {
	margin-top: 12px;
}

.calculator_limiter_item span {
	cursor: pointer;
	position: relative;
	display: flex;
	padding-left: 28px;
	user-drag: none;
	-webkit-user-drag: none;
	touch-action: pan-y;
	-ms-touch-action: pan-y;
	line-height: 20px;
}

.calculator_limiter_item span::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	background: white;
	border: 2px solid var(--input-form);
	border-radius: 5px;
	position: absolute;
}

.calculator_limiter_item span::after {
	content: '';
	display: block;
	width: 6px;
	height: 10px;
	top: 3px;
	left: 7px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.calculator_limiter_item_select span::before {
	background: var(--bgS);
	border-color: var(--t);
}




/* CALCULATOR END */









/* receipts start */


.zig_zag_container {
	width: 100%;
	max-width: 670px;
	margin: 40px auto;
}

.zig_zag {
	background: white;
	position: relative;
	padding: var(--padding-box);
}

.zig_zag:before {
	background: linear-gradient(-45deg, #fff 10px, transparent 0), linear-gradient(45deg, #fff 10px, transparent 0);
	background-position: left top;
	background-repeat: repeat-x;
	background-size: 20px 20px;
	content: " ";
	display: block;
	height: 20px;
	width: 100%;
	position: absolute;
	top: -20px;
	left: 0;
}

.zig_zag:after {
	background: linear-gradient(-45deg, transparent 20px, #fff 0), linear-gradient( 45deg, transparent 20px, #fff 0);
	background-position: left bottom;
	background-size: 20px 20px;
	content: "";
	display: block;
	height: 20px;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
}

.zig_zag .heading {
	font-size: 28px;
	line-height: 36px;
	overflow-wrap: break-word;
	word-break: break-word;
}

.section_check_title {
}

.section_check_order {
}

.section_check_order_item {
}

.check_red {
	color: var(--alert-color);
}

.check_green {
	color: var(--pozitive-color);
}

.order_section {
}

.table_order_details {
}

.order_item_box {
}

.order_item_box+.order_item_box {
	border-top: 1px solid var(--color-border);
	padding-top: 11px;
	margin-top: 13px;
}

.order_item_product_name {
	display: flex;
	justify-content: space-between;
}

.order_item_product_link {
	margin-right: var(--padding-box);
}

.order_item_product_right {
	display: flex;
	justify-content: space-between;
}

.order_item_product_qty {
	width: 40px;
	overflow: hidden;
}

.order_item_product_sbt {
	text-align: right;
	width: 120px;
	overflow: hidden;
	font-weight: bold;
}


/* receipts end */








/* PAGE 404 START */

.page_404 {
	max-width: 404px;
}

/* PAGE 404 END */













/* STANDART PAGES START */

.pages {
	width: auto;
	display: flex;
	flex-wrap: nowrap;
}

.pages_board {
	width: 20%;
	min-width: 372px;
	display: block;
	flex-shrink: 0;
	padding-right: 72px;
	position: -webkit-sticky;
	position: sticky;
	top: 16px;
	height: 100%;
}

.pages_content {
	width: 80%;
	position: relative;
}

.pages_content_p+.pages_content_p {
	margin-top: 20px;
}

.pages_board_box {
	border-radius: var(--bdR);
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 18px;
}

.pages_board_item {
}

.pages_board_nav {
}

.pages_board_nav_flat {
	position: relative;
}

.pages_board_nav_flat+.pages_board_nav_flat {
	border-top: 1px solid var(--bgB);
}

.pages_board_nav_flat_link {
	padding: 14px 10px 14px 16px;
	width: 100%;
	position: relative;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.pages_board_nav_flat_link:after {
	width: 20px;
	height: 20px;
	content: "";
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbC1vcGFjaXR5PSIuOSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTAgMjBsLTEuNC0xLjQgNi42LTYuNi02LjYtNi42TDEwIDRsOCA4eiIvPjwvc3ZnPg==);
	background-size: contain;
	opacity: 1;
	display: flex;
}

.pages_current_link .pages_board_nav_flat_link {
	color: var(--bgS);
	font-weight: 500;
}

.accordion_content {
}

.accordion_content_item {
	padding: 16px 0px;
}

.accordion_content_item+.accordion_content_item {
	border-top: 1px solid var(--bgB);
}

.accordion_content_title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion_content_box {
	padding-bottom: 10px;
	max-width: 80%;
}

.accordion_content_text {
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
}

.accordion_icon_box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: var(--bgW);
	transform: rotate(90deg);
	cursor: pointer;
}

.open_accordion {
	transform: rotate(270deg);
}

.accordion_icon {
	width: 20px;
	height: 20px;
	content: "";
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbC1vcGFjaXR5PSIuOSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTAgMjBsLTEuNC0xLjQgNi42LTYuNi02LjYtNi42TDEwIDRsOCA4eiIvPjwvc3ZnPg==);
	background-size: contain;
	opacity: 1;
	display: flex;
}



/* STANDART PAGES END */





/* ALERT START */

.alert_text_green {
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding: 12px 16px;
	border-radius: var(--bdR);
	background-color: #e7f9ed;
	color: var(--bgT);
	cursor: default;
	position: relative;
}

.alert_text_red {
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding: 12px 16px;
	border-radius: var(--bdR);
	background-color: #ffdada;
	color: var(--bgT);
	cursor: default;
	position: relative;
}

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

.icon_alert {
	display: flex;
	margin-right: 8px;
}

.message_text {
}



/* ALERT END */










/* START HISTORY PRICE */

.price_history {
	margin-top: 16px;
}

.price_history_wrap {
	background-color: var(--bgW);
	overflow: hidden;
	border-radius: var(--bdR);
	padding: 0 8px 0 14px;
	cursor: pointer;
}

.price_history_box {
	height: 44px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.price_history_icon {
	display: flex;
	margin-right: 10px;
}

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

.price_history_text {
}

.price_history_text span {
	font-weight: 500;
}

.price_history_nav {
	display: flex;
}

.price_history_w_flex_box {
}

.price_history_heading {
	font-size: 22px;
	line-height: 28px;
	font-weight: bold;
}

.history_price_flex_view {
	background-color: var(--bgW);
	border-radius: var(--bdR);
	padding: 0 16px;
}

.history_price_flex_item {
	padding: 14px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.history_price_flex_item_left {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.history_price_flex_item_right {
	display: flex;
	align-items: center;
	background-color: white;
	padding: 5px 7px;
	border-radius: 6px;
}

.history_price_flex_item_right_box {
	display: flex;
	align-items: center;
	color: var(--bgG);
	font-weight: 500;
	font-size: var(--body-font-size-m);
	line-height: 1;
}

.history_price_minus {
	margin-left: 4px;
}

.history_price_notification {
	margin-top: 12px;
}

.history_price_notification_text {
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	display: inline-block;
}

.history_price_actual {
	font-weight: 500;
	line-height: 20px;
}

.history_price_older {
	font-weight: 500;
	line-height: 20px;
}

.history_price_form_text {
	display: block;
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
	color: var(--bgL);
}

.history_price_form_text_month {
	margin-left: 4px;
	text-transform: lowercase;
}

.history_price_flex_item+.history_price_flex_item {
	border-top: 1px solid var(--bgB);
}

.history_price_left {
}

.history_price_right {
}


/* END HISTORY PRICE */












/* START WINDOWS MODAL */

.window_overflow {
	height: calc(var(--vh,1vh)*100);
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	animation: overlay-windows .2s ease-out forwards;
	animation-play-state: running;
}

@keyframes overlay-windows {
	0% {
		background: rgba(3,8,13,.0);
	}

	100% {
		background: rgba(3,8,13,.24);
	}
}

.window_overflow_close {
	animation: overlay-windows-close .2s ease-out forwards;
	animation-play-state: running;
}

@keyframes overlay-windows-close {
	0% {
		background: rgba(3,8,13,.24);
	}

	100% {
		background: rgba(3,8,13,.0);
	}
}

.window_box_close {
	animation: window-box-close .2s ease-out forwards;
	animation-play-state: running;
}

@keyframes window-box-close {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.window_box {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
}

.window_container {
	max-width: 960px;
	min-width: 400px;
	min-height: 200px;
	background-color: #fff;
	padding: 40px;
	border-radius: 32px;
	overflow: hidden;
}

.window_close {
	right: 18px;
	top: 18px;
	position: absolute;
	z-index: 5;
}

.window_close_icon {
	display: flex;
	padding: 12px;
	background-color: var(--bgW);
	border-radius: 50%;
	cursor: pointer;
}

.window_flex {
}



/* END WINDOWS MODAL */





/* YANDEX RATING START */


.yandex_widget {
}

.yandex_box {
	align-items: center;
	display: flex;
	height: var(--height-components);
	justify-content: center;
	position: relative;
	padding: 0 12px;
	border-radius: var(--bdR);
	background-color: var(--bgW);
}

.yandex_icon svg {
	display: flex;
	width: 24px;
	height: 24px;
}

.yandex_flex {
	display: flex;
	align-items: center;
	gap: 8px;
}

.yandex_flex_box {
	white-space: nowrap;
}

.yandex_title {
	font-size: 13px;
	line-height: 110%;
}

.yandex_rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.yandex_rating_icon {
    display: flex;
}

.yandex_rating_item {
	font-weight: 500;
	font-size: 13px;
	line-height: 110%;
}

.yandex_rating_icon svg {
	display: flex;
	color: var(--bgJ);
	margin-top: -1px;
}

/* YANDEX RATING END */






/* PROMO BANNER START */

.promo_banner_list {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2,1fr);
}

.promo_banner_item {
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(white,#000);
	border-radius: var(--bdR);
}

.promo_banner_item a {
	display: block;
	position: relative;
	overflow: hidden;
}

.promo_banner_img {
	display: flex;
}

.b_img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	user-drag: none;
	-webkit-user-drag: none;
	touch-action: pan-y;
	-ms-touch-action: pan-y;
	mix-blend-mode: darken;
}

.b_img:hover {
}




/* PROMO BANNER end */




/* FAVORITES START */

.favorite_header {
}

.favorite_header a {
	align-items: center;
	border-radius: var(--bdR);
	display: flex;
	height: var(--height-components);
	width: var(--height-components);
	justify-content: center;
	position: relative;
	background-color: var(--bgW);
}

@media (hover: hover) and (pointer: fine) {
	.favorite_header a:hover .favorite_header_icon {
		color: var(--bgS);
	}
}

.favorite_header_icon {
	display: flex;
	color: var(--bgL);
	transition: color 0.2s ease 0s;
}

.favorite-cart {
	background-color: var(--bgR);
	font-size: 10px;
	line-height: 1;
	font-weight: 500;
	z-index: 2;
	top: 4px;
	left: calc(100% - 20px);
	padding: 0 4px;
	min-width: 16px;
	height: 16px;
	text-align: center;
	color: #fff;
	border-radius: 16px;
	position: absolute;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product_card_relative .favorites {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	z-index: 5;
	cursor: pointer;
}

.favorite_box {
	color: var(--bgT);
	display: flex;
}

.favorite_box svg {
	transition: color 0.2s ease 0s;
}

.favorite_added {
}

.favorite_deleted {
	color: var(--bgK);
}

@media (hover: hover) and (pointer: fine) {
	.favorite_deleted:hover {
		color: var(--bgL);
	}
}

.favorite_added {
	color: var(--bgR);
}


/* FAVORITES END */














/* START CATEGORY BANNER */

.promo_container {
    width: 100%;
    margin-bottom: 32px;
}
.banner_stretch {
    display: flex;
}
.banner_stretch_content {
    display: flex;
    width: 100%;
}

.promo_img {
    display: flex;
    border-radius: var(--bdR);
    overflow: hidden;
    background-color: var(--bgW);
    min-height: 140px;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.banner_stretch_content_textseo {
    max-width: 546px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 44px;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: var(--bgT);
}





/* END CATEGORY BANNER */















/* FOOTER */

.footer {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.layout_footer {
	background: white;
	margin: 64px 0 0;
	border-top: 1px solid var(--color-border);
}

.footer_bottom_part_items_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 32px 0;
}


/* END FOOTER */










/* YANDEX MAPS START */

#map {
	width: 100%;
	height: 600px;
	margin: 0;
	padding: 0;
	border-radius: 20px;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-print-color-adjust: exact;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.my-marker {
	position: relative;
	cursor: pointer;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 4px solid #fff;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}





/* YANDEX MAPS END */



















/* START COOKIE */
.cookie {
	align-items: flex-end;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: fixed;
	right: 24px;
	width: 282px;
	z-index: 10002;
}

.cookie_box {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: auto;
}

.cookie_box_vertical {
	background-color: rgba(0,0,0,.9);
	border-radius: 20px;
	box-sizing: border-box;
	color: white;
	padding: 26px;
	width: 300px;
}

.cookie_rule {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
}

.cookie_rule_small {
	color: hsla(0,0%,100%,.8);
	margin: 0 0 16px;
	font-size: var(--body-font-size-m);
	line-height: var(--body-line-height-m);
}

.cookie_rule_small a {
	font-weight: bold;
}

.consent_button_box {
	min-width: auto;
	width: 100%;
	display: inline-flex;
}

.button_cookie {
	width: 100%;
	height: var(--height-components);
}

@media (hover: hover) and (pointer: fine) {
	.button_cookie:hover {
		background-color: var(--second-hover-color);
	}
}

.consent_button_text {
}
/* END COOKIE */



