:root
{
	--color_1: #0E1726;
	--color_1_02: rgba(14, 23, 38, 0.02);
	--color_1_10: rgba(14, 23, 38, 0.10);
	--color_1_25: rgba(14, 23, 38, 0.25);
	--color_1_50: rgba(14, 23, 38, 0.50);
	--color_1_70: rgba(14, 23, 38, 0.70);
	--color_2: #9CA5B5;
	--color_2_10: rgba(156, 165, 181, 0.10);
	--color_2_15: rgba(156, 165, 181, 0.15);
	--color_2_50: rgba(156, 165, 181, 0.50);
	--color_2_90: rgba(156, 165, 181, 0.90);
	--color_3: #1B2432;
	--color_4: #E1E4E9;
	--color_4_10: rgba(225, 228, 233, 0.10);
	--color_4_15: rgba(225, 228, 233, 0.15);
	--color_5: #27AE60;
	--color_6: #BB6BD9;
	--color_7: #F25A5A;
	--color_8: #FF8501;
	--color_9: #FFB801;
	--color_10: #282828;
	--color_11: #F0F1F4;
	--color_11_25: rgba(240, 241, 244, 0.25);
	--color_11_70: rgba(240, 241, 244, 0.70);
	--color_12: #EAF0FA;
	--color_12_70: rgba(234, 240, 250, 0.70);
	--color_13: #F7F3F2;
	--color_13_70: rgba(247, 243, 242, 0.70);

	--color_black: #000000;
	--color_black_10: rgba(0, 0, 0, 0.10);
	--color_black_20: rgba(0, 0, 0, 0.20);
	--color_black_50: rgba(0, 0, 0, 0.50);
	--color_red: #FF0000;
	--color_green: #008000;
	--color_white: #FFFFFF;
	--color_white_10: rgba(255, 255, 255, 0.10);
	--color_white_25: rgba(255, 255, 255, 0.25);
	--color_white_50: rgba(255, 255, 255, 0.50);
	--color_white_70: rgba(255, 255, 255, 0.70);
	--color_gray: #F0F1F4;
	--color_gray_15: rgba(240, 241, 244, 0.15);
	--color_dark: #242F42;
	--color_dark_90: rgba(36, 47, 66, 0.90);
	--color_colorScheme: #000000;
	--color_colorScheme_10: rgba(0, 0, 0, 0.10);
	--color_colorScheme_25: rgba(0, 0, 0, 0.25);
	--color_colorScheme_90: rgba(0, 0, 0, 0.90);

	--font-family-1: 'Inter', sans-serif;

	--border-radius: 0;
	--border-radius-slider-left-btn: 0 0 0 0;
	--border-radius-slider-rigth-btn: 0 0 0 0;

	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;

	--picture-source-max-width-p1: 991px;

	--site-width-max-width: 1510px;
	--width-coefficient: calc((100vw - 320px) / (1520 - 320));
}

@media (max-width: 1520px)
{
	:root
	{
		--site-width-max-width: 1400px;
	}
}
@media (max-width: 1440px)
{
	:root
	{
		--site-width-max-width: 1200px;
	}
}
@media (max-width: 1200px)
{
	:root
	{
		--site-width-max-width: 970px;
	}
}
@media (max-width: 991px)
{
	:root
	{
		--site-width-max-width: 750px;
	}
}
@media (max-width: 767px)
{
	:root
	{
		--site-width-max-width: 550px;
	}
}
@media (max-width: 575px)
{
	:root
	{
		--site-width-max-width: 100%;
	}
}

body
{
	margin: 0;
	padding: 0;
	min-width: 320px;
	width: 100%;
	line-height: 1;
	font-family: var(--font-family-1);
	font-size: 1.6rem;
	font-weight: normal;
	color: var(--color_1);
}

body.open
{
	overflow: hidden;
}

.hide
{
	display: none;
}

img
{
	display: inline-block;
	max-width: 100%;
	max-height: 100%;
}

picture
{
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

a
{
	color: var(--color_colorScheme);
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
a:hover
{
	color: var(--color_1);
}

/*************/

.bgLight
{
	background-color: var(--color_white);
}
.bgGray
{
	background-color: var(--color_gray);
}
.bgColorScheme
{
	background-color: var(--color_colorScheme);
}
.bgDark
{
	background-color: var(--color_dark);
}
.bgRed
{
	background-color: var(--color_red);
}
.bgGreen
{
	background-color: var(--color_green);
}

/*************/

.colorRed
{
	color: var(--color_red);
}
.colorGreen
{
	color: var(--color_green);
}

/*************/

.truncate-inline-block
{
	display: inline-block;
	max-width: 100%;/*ВНИМАНИЕ! В некоторых случая это ограничение ширины все равно ничего не ограничит, так что нужно ограничивать другими способами. Помогает overflow: hidden; у родительского элемента*/
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
}
.truncate-block
{
	display: block;
	max-width: 100%;/*ВНИМАНИЕ! В некоторых случая это ограничение ширины все равно ничего не ограничит, так что нужно ограничивать другими способами. Помогает overflow: hidden; у родительского элемента*/
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
}

/*************/

.text-center
{
	text-align: center;
}
.text-left
{
	text-align: left;
}
.text-right
{
	text-align: right;
}

/*************/

.img_wrap
{
    position: relative;
	display: block;
    width: 100%;
    padding-bottom: 100%;

}
.img_wrap .el
{
    position: absolute;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items:center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.img_wrap .el img
{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

svg,
svg path
{
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

/*************/

input,
select,
textarea
{
	display: block;
	border-radius: var(--border-radius);
	background-color: var(--color_white);
	border: 1px solid var(--color_4);
	width: 100%;
	padding: 0 15px;
	height: 52px;
	font-family: var(--font-family-1);
	line-height: 1.7rem;
	font-size: 1.5rem;
	color: var(--color_1);
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
input:focus,
select:focus,
textarea:focus
{
	border-color: var(--color_colorScheme);
}
textarea
{
	height: 100px;
	resize: vertical;
	padding-top: 9px;
	padding-bottom: 9px;
}

button
{
	cursor: pointer;
}

@media (max-width: 991px)
{
	input,
	select,
	textarea
	{
		padding: 0 10px;
		height: 42px;
	}
	textarea
	{
		height: 100px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

/*************/

.input_wrapper
{
	position: relative;
	display: block;
	margin-bottom: 15px;
}
.input_wrapper label
{
	display: inline-block;
	margin-bottom: 5px;
	line-height: 1.5;
	font-size: 1.5rem;
	color: var(--color_10);
}
.input_wrapper label sup
{
	color: var(--color_7);
}
.input_wrapper .comment
{
	margin-top: 5px;
	line-height: 1.5;
	font-size: 1.4rem;
	color: var(--color_2);
}
/**/
.input_wrapper .inputIcoWrapper
{
	position: relative;
}
.input_wrapper .inputIcoWrapper.left input
{
	padding-left: 40px;
}
.input_wrapper .inputIcoWrapper.right input
{
	padding-right: 40px;
}
.input_wrapper .inputIcoWrapper.leftAndRight input
{
	padding-left: 40px;
	padding-right: 40px;
}
.input_wrapper .inputIcoWrapper .ico
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	top: 0;
	left: auto;
	right: auto;
	padding: 0 5px 0 10px;
	width: 40px;
	height: 100%;
	z-index: 2;
}
.input_wrapper .inputIcoWrapper .ico[onclick]
{
	cursor: pointer;
}
.input_wrapper .inputIcoWrapper .ico.left
{
	left: 0;
	right: auto;
	padding: 0 5px 0 10px;
}
.input_wrapper .inputIcoWrapper .ico.right
{
	left: auto;
	right: 0;
	padding: 0 10px 0 5px;
}

.input_wrapper .inputIcoWrapper .ico i
{
	font-size: 1.8rem;
	color: var(--color_colorScheme);
}

/***/

.input_wrapper.checkbox
{
	display: -ms-flex;
	display: flex;
}
.input_wrapper.checkbox input
{
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: -2;
	opacity: 0;
}
.input_wrapper.checkbox label
{
	position: relative;
	padding-left: 25px;
	line-height: 1.9rem;
	font-size: 1.4rem;
	color: var(--color_10);
	cursor: pointer;
}
.input_wrapper.checkbox input[disabled] ~ label
{
	color: var(--color_2);
}
.input_wrapper.checkbox input[type='checkbox'] ~ label i,
.input_wrapper.checkbox input[type='radio'] ~ label i
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border: 1px solid var(--color_2);
	background-color: var(--color_white);
	top: 1px;
	left: 0;
	width: 18px;
	height: 18px;
}
.input_wrapper.checkbox input[type='checkbox'] ~ label i
{
	border-radius: 4px;
}
.input_wrapper.checkbox input[type='radio'] ~ label i
{
	border-radius: 100%;
}
.input_wrapper.checkbox input[type='checkbox'] ~ label i::before,
.input_wrapper.checkbox input[type='radio'] ~ label i::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background-color: transparent;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.input_wrapper.checkbox input[type='checkbox']:checked ~ label i::before,
.input_wrapper.checkbox input[type='radio']:checked ~ label i::before
{
	background-color: var(--color_colorScheme);
}
.input_wrapper.checkbox input[type='checkbox']:disabled ~ label i::before,
.input_wrapper.checkbox input[type='radio']:disabled ~ label i::before
{
	content: "\f05e";
	font-family: "FontAwesome";
	background-color: transparent;
	width: 9px;
	height: 10px;
	line-height: 1;
	font-size: 1rem;
	color: var(--color_2);
}

/*****/

.simpleForm
{
	margin: 0 auto;
	max-width: 630px;
}
.simpleForm .btn_wrap
{
	text-align: center;
}
.simpleForm .btn_wrap .btn
{
	max-width: 200px;
	width: 100%;
}

/*****/

.btn,
.staticText .btn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	border-radius: var(--border-radius);
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	padding: 0 15px;
	height: 52px;
	font-family: var(--font-family-1);
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none !important;
	color: var(--color_white);
	cursor: pointer;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
.btn:hover,
.staticText .btn:hover
{
	position: relative;
	border-color: var(--color_colorScheme_90);
	background-color: var(--color_colorScheme_90);
	text-decoration: none !important;

	color: var(--color_white);
	z-index: 1;
}
.btn:hover::before,
.staticText .btn:hover::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: inherit;
	background-color: var(--color_black_10);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.btn svg,
.staticText .btn svg
{
	margin: 0 5px;
}
.btn svg path,
.staticText .btn svg path
{
	/*fill: var(--color_white);*/
	stroke: var(--color_white);
}

/***/

.btn.disabled,
.btn[disabled],
.staticText .btn.disabled,
.staticText .btn[disabled]
{
	border: 1px solid var(--color_gray);
	background-color: var(--color_gray);
	color: var(--color_2_50);
	opacity: 1;
}
.btn.disabled svg path[stroke],
.btn[disabled] svg path[stroke],
.staticText .btn.disabled svg path[stroke],
.staticText .btn[disabled] svg path[stroke]
{
	stroke: var(--color_white);
}
.btn.disabled svg path[fill],
.btn[disabled] svg path[fill],
.staticText .btn.disabled svg path[fill],
.staticText .btn[disabled] svg path[fill]
{
	fill: var(--color_white);
}

.btn.type2.disabled,
.btn.type2[disabled],
.staticText .btn.type2.disabled,
.staticText .btn.type2[disabled]
{
	border: 1px solid var(--color_gray);
	background-color: var(--color_gray);
	color: var(--color_2_50);
	opacity: 1;
}
.btn.type2.disabled svg path[stroke],
.btn.type2[disabled] svg path[stroke],
.staticText .btn.type2.disabled svg path[stroke],
.staticText .btn.type2[disabled] svg path[stroke]
{
	stroke: var(--color_2_50);
}
.btn.type2.disabled svg path[fill],
.btn.type2[disabled] svg path[fill],
.staticText .btn.type2.disabled svg path[fill],
.staticText .btn.type2[disabled] svg path[fill]
{
	fill: var(--color_2_50);
}

/***/

.btn.h32,
.staticText .btn.h32
{
	height: 32px;
}

.btn.h42,
.staticText .btn.h42
{
	height: 42px;
}

.btn.h52,
.staticText .btn.h52
{
	height: 52px;
}

/*******/

@media (max-width: 991px)
{
	.btn,
	.staticText .btn
	{
		padding: 0 10px;
		height: 42px;
	}
	.btn.h42,
	.staticText .btn.h42
	{
		height: 36px;
	}
	.btn.h52,
	.staticText .btn.h52
	{
		height: 42px;
	}
}

/*******/

.btn.type2,
.staticText .btn.type2
{
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_white);
	color: var(--color_colorScheme);
}
.btn.type2:hover,
.staticText .btn.type2:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
.btn.type2 svg path,
.staticText .btn.type2 svg path
{
	fill: var(--color_colorScheme);
	stroke: var(--color_colorScheme);
}
.btn.type2:hover svg path,
.staticText .btn.type2:hover svg path
{
	fill: var(--color_white);
	stroke: var(--color_white);
}

/***/

.btn.type3,
.staticText .btn.type3
{
	border: 1px solid var(--color_colorScheme);
	background-color: transparent;
	box-shadow: none;
	color: var(--color_colorScheme);
}
.btn.type3:hover,
.staticText .btn.type3:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
/*.btn.type3 svg path,*/
/*.staticText .btn.type3 svg path*/
/*{*/
/*	fill: var(--color_colorScheme);*/
/*	stroke: var(--color_colorScheme);*/
/*}*/
.btn.type3 svg path[stroke],
.staticText .btn.type3 svg path[stroke]
{
	stroke: var(--color_colorScheme);
}
.btn.type3 svg path[fill],
.staticText .btn.type3 svg path[fill]
{
	fill: var(--color_colorScheme);
}
.btn.type3:hover svg path[stroke],
.staticText .btn.type3:hover svg path[stroke]
{
	stroke: var(--color_white);
}
.btn.type3:hover svg path[fill],
.staticText .btn.type3:hover svg path[fill]
{
	fill: var(--color_white);
}

/***/

.btn.active,
.staticText .btn.active
{
	position: relative;
}
.btn .preloader
{
	display: none;
	position: absolute;
	justify-content: center;
	align-items: center;
	background-color: var(--color_colorScheme);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	font-size: 50%;
	color: var(--color_white);
	z-index: 5;
}
.btn.active .preloader
{
	display: flex;
}

/***/

.btnClose
{
	position: relative;
	display: inline-block;
	border-radius: var(--border-radius);
	border: none;
	background-color: transparent;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.btnClose::before,
.btnClose::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_2);;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 2px;
	transform-origin: center;
}
.btnClose:hover::before,
.btnClose:hover::after
{
	background-color: var(--color_colorScheme);;
}
.btnClose::before
{
	transform: translate(-50%, -50%) rotate(-45deg);
}
.btnClose::after
{
	transform: translate(-50%, -50%) rotate(45deg);
}
/**/
.btnClose.wh40
{
	width: 40px;
	height: 40px;
}
.btnClose::before,
.btnClose::after
{
	width: 35px;
}

/******************************/

.bonusLine
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	border-radius: 30px;
	background-color: var(--color_2_10);
	padding: 2px 5px 2px 2px;

	line-height: 1.6rem;
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--color_1);
}
.bonusLine.hide
{
	display: none;
}
.bonusLine .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background: -moz-linear-gradient(top, var(--color_7) 0%, var(--color_9) 100%);
	background: -webkit-linear-gradient(top, var(--color_7) 0%, var(--color_9) 100%);
	background: linear-gradient(to bottom, var(--color_7), var(--color_9));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F25A5A', endColorstr='#FFB801', GradientType=180);
	margin-right: 5px;
	padding: 3px;
	width: 17px;
	height: 17px;
	color: var(--color_white);
}
.bonusLine .bonusSum
{
	font-weight: 600;
	color: var(--color_7);
}
.bonusLine .text
{
	/*margin-left: 5px;*/
}

/******************************/
/******************************/

.slick-slider,
.slick-slider .slick-list,
.slick-slider .slick-list .slick-track
{
	min-width: 100%;
	min-height: 100%;
}

.el_offerSliderBlock_ZeJrAwu4 .slick-slider .slick-list,
.el_offerSliderBlock_ZeJrAwu4 .slick-slider .slick-list .slick-track
{
	display: -ms-flex;
	display: flex;
}

.el_articleSliderBlock_ZeJrAwu4 .slick-slider .slick-list,
.el_articleSliderBlock_ZeJrAwu4 .slick-slider .slick-list .slick-track
{
	display: -ms-flex;
	display: flex;
}

/******************************/

.slick-slider .slick-arrow
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color_gray);
	background-color: var(--color_white);
	box-shadow: 0 5px 15px var(--color_1_10);

	width: 41px;
	height: 60px;
	text-align: center;
	color: var(--color_2);
	z-index: 15;
	cursor: pointer;
	opacity: 1;
}
.el_offerSliderBlock_ZeJrAwu4 .slick-slider .slick-arrow
{
	top: 45%;
}
.el_articleSliderBlock_ZeJrAwu4 .slick-slider .slick-arrow
{
	top: 43%;
}
.slick-slider .slick-arrow:hover
{
}
.slick-slider .slick-arrow.slick-prev
{
	border-radius: var(--border-radius-slider-left-btn);
	left: 0;
}
.slick-slider .slick-arrow.slick-next
{
	border-radius: var(--border-radius-slider-rigth-btn);
	right: 0;
}
.slick-slider .slick-arrow::before
{
	content: "";
	background-position: center center;
	background-repeat: no-repeat;
	width: 14px;
	height: 31px;
	opacity: 0.5;
}
.slick-slider .slick-arrow:hover::before
{
	opacity: 1;
}
.slick-slider .slick-arrow.slick-prev::before
{
	background-image: url("../img/arrow-left-dark.svg");
}
.slick-slider .slick-arrow.slick-next::before
{
	background-image: url("../img/arrow-right-dark.svg");
}

/*****/


.slick-slider.type2 .slick-arrow
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: transparent;
	box-shadow: none;

	width: 41px;
	height: 60px;
	text-align: center;
	color: var(--color_2);
	z-index: 15;
	cursor: pointer;
	opacity: 1;
}
.slick-slider.type2 .slick-arrow.slick-prev
{
	border-radius: var(--border-radius-slider-left-btn);
	left: -41px;
}
.slick-slider.type2 .slick-arrow.slick-next
{
	border-radius: var(--border-radius-slider-rigth-btn);
	right: -41px;
}
.slick-slider.type2 .slick-arrow::before
{
	content: "";
	background-position: center center;
	background-repeat: no-repeat;
	width: 14px;
	height: 31px;
	opacity: 0.5;
}
.slick-slider.type2 .slick-arrow:hover::before
{
	opacity: 1;
}
.slick-slider.type2 .slick-arrow.slick-prev::before
{
	background-image: url("../img/arrow-left-dark.svg");
}
.slick-slider.type2 .slick-arrow.slick-next::before
{
	background-image: url("../img/arrow-right-dark.svg");
}

/***********************************************************************/
/***********************************************************************/

.socialNetworkList li
{
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.socialNetworkList li:last-child
{
	margin-right: 0;
}
.socialNetworkList li .img_wrap .el
{
}
.socialNetworkList li .img_wrap .el img
{
}
.socialNetworkList li .img_wrap .el .title
{
	position: absolute;
	border-radius: 0;
	border: 1px solid var(--color_black);
	background-color: var(--color_white_50);
	left: 50%;
	padding: 0 10px;
	min-width: 110px;
	line-height: 26px;
	font-size: 1.4rem;
	font-weight: 400;
	text-indent: 0;
	text-align: center;
	color: var(--color_1);
	/*text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);*/
	pointer-events: none;
	opacity: 0;
	z-index: 5;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.socialNetworkList.top li .img_wrap .el .title
{
	bottom: calc(100% + 50px);
}
.socialNetworkList.bottom li .img_wrap .el .title
{
	top: calc(100% + 50px);
}
.socialNetworkList li .img_wrap .el .title::before
{
	position: absolute;
	content: '';
	left: 50%;
	margin-left: -10px;
	width: 0;
	height: 0;
	border-color: transparent;
}
.socialNetworkList.top li .img_wrap .el .title::before
{
	bottom: -11px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--color_1);
}
.socialNetworkList.bottom li .img_wrap .el .title::before
{
	top: -11px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid var(--color_1);
}
.socialNetworkList.top li .img_wrap .el .title::after
{
	bottom: -11px;
	margin-left: -10px;
	border-top: 10px solid var(--color_1);
}
.socialNetworkList.bottom li .img_wrap .el .title::after
{
	top: -11px;
	margin-left: -10px;
	border-bottom: 10px solid var(--color_1);
}
.socialNetworkList.top li .img_wrap:hover .el .title
{
	bottom: calc(100% + 11px);
	opacity: 0.9;
}
.socialNetworkList.bottom li .img_wrap:hover .el .title
{
	top: calc(100% + 11px);
	opacity: 0.9;
}

/***********************************************************************/
/***********************************************************************/

.el_titleBlock_ZeJrAwu4
{
	position: relative;
	margin-bottom: 30px;

	font-family: var(--font-family-1);
	line-height: 24px;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_1);
}
.bgColorScheme .el_titleBlock_ZeJrAwu4,
.bgDark .el_titleBlock_ZeJrAwu4
{
	color: var(--color_white);
}
.el_titleBlock_ZeJrAwu4.text-left
{
	text-align: left;
}
.el_titleBlock_ZeJrAwu4.text-right
{
	text-align: right;
}
.el_titleBlock_ZeJrAwu4 span
{
}

@media (max-width: 1520px)
{
	.el_titleBlock_ZeJrAwu4
	{
		margin-bottom: calc(20px + (30 - 20) * var(--width-coefficient));

		line-height: calc(22px + (24 - 22) * var(--width-coefficient));
		font-size: calc(18px + (20 - 18) * var(--width-coefficient));
	}
}

/*************************/

.burgerBtn
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	border: none;
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	width: 100%;
	/*height: 100%;*/
	font-family: var(--font-family-1);
	line-height: 20px;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_black);
	cursor: pointer;
}
.burgerBtn:hover,
.burgerBtn.open
{
}
.burgerBtn .burger
{
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
}
.burgerBtn .burger span,
.burgerBtn .burger span::before,
.burgerBtn .burger span::after
{
	position: absolute;
	display: block;
	background-color: var(--color_black);
	width: 100%;
	height: 2px;
}
.burgerBtn .burger span
{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition: all 0.3s ease 0s;
}
.burgerBtn .burger span::before,
.burgerBtn .burger span::after
{
	position: absolute;
	content: "";
	left: 0;
	transition: all 0.3s ease 0s;
}
.burgerBtn .burger span::before
{
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}
.burgerBtn .burger span::after
{
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	-o-transform: translateY(10px);
	transform: translateY(10px);
}

.burgerBtn:hover .burger span
{
	/*background-color: #FFFFFF;*/
}
.burgerBtn.open .burger span
{
	background-color: transparent;
}
.burgerBtn:hover .burger span::before,
.burgerBtn:hover .burger span::after,
.burgerBtn.open .burger span::before,
.burgerBtn.open .burger span::after
{
	/*background-color: #FFFFFF;*/
}
.burgerBtn.open .burger span::before
{
	-webkit-transform: translate(0, 0) rotate(45deg);
	-moz-transform: translate(0, 0) rotate(45deg);
	-ms-transform: translate(0, 0) rotate(45deg);
	-o-transform: translate(0, 0) rotate(45deg);
	transform: translate(0, 0) rotate(45deg);
}
.burgerBtn.open .burger span::after
{
	-webkit-transform: translate(0, 0) rotate(-45deg);
	-moz-transform: translate(0, 0) rotate(-45deg);
	-ms-transform: translate(0, 0) rotate(-45deg);
	-o-transform: translate(0, 0) rotate(-45deg);
	transform: translate(0, 0) rotate(-45deg);
}

/****************************************/

section,
.section
{
	padding-top: 80px;
	padding-bottom: 80px;
}

section.pt-0,
.section.pt-0
{
	padding-top: 0;
}

section.pt-40,
.section.pt-40
{
	padding-top: 40px;
}

section.pb-50,
.section.pb-50
{
	padding-bottom: 50px;
}

@media (max-width: 1520px)
{
	section,
	.section
	{
		padding-top: calc(30px + (80 - 30) * var(--width-coefficient));
		padding-bottom: calc(30px + (80 - 30) * var(--width-coefficient));
	}
	section.pt-0,
	.section
	{
		padding-top: 0;
	}
	section.pt-40,
	.section.pt-40
	{
		padding-top: calc(30px + (40 - 30) * var(--width-coefficient));
	}

	section.pb-50,
	.section.pb-50
	{
		padding-bottom: calc(30px + (50 - 30) * var(--width-coefficient));
	}

}

/************************************************************************************/
/*** MAIN ***/
/*************************************************************************************/

.container-fluid
{
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
}
.row
{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.col
{
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
/**/
.row-5
{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}
.col-5
{
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 5px;
	padding-right: 5px;
}
/**/
.row-0
{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -0px;
	margin-left: -0px;
}
.col-0
{
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

/**********/

.siteWidth
{
	margin: 0 auto;
	max-width: var(--site-width-max-width);
}

/***************/

.contentWrapper
{
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
}

main
{
	display: -ms-flex;
	display: flex;
	flex: 1 1 auto;
	justify-content: center;
}

main #centralContent
{
	width: 100%;
}

main #right_side
{
	-ms-flex: 0 0 330px;
	flex: 0 0 330px;
	max-width: 330px;
	margin-bottom: 30px;
}
main #left_side
{
	-ms-flex: 0 0 330px;
	flex: 0 0 330px;
	max-width: 330px;
	margin-bottom: 15px;
}

@media (max-width: 991px)
{
	main #left_side
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	main #right_side
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_informationLineInHeaderBlockm_ZeJrAwu4
{
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList
{
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList .item
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	text-align: center;
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList .item .description
{
	font-family: var(--font-family-1);
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_informationLineInHeaderBlockm_ZeJrAwu4.bgColorScheme .informationLineInHeaderList .item .description,
.el_informationLineInHeaderBlockm_ZeJrAwu4.bgDark .informationLineInHeaderList .item .description
{
	color: var(--color_white);
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList .item .ilBtn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	border-radius: 30px;
	padding: 0 15px;
	min-width: 100px;
	height: 32px;
	color: var(--color_white);
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList .item .ilBtn:hover
{
	position: relative;
	z-index: 1;
}
.el_informationLineInHeaderBlockm_ZeJrAwu4.bgColorScheme .informationLineInHeaderList .item .ilBtn
{
	border: 1px solid var(--color_11_25);
}
.el_informationLineInHeaderBlockm_ZeJrAwu4.bgColorScheme .informationLineInHeaderList .item .ilBtn:hover
{
	border: 1px solid var(--color_white);
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList .item .ilBtn:hover::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 30px;
	background-color: var(--color_black_10);
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList .item .messagerList
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList .item .messagerList .messager
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
}
.el_informationLineInHeaderBlockm_ZeJrAwu4 .informationLineInHeaderList .item .messagerList .messager img
{
	max-width: 25px;
	max-height: 25px;
}

/***********************************************************************/
/***********************************************************************/

header.headerCD
{
	position: relative;
	z-index: 600;
}

/**********/

header.headerCD #headerMobileBlock
{
	display: none;
	position: relative;
	height: 50px;
}

header.headerCD .headerMobileCD
{
	position: absolute;
	background-color: var(--color_white);
	border-bottom: 1px solid var(--color_gray);
	top: 0;
	left: 0;
	padding: 5px 0;
	width: 100%;
	z-index: 700;
	-webkit-transition: top 0.35s ease;
	-moz-transition: top 0.35s ease;
	-ms-transition: top 0.35s ease;
	-o-transition: top 0.35s ease;
	transition: top 0.35s ease;
}
header.headerCD .headerMobileCD.scroll
{
	top: -100%;
}
header.headerCD .headerMobileCD.fixed
{
	position: fixed;
	top: 0;
}
header.headerCD .headerMobileCD.bgLight
{
	border-color: var(--color_gray);
	background-color: var(--color_white);
}
header.headerCD .headerMobileCD.bgGray
{
	border-color: var(--color_2_15);
	background-color: var(--color_gray);
}
header.headerCD .headerMobileCD.bgColorScheme
{
	border-color: var(--color_gray_15);
	background-color: var(--color_colorScheme);
}
header.headerCD .headerMobileCD.bgDark
{
	border-color: var(--color_gray_15);
	background-color: var(--color_dark);
}

header.headerCD .headerMobileCD .row
{
	align-items: center;
	height: 40px;
}
header.headerCD .headerMobileCD .col
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

/***/

header.headerCD .headerMobileCD .logoCol
{
	align-items: unset;
}
header.headerCD .headerMobileCD .logoCol .logo
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	max-width: 100%;
	max-height: 100%;
}
header.headerCD .headerMobileCD .logoCol .logo img
{
	display: inline-block;
	height: inherit;
	max-height: 100%;
}

/***/

header.headerCD .headerMobileCD .itemBtn
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	margin: 0 auto;
	cursor: pointer;
}
header.headerCD .headerMobileCD .itemBtn .ico
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 25px;
	height: 25px;
}
header.headerCD .headerMobileCD .itemBtn .ico svg
{
	width: 25px;
	height: 25px;
}
header.headerCD .headerMobileCD .itemBtn .title
{
	display: block;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 1px;
	line-height: 1;
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
	color: var(--color_1);
}
header.headerCD .headerMobileCD.bgColorScheme .itemBtn .title,
header.headerCD .headerMobileCD.bgDark .itemBtn .title
{
	color: var(--color_white);
}
/**/
header.headerCD .headerMobileCD .itemBtn.openSearchBtn .ico svg path
{
	stroke: var(--color_colorScheme);
}
header.headerCD .headerMobileCD.bgColorScheme .itemBtn.openSearchBtn .ico svg path,
header.headerCD .headerMobileCD.bgDark .itemBtn.openSearchBtn .ico svg path
{
	stroke: var(--color_white);
}
/**/
header.headerCD .headerMobileCD .itemBtn.catalogBtn .ico svg rect
{
	fill: var(--color_colorScheme);
}
header.headerCD .headerMobileCD.bgColorScheme .itemBtn.catalogBtn .ico svg rect,
header.headerCD .headerMobileCD.bgDark .itemBtn.catalogBtn .ico svg rect
{
	fill: var(--color_white);
}
/**/
header.headerCD .headerMobileCD .langBtnCol
{
}
header.headerCD .headerMobileCD .toggleWrapper
{
	position: relative;
	height: 100%;
}
header.headerCD .headerMobileCD .toggleWrapper .toggleTitle
{
}

header.headerCD .headerMobileCD .toggleWrapper .toggleTitle .toggleBtn
{
	text-transform: uppercase;
}
header.headerCD .headerMobileCD .toggleWrapper .toggleTitle .toggleBtn::after
{
	display: inline-block;
	content: "\f107";
	font-family: "FontAwesome";
}
header.headerCD .headerMobileCD .toggleWrapper .toggleTitle.open .toggleBtn::after
{
	content: "\f106";
}
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock
{
	display: none;
	position: absolute;
	background-color: var(--color_white);
	top: 100%;
	right: -95px;
	padding: 10px 15px;
	min-width: 190px;
	box-shadow: 0 0 3px rgba(0,0,0, 0.3);
	z-index: 50;
}
header.headerCD .headerMobileCD.bgLight .toggleWrapper .toggleBlock
{
	background-color: var(--color_white);
}
header.headerCD .headerMobileCD.bgGray .toggleWrapper .toggleBlock
{
	background-color: var(--color_gray);
}
header.headerCD .headerMobileCD.bgColorScheme .toggleWrapper .toggleBlock
{
	background-color: var(--color_colorScheme);
}
header.headerCD .headerMobileCD.bgDark .toggleWrapper .toggleBlock
{
	background-color: var(--color_dark);
}
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock.open
{
	display: block;
}
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock ul
{
	padding: 0;
}
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock ul li
{
	display: block;
	margin: 0;
	padding: 0;
	text-align: left;
}
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock ul li a,
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock ul li span
{
	display: block;
	padding: 5px 0;
	font-family: var(--font-family-1);
	line-height: 1.6rem;
	font-size: 1.3rem;
	color: var(--color_1);
}
header.headerCD .headerMobileCD.bgColorScheme .toggleWrapper .toggleBlock ul li a,
header.headerCD .headerMobileCD.bgColorScheme .toggleWrapper .toggleBlock ul li span,
header.headerCD .headerMobileCD.bgDark .toggleWrapper .toggleBlock ul li a,
header.headerCD .headerMobileCD.bgDark .toggleWrapper .toggleBlock ul li span
{
	color: var(--color_white);
}
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock ul li a:hover,
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock ul li a.active,
header.headerCD .headerMobileCD .toggleWrapper .toggleBlock ul li span
{
	color: var(--color_colorScheme);
}
header.headerCD .headerMobileCD.bgColorScheme .toggleWrapper .toggleBlock ul li a:hover,
header.headerCD .headerMobileCD.bgColorScheme .toggleWrapper .toggleBlock ul li a.active,
header.headerCD .headerMobileCD.bgColorScheme .toggleWrapper .toggleBlock ul li span,
header.headerCD .headerMobileCD.bgDark .toggleWrapper .toggleBlock ul li a:hover,
header.headerCD .headerMobileCD.bgDark .toggleWrapper .toggleBlock ul li a.active,
header.headerCD .headerMobileCD.bgDark .toggleWrapper .toggleBlock ul li span
{
	color: var(--color_white);
	opacity: 0.7;
}
/**/
header.headerCD .headerMobileCD .itemBtn.cartBtn .ico
{
	position: relative;
}
header.headerCD .headerMobileCD .itemBtn.cartBtn .ico .amount
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: var(--color_2_50);
	top: -3px;
	right: -3px;
	padding: 2px;
	min-width: 16px;
	height: 16px;
	font-size: 1.1rem;
	color: var(--color_white);
}
header.headerCD .headerMobileCD .itemBtn.cartBtn.active .ico .amount,
header.headerCD .headerMobileCD .itemBtn.cartBtn:hover .ico .amount
{
	background-color: var(--color_1);
	color: var(--color_white);
}
header.headerCD .headerMobileCD.bgDark .itemBtn.cartBtn.active .ico .amount,
header.headerCD .headerMobileCD.bgDark .itemBtn.cartBtn:hover .ico .amount
{
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
header.headerCD .headerMobileCD .itemBtn.cartBtn .ico svg.v1 path
{
	fill: var(--color_2);
}
header.headerCD .headerMobileCD .itemBtn.cartBtn.active .ico svg.v1 path,
header.headerCD .headerMobileCD .itemBtn.cartBtn:hover .ico svg.v1 path
{
	fill: var(--color_colorScheme);
}
header.headerCD .headerMobileCD.bgColorScheme .itemBtn.cartBtn .ico svg.v1 path,
header.headerCD .headerMobileCD.bgDark .itemBtn.cartBtn .ico svg.v1 path
{
	fill: var(--color_2_50);
}
header.headerCD .headerMobileCD.bgColorScheme .itemBtn.cartBtn.active .ico svg.v1 path,
header.headerCD .headerMobileCD.bgColorScheme .itemBtn.cartBtn:hover .ico svg.v1 path,
header.headerCD .headerMobileCD.bgDark .itemBtn.cartBtn.active .ico svg.v1 path,
header.headerCD .headerMobileCD.bgDark .itemBtn.cartBtn:hover .ico svg.v1 path
{
	fill: var(--color_white);
}

header.headerCD .headerMobileCD .itemBtn.cartBtn .ico svg.v2 path
{
	stroke: var(--color_2);
}
header.headerCD .headerMobileCD .itemBtn.cartBtn.active .ico svg.v2 path,
header.headerCD .headerMobileCD .itemBtn.cartBtn:hover .ico svg.v2 path
{
	stroke: var(--color_colorScheme);
}
header.headerCD .headerMobileCD.bgColorScheme .itemBtn.cartBtn .ico svg.v2 path,
header.headerCD .headerMobileCD.bgDark .itemBtn.cartBtn .ico svg.v2 path
{
	stroke: var(--color_2_50);
}
header.headerCD .headerMobileCD.bgColorScheme .itemBtn.cartBtn.active .ico svg.v2 path,
header.headerCD .headerMobileCD.bgColorScheme .itemBtn.cartBtn:hover .ico svg.v2 path,
header.headerCD .headerMobileCD.bgDark .itemBtn.cartBtn.active .ico svg.v2 path,
header.headerCD .headerMobileCD.bgDark .itemBtn.cartBtn:hover .ico svg.v2 path
{
	stroke: var(--color_white);
}

/***/

header.headerCD .headerMobileCD .searchCol
{
}
/**/
header.headerCD .headerMobileCD .searchCol .searchBlock
{
	display: block;
	position: absolute;
	background-color: var(--color_white);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0%;
	overflow: hidden;
	z-index: -1;
}
header.headerCD .headerMobileCD .searchCol .searchBlock.open
{
	height: 100%;
	overflow: unset;
	z-index: 50;
}
header.headerCD .headerMobileCD .searchCol .searchBlock .container-fluid
{
	height: 100%;
}
header.headerCD .headerMobileCD .searchCol .searchBlock .searchWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
/**/
header.headerCD .headerMobileCD .searchCol .searchBlock .searchWrapper form
{
	position: relative;
	display: block;
	width: 100%;
	z-index: 5;
}
header.headerCD .headerMobileCD .searchCol .searchBlock .searchWrapper form input
{
	border-radius: var(--border-radius);
	border: 1px solid var(--color_2);
	background-color: var(--color_white);
	padding: 0 50px 0 15px;
	width: 100%;
	height: 40px;
	color: var(--color_1);
}
header.headerCD .headerMobileCD .searchCol .searchBlock button
{
	position: absolute;
	display: block;
	background-color: transparent;
	border: none;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
header.headerCD .headerMobileCD .searchCol .searchBlock button svg path
{
	stroke: var(--color_colorScheme);
}
/**/
header.headerCD .headerMobileCD .searchCol .searchBlock .closeSearch
{
	-ms-flex: 0 0 70px;
	flex: 0 0 70px;
	max-width: 70px;
	text-align: right;
}
header.headerCD .headerMobileCD .searchCol .searchBlock .closeSearch .closeSearchBtn
{
	position: relative;
	display: inline-block;
}

/***/

header.headerCD .headerMobileCD .burgerBtnCol
{
}
header.headerCD .headerMobileCD .burgerBtnCol .burgerBtn
{
	width: auto;
}
header.headerCD .headerMobileCD .burgerBtnCol .burgerBtn .burger
{
	width: 30px;
	height: 30px;
}
header.headerCD .headerMobileCD .burgerBtnCol .burgerBtn .burger span,
header.headerCD .headerMobileCD .burgerBtnCol .burgerBtn .burger span::before,
header.headerCD .headerMobileCD .burgerBtnCol .burgerBtn .burger span::after
{
	background-color: var(--color_1);
}
header.headerCD .headerMobileCD.bgColorScheme .burgerBtnCol .burgerBtn .burger span,
header.headerCD .headerMobileCD.bgColorScheme .burgerBtnCol .burgerBtn .burger span::before,
header.headerCD .headerMobileCD.bgColorScheme .burgerBtnCol .burgerBtn .burger span::after,
header.headerCD .headerMobileCD.bgDark .burgerBtnCol .burgerBtn .burger span,
header.headerCD .headerMobileCD.bgDark .burgerBtnCol .burgerBtn .burger span::before,
header.headerCD .headerMobileCD.bgDark .burgerBtnCol .burgerBtn .burger span::after
{
	background-color: var(--color_white);
}
header.headerCD .headerMobileCD .burgerBtnCol .burgerBtn.open .burger span
{
	background-color: transparent;
}

/*****/

.suggestSearchBlock
{
	position: absolute;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	background-color: var(--color_white);
	top: 100%;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 10;
	max-height: calc(100vh - 50px);
	overflow: auto;
}
.suggestSearchBlock:not(:empty)
{
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.suggestSearchBlock ul
{
	padding: 10px 0;
}
.suggestSearchBlock ul:first-child
{
	padding-top: 15px;
}
.suggestSearchBlock ul:last-child
{
	padding-bottom: 15px;
}
.suggestSearchBlock ul li
{
	display: -ms-flex;
	display: flex;
}
.suggestSearchBlock ul li.title
{
	padding: 0 15px 10px 15px;
	font-size: 1.3rem;
	color: var(--color_2);
}
.suggestSearchBlock ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 15px;
	line-height: 1.2;
	font-size: 1.5rem;
	color: var(--color_1);
}
.suggestSearchBlock ul li a.offer
{
	display: -ms-grid;
	display: grid;
	align-items: center;
	grid-template-columns: 50px 1fr;
	gap: 5px;
}
.suggestSearchBlock ul li a:hover,
.suggestSearchBlock ul li a.active
{
	color: var(--color_colorScheme);
}
.suggestSearchBlock ul li a .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	line-height: 1;
	font-size: 1.9rem;
	color: var(--color_1);
}
.suggestSearchBlock ul li a .ico.img
{
	grid-row-start: 1;
	grid-row-end: 3;
	width: 50px;
	height: 50px;
}
.suggestSearchBlock ul li a:hover .ico,
.suggestSearchBlock ul li a.active .ico
{
	color: var(--color_colorScheme);
}
.suggestSearchBlock ul li a .ico img
{
}
.suggestSearchBlock ul li a .ico svg
{
	width: 25px;
	height: 25px;
}
.suggestSearchBlock ul li a .ico svg.wishlistSvg path
{
	stroke: var(--color_1);
}
.suggestSearchBlock ul li a .ico .ico svg.compareSvg path
{
	fill: var(--color_1);
}
.suggestSearchBlock ul li a:hover .ico svg.wishlistSvg path,
.suggestSearchBlock ul li a.active .ico svg.wishlistSvg path
{
	stroke: var(--color_colorScheme);
}
.suggestSearchBlock ul li a:hover .ico .ico svg.compareSvg path,
.suggestSearchBlock ul li a.active .ico .ico svg.compareSvg path
{
	fill: var(--color_colorScheme);
}
/**/
.suggestSearchBlock ul li a .price
{
	font-weight: bold;
}

/***/

.suggestSearchCloseBG
{
	display: none;
	position: fixed;
	background-color: var(--color_black_50);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

/**********/

@media (max-width: 991px)
{
	header.headerCD #headerMobileBlock
	{
		display: block;
	}
}

@media (max-width: 460px)
{
	header.headerCD #headerMobileBlock .row .col
	{
		padding-left: 5px;
		padding-right: 5px;
	}
	header.headerCD #headerMobileBlock .row .col:first-child
	{
		padding-left: 15px;
	}
	header.headerCD #headerMobileBlock .row .col:last-child
	{
		padding-right: 15px;
	}

	header.headerCD .headerMobileCD .burgerBtnCol .burgerBtn .burger
	{
		width: 30px;
	}
}

/************************************/
/************************************/

.animate__animated
{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@media print, (prefers-reduced-motion: reduce)
{
	.animate__animated
	{
		-webkit-animation-duration: 1ms !important;
		animation-duration: 1ms !important;
		-webkit-transition-duration: 1ms !important;
		transition-duration: 1ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
	}
}

@-webkit-keyframes zoomIn
{
	from
	{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50%
	{
		opacity: 1;
	}
}
@keyframes zoomIn
{
	from
	{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50%
	{
		opacity: 1;
	}
}
.animate__zoomIn
{
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}


/************************************/
/************************************/

header.headerCD #showMenuButton,
header.headerCD #closeMenuButton
{
	cursor: pointer;
}
header.headerCD #closeMenuButton
{
	position: absolute;
	background-color: transparent;
	border: none;
	top: 10px;
	right: 8px;
	width: 30px;
	height: 30px;
}

header.headerCD .mobileMenuBlock
{
	position: fixed;
	display: block;
	background-color: var(--color_black_10);
	top: 0;
	left: -100%;
	padding: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
header.headerCD .mobileMenuBlock.open
{
	left: 0;
}
/**/
header.headerCD .mobileMenuBlock .closeBG
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
/**/
header.headerCD .mobileMenuBlock .mobileContent
{
	position: relative;
	display: block;
	background-color: var(--color_white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	left: -100%;
	width: 320px;
	height: 100%;
	z-index: 2;
	overflow: auto;
	transition: all 0.5s ease 0s;
}
header.headerCD .mobileMenuBlock.open .mobileContent
{
	left: 0;
}

/***/

header.headerCD .mobileMenuBlock .itemBlock
{
	padding: 15px;
	border-bottom: 1px solid var(--color_gray);
}

header.headerCD .mobileMenuBlock .itemBlock.logoBlock,
header.headerCD .mobileMenuBlock .itemBlock.profileBlock
{
	border-bottom: none;
}
header.headerCD .mobileMenuBlock .topBlock.bgLight .itemBlock.profileBlock
{
	border-bottom: 1px solid var(--color_gray);
}

/***/

header.headerCD .mobileMenuBlock .topBlock
{
	position: relative;
	background-color: var(--color_white);
}

header.headerCD .mobileMenuBlock .topBlock.bgLight
{
	background-color: var(--color_white);
}
header.headerCD .mobileMenuBlock .topBlock.bgGray
{
	background-color: var(--color_gray);
}
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme
{
	background-color: var(--color_colorScheme);
}
header.headerCD .mobileMenuBlock .topBlock.bgDark
{
	background-color: var(--color_dark);
}

/***/

header.headerCD .mobileMenuBlock .topBlock.burgerBtnCol .burgerBtn .burger span,
header.headerCD .mobileMenuBlock .topBlock.burgerBtnCol .burgerBtn .burger span::before,
header.headerCD .mobileMenuBlock .topBlock.burgerBtnCol .burgerBtn .burger span::after
{
	background-color: var(--color_1);
}
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme .burgerBtnCol .burgerBtn .burger span,
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme .burgerBtnCol .burgerBtn .burger span::before,
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme .burgerBtnCol .burgerBtn .burger span::after,
header.headerCD .mobileMenuBlock .topBlock.bgDark .burgerBtnCol .burgerBtn .burger span,
header.headerCD .mobileMenuBlock .topBlock.bgDark .burgerBtnCol .burgerBtn .burger span::before,
header.headerCD .mobileMenuBlock .topBlock.bgDark .burgerBtnCol .burgerBtn .burger span::after
{
	background-color: var(--color_white);
}
header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol .burgerBtn.open .burger span
{
	background-color: transparent;
}

/***/

header.headerCD .mobileMenuBlock .profileBlock
{
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .icoBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: var(--color_dark);
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;

	font-size: 2.2rem;
	color: var(--color_white);
}
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme .profileBlock .innerWrapper .icoBlock,
header.headerCD .mobileMenuBlock .topBlock.bgDark .profileBlock .innerWrapper .icoBlock
{
	background-color: var(--color_white);
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock
{
	padding-left: 15px;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul
{
	display: -ms-flex;
	display: flex;
	align-items: center;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li
{
	display: inline-block;
	line-height: 2rem;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li.separator
{
	display: inline-block;
	background-color: var(--color_1);
	margin: 0 10px;
	width: 2px;
	height: 20px;
}
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme .profileBlock .innerWrapper .infoBlock ul li.separator,
header.headerCD .mobileMenuBlock .topBlock.bgDark .profileBlock .innerWrapper .infoBlock ul li.separator
{
	background-color: var(--color_white);
}

header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li a
{
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li a:hover
{
	color: var(--color_colorScheme);
}
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme .profileBlock .innerWrapper .infoBlock ul li a,
header.headerCD .mobileMenuBlock .topBlock.bgDark .profileBlock .innerWrapper .infoBlock ul li a
{
	color: var(--color_white);
}
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme .profileBlock .innerWrapper .infoBlock ul li a:hover,
header.headerCD .mobileMenuBlock .topBlock.bgDark .profileBlock .innerWrapper .infoBlock ul li a:hover
{
	color: var(--color_white);
	opacity: 0.7;
}

header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock .text
{
	margin-top: 5px;
	font-size: 1.2rem;
	color: var(--color_2);
}
header.headerCD .mobileMenuBlock .topBlock.bgColorScheme .profileBlock .innerWrapper .infoBlock .text,
header.headerCD .mobileMenuBlock .topBlock.bgDark .profileBlock .innerWrapper .infoBlock .text
{
	color: var(--color_white);
}

/***/

header.headerCD .mobileMenuBlock .linkWithIcoBlock
{
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul
{
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li
{
	margin-top: 15px;
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li:first-child
{
	margin-top: 0;
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a:hover
{
	color: var(--color_colorScheme);
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a .ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: var(--color_gray);
	padding: 3px;
	-ms-flex: 0 0 30px;
	flex: 0 0 30px;
	max-width: 30px;
	height: 30px;

	font-size: 1.8rem;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a:hover .ico
{
	background-color: var(--color_colorScheme);
	font-size: 1.5rem;
	color: var(--color_white);
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a .ico img
{
	max-width: 25px;
	max-height: 25px;
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a .ico svg
{
	width: 25px;
	height: 25px;
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a .ico.catalog svg rect
{
	fill: var(--color_1);
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a:hover .ico.catalog svg rect
{
	fill: var(--color_white);
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a .title
{
	display: inline-block;
	padding-left: 15px;
}

/***/

header.headerCD .mobileMenuBlock .contactsBlock
{
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul
{
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li
{
	margin-top: 15px;
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li:first-child
{
	margin-top: 0;
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a
{
	font-size: 1.5rem;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a:hover,
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a.active
{
	color: var(--color_colorScheme);
}

/***/

header.headerCD .mobileMenuBlock .currencyAmdLangBlock
{
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-top: 13px;
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul:first-child
{
	margin-top: 0;
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li
{
	display: inline-block;
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li.title
{
	margin-right: 15px;
	font-size: 1.5rem;
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li.item
{
	margin: 2px 5px;
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li.item:last-child
{
	margin-right: 0;
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li.item span,
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li.item a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border: 1px solid var(--color_4);
	background-color: var(--color_white);
	padding: 5px;
	font-size: 1.3rem;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li.item span,
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li.item a:hover
{
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}

/***/

header.headerCD .mobileMenuBlock .contactsBlock
{
}
header.headerCD .mobileMenuBlock .contactsBlock ul li
{
	margin-top: 15px;
}
header.headerCD .mobileMenuBlock .contactsBlock ul li:first-child
{
	margin-top: 0;
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a:hover
{
	color: var(--color_colorScheme);
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a .ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	-ms-flex: 0 0 30px;
	flex: 0 0 30px;
	max-width: 30px;

	font-size: 2.2rem;
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a .ico img
{
	max-width: 25px;
	max-height: 25px;
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a .ico svg
{
	width: 25px;
	height: 25px;
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a .ico.contactCenter svg path
{
	stroke: var(--color_1);
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a .title
{
	display: inline-block;
	padding-left: 15px;
	font-size: 1.5rem;
}

/**********/

@media (max-width: 480px)
{
	header.headerCD .mobileMenuBlock > div
	{
		width: 100%;
	}
}

/************************************/
/************************************/

header.headerCD .mobileCatalogBlock
{
	position: fixed;
	display: none;
	background-color: var(--color_black_10);
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	z-index: -1000;
}
header.headerCD .mobileCatalogBlock.open
{
	display: block;
	z-index: 1000;
}
/**/
header.headerCD .mobileCatalogBlock .closeBG
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
/**/
header.headerCD .mobileCatalogBlock .mobileContent
{
	position: absolute;
	display: block;
	border-radius: 4px;
	background-color: var(--color_white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	overflow: auto;
}
header.headerCD .mobileCatalogBlock.open .mobileContent
{
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;

	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

/***/

header.headerCD .mobileCatalogBlock .titleBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color_gray);
	padding: 15px;
}
header.headerCD .mobileCatalogBlock .titleBlock .title
{
	line-height: 1.5;
	font-size: 1.8rem;
	font-weight: bold;
}
header.headerCD .mobileCatalogBlock .titleBlock .title .arrow
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	margin-right: 15px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
header.headerCD .mobileCatalogBlock .titleBlock button
{
	border: none;
	background-color: transparent;
	width: 30px;
	height: 30px;
}

/***/

header.headerCD .mobileCatalogBlock .mobileContent ul
{
}
header.headerCD .mobileCatalogBlock .mobileContent ul li
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color_4);
	padding: 0 15px;
}
header.headerCD .mobileCatalogBlock .mobileContent ul li a
{
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	padding: 15px 0;
	width: 100%;
	line-height: 1.2;
	font-size: 1.8rem;
	text-align: left;
	color: var(--color_1);
}
header.headerCD .mobileCatalogBlock .mobileContent ul li a:hover
{
	color: var(--color_colorScheme);
}
header.headerCD .mobileCatalogBlock .mobileContent ul li a .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	width: 24px;
	height: 24px;
}
header.headerCD .mobileCatalogBlock .mobileContent ul li .toggleBtn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 2rem;
	color: var(--color_1);
	cursor: pointer;
}
/**/
header.headerCD .mobileCatalogBlock .mobileContent ul .backBtn
{
	padding: 15px;
}
header.headerCD .mobileCatalogBlock .mobileContent ul .backBtn a
{
	line-height: 1.5;
	font-size: 1.4rem;
}
header.headerCD .mobileCatalogBlock .mobileContent ul .backBtn a i
{
	margin-right: 10px;
}
/**/
header.headerCD .mobileCatalogBlock .mobileContent ul li .toggleBtn:hover
{
	color: var(--color_colorScheme);
}

/***/

header.headerCD .mobileCatalogBlock .mobileContent .subCatalogBlock
{
	display: none;
	position: absolute;
	background-color: var(--color_white);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}
header.headerCD .mobileCatalogBlock .mobileContent .subCatalogBlock.open
{
	display: block;
}

/***********************************************************************/
/*****  navigationLine  *****/
/***********************************************************************/

.navigationLine
{
}
.navigationLine .breadcrumbs
{
	padding: 15px 0 10px 0;
}
.navigationLine .breadcrumbs li
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	margin: 0 10px 5px 0;
	min-height: 16px;
	font-size: 1.3rem;
	color: var(--color_2);
}
.navigationLine .breadcrumbs li a
{
	line-height: 16px;
	font-size: 1.3rem;
	color: var(--color_1);
}
.navigationLine .breadcrumbs li a:hover
{
	color: var(--color_colorScheme);
}
.navigationLine .breadcrumbs li .separator
{
	position: relative;
	display: inline-block;
	border-radius: 100%;
	background-color: var(--color_colorScheme);
	top: -1px;
	width: 5px;
	height: 5px;
}

@media (max-width: 991px)
{
	.navigationLine > div
	{
		overflow-x: auto;
	}

	.navigationLine .breadcrumbs
	{
		display: flex;
		flex-wrap: nowrap;
		padding: 10px 0;
	}
	.navigationLine .breadcrumbs li
	{
		white-space: nowrap;
		vertical-align: top;
		min-width: auto;
	}
}

/***********************************************************************/
/*****  pageTitle  *****/
/***********************************************************************/

.el_pageTitle_ZeJrAwu4
{
}
.el_pageTitle_ZeJrAwu4 h1
{
	padding: 10px 0 30px 0;
	font-family: var(--font-family-1);
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color_1);
}

@media (max-width: 1520px)
{
	.el_pageTitle_ZeJrAwu4 h1
	{
		padding-bottom: calc(15px + (30 - 15) * var(--width-coefficient));

		line-height: calc(24px + (29 - 24) * var(--width-coefficient));
		font-size: calc(20px + (24 - 20) * var(--width-coefficient));
	}
}

/***********************************************************************/
/*****  ASIDE  *****/
/***********************************************************************/

.asideBlockCD
{
}
.asideBlockCD .asideContent
{
}

/****/

.asideBlockCD .showLeftMenuButton
{
	display: none;
	min-width: 150px;
}
.asideBlockCD .showLeftMenuButton i
{
	margin-right: 10px;
}

.asideBlockCD .asideMenuButtonsBlock
{
	display: none;
	position: relative;
	height: 52px;
}
.asideBlockCD .asideMenuButtonsBlock.offerList > div
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-around;
	top: 0;
	left: 0;
	margin: 0 -5px;
	padding: 10px 0;
	width: calc(100% + 10px);
	-webkit-transition: top 0.30s ease;
	-moz-transition: top 0.30s ease;
	-ms-transition: top 0.30s ease;
	-o-transition: top 0.30s ease;
	transition: top 0.30s ease;
}
.asideBlockCD .asideMenuButtonsBlock.scroll > div
{
	position: fixed;
	background-color: var(--color_white);
	top: 0;
	padding: 5px 15px;
	box-shadow: 0 0 5px var(--color_1_50);
	z-index: 100;
}
.asideBlockCD .asideMenuButtonsBlock.scroll.fixed > div
{
	top: 51px;
}

.asideBlockCD .asideMenuButtonsBlock button
{
	display: block;
	width: calc(50% - 10px);
	height: 32px;
	margin: 0 5px;
	cursor: pointer;
}

/****/

.asideBlockCD .asideWidget
{
	margin-bottom: 30px;
	border-radius: 4px;
	border-top: 1px solid var(--color_4);
	border-left: 1px solid var(--color_4);
	border-right: 1px solid var(--color_4);
}

/***/

.asideBlockCD .asideTitle
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;

	border-radius: 4px 4px 0 0;
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_gray);
	padding: 15px 15px;
	font-size: 1.6rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color_1);
	cursor: pointer;
}
.asideBlockCD.light .asideTitle
{
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_white);
	color: var(--color_1);
}
.asideBlockCD.gray .asideTitle
{
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_gray);
	color: var(--color_1);
}
.asideBlockCD.colorScheme .asideTitle
{
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
.asideBlockCD.dark .asideTitle
{
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_dark);
	color: var(--color_white);
}


.asideBlockCD .asideTitle.open
{
}
/**/
.asideBlockCD .asideTitle2
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;

	padding-right: 25px;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
	cursor: pointer;
}
.asideBlockCD .asideTitle2:hover
{
	color: var(--color_colorScheme);
}
.asideBlockCD .asideTitle2 .toggleBtn
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	border: none;
	background: transparent;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
}
.asideBlockCD .asideTitle2 .toggleBtn::before,
.asideBlockCD .asideTitle2 .toggleBtn::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_2);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.asideBlockCD .asideTitle2 .toggleBtn.open::before,
.asideBlockCD .asideTitle2 .toggleBtn.open::after
{
	background-color: var(--color_black);
}
.asideBlockCD .asideTitle2 .toggleBtn::before
{
	width: 15px;
	height: 2px;
}
.asideBlockCD .asideTitle2 .toggleBtn::after
{
	width: 2px;
	height: 15px;
}
.asideBlockCD .asideTitle2 .toggleBtn.open::after
{
	display: none;
}

/**/

.asideBlockCD .content
{
	display: none;
	border-bottom: none;
	background-color: var(--color_white);
	margin-bottom: 30px;
}
.asideBlockCD .content.open
{
	display: block;
	border-bottom: 1px solid var(--color_4);
}

/***/

.asideBlockCD .content ul
{
}
.asideBlockCD .content ul li
{
	position: relative;
	display: block;
	border-top: 1px solid var(--color_4);
}
.asideBlockCD .content ul li:first-child
{
	border-top: none;
}
.asideBlockCD .content ul li a
{
	display: block;
	padding: 10px 15px;
	line-height: 1.2;
	font-size: 1.5rem;
	color: var(--color_1);
}
.asideBlockCD .content ul li a:hover,
.asideBlockCD .content ul li a.active
{
	color: var(--color_colorScheme);
}
.asideBlockCD .content ul li a .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
	width: 20px;
	height: 20px;
	line-height: 1;
	font-size: 1.9rem;
	color: var(--color_1);
}
.asideBlockCD .content ul li a:hover .ico,
.asideBlockCD .content ul li a.active .ico
{
	color: var(--color_colorScheme);
}
.asideBlockCD .content ul li a .ico svg
{
	width: 20px;
	height: 20px;
}
.asideBlockCD .content ul li a .ico svg.wishlistSvg path
{
	stroke: var(--color_1);
}
.asideBlockCD .content ul li a .ico .ico svg.compareSvg path
{
	fill: var(--color_1);
}
.asideBlockCD .content ul li a:hover .ico svg.wishlistSvg path,
.asideBlockCD .content ul li a.active .ico svg.wishlistSvg path
{
	stroke: var(--color_colorScheme);
}
.asideBlockCD .content ul li a:hover .ico .ico svg.compareSvg path,
.asideBlockCD .content ul li a.active .ico .ico svg.compareSvg path
{
	fill: var(--color_colorScheme);
}
.asideBlockCD .content ul li .toggleBtn
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	border: none;
	background: transparent;
	top: 8px;
	right: 3px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.asideBlockCD .content ul li .toggleBtn::before,
.asideBlockCD .content ul li .toggleBtn::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_2);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.asideBlockCD .content ul li .toggleBtn.open::before,
.asideBlockCD .content ul li .toggleBtn.open::after
{
	background-color: var(--color_black);
}
.asideBlockCD .content ul li .toggleBtn::before
{
	width: 15px;
	height: 2px;
}
.asideBlockCD .content ul li .toggleBtn::after
{
	width: 2px;
	height: 15px;
}
.asideBlockCD .content ul li .toggleBtn.open::after
{
	display: none;
}
.asideBlockCD .content ul li ul
{
	display: none;
	padding-left: 15px;
}
.asideBlockCD .content ul li ul.open
{
	display: block;
}
.asideBlockCD .content ul li li a
{
	font-size: 1.4rem;
}

/******/

.asideBlockCD .showAndHideParameter
{
	margin-top: 10px;
}
.asideBlockCD .showAndHideParameter a
{
	position: relative;
	display: inline-block;
	padding: 5px 15px 5px 0;
	line-height: 1.5rem;
	font-size: 1.3rem;
	color: var(--color_2);
	cursor: pointer;
}
.asideBlockCD .showAndHideParameter a:hover
{
	color: var(--color_colorScheme);
}
.asideBlockCD .showAndHideParameter a i
{
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

/******/

.asideMenuParameterBlock
{
}
.asideBlockCD .quickSearchBlock
{
	margin-top: 10px;
	margin-bottom: 10px;
}
.asideBlockCD .quickSearchBlock input
{
	padding: 0 15px;
	width: 100%;
	height: 32px;
	font-size: 1.5rem;
}

/**/

.asideMenuParameterBlock .parameterListBlock
{
	position: relative;
}
.asideMenuParameterBlock .parameterListBlock .closeButton
{
	display: none;
	height: 50px;
	padding: 10px 0;
}
.asideMenuParameterBlock .parameterListBlock .closeButton .closeParameterButton
{
}

/***/

.asideMenuParameterBlock .parameterListBlock .filterBlock
{
	border-bottom: 1px solid var(--color_4);
	padding: 15px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock:last-child
{
	border-bottom: none;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock .toggleContent
{
	padding-top: 15px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul
{
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li
{
	border: none;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li.hide,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li.hidden
{
	display: none;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li.shown,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li.showed2
{
	display: block;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a
{
	display: block;
	padding: 5px 0 5px 25px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.checked
{
	color: var(--color_colorScheme);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled
{
	cursor: not-allowed;
	opacity: 0.7;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled:hover
{
	color: var(--color_1);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a i
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border: 1px solid var(--color_2);
	background-color: var(--color_white);
	top: 6px;
	left: 0;
	width: 18px;
	height: 18px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a i::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background-color: transparent;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a:hover i::before
{
	background-color: var(--color_2);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.checked i::before
{
	background-color: var(--color_colorScheme);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled i::before
{
	content: "\f05e";
	font-family: "FontAwesome";
	background-color: transparent;
	width: 9px;
	height: 10px;
	line-height: 1;
	font-size: 1rem;
	color: var(--color_2);
}

/*****/

.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li
{
	display: inline-block;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a
{
	display: -ms-grid;
	display: grid;
	align-items: center;
	grid-template-columns: 24px auto;
	gap: 10px;
	border-radius: var(--border-radius);
	border: 1px solid var(--color_4);
	margin: 0 10px 10px 0;
	padding: 0 10px 0 0;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a:hover,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a.checked
{
	border-color: var(--color_colorScheme);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a span
{
	display: block;
	border-radius: var(--border-radius);
	border: 1px solid var(--color_4);
	padding: 0;
	margin: -1px 0 -1px -1px;
	width: 30px;
	height: 30px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a:hover span,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a.checked span
{
	border-color: var(--color_colorScheme);
}

/*****/

@media (max-width: 991px)
{
	.asideBlockCD .asideMenuButtonsBlock
	{
		display: block;
	}

	.asideBlockCD #leftMenuContent
	{
		display: block;
		position: fixed;
		top: 0;
		left: -100%;
		bottom: 0;
		width: 0;
		z-index: 1000;
	}

	.asideBlockCD .parameterListBlock
	{
		position: fixed !important;
		border: 1px solid var(--color_2);
		background-color: var(--color_white);
		top: 0;
		left: -100%;
		padding: 0 10px 20px 10px;
		height: 100%;
		width: 100%;
		opacity: 0;
		overflow: auto;
		z-index: 1000;
		box-shadow: 2px 2px 5px rgba(63,63,63, 0.5);
		transition: all 0.7s ease 0s;
	}
	.asideBlockCD .parameterListBlock.open
	{
		left: 0;
		opacity: 1;
	}
	.asideBlockCD .parameterListBlock.open .closeButton
	{
		display: -ms-flex;
		display: flex;
		justify-content: flex-end;
	}
}

/***********************************************************************/
/***********************************************************************/

.bgNote + .bgNote
{
	padding-top: 0;
}
.bgLight + .bgLight
{
	padding-top: 0;
}
.bgGray + .bgGray
{
	padding-top: 0;
}
.bgDark + .bgDark
{
	padding-top: 0;
}
.bgColorScheme + .bgColorScheme
{
	padding-top: 0;
}
.bgRed + .bgRed
{
	padding-top: 0;
}
.bgGreen + .bgGreen
{
	padding-top: 0;
}

/***********************************************************************/

.indexTopBanner
{
}
.indexTopBanner .initBanner
{
	position: relative;
	margin-bottom: 0;
	width: 100%;
	max-height: 685px;
	overflow: hidden;
}
.indexTopBanner.tall .initBanner
{
	max-height: 685px;
}
.indexTopBanner.medium .initBanner
{
	max-height: 540px;
}
.indexTopBanner.low .initBanner
{
	max-height: 685px;
}
.indexTopBanner .initBanner .item
{
	display: none;
	width: 100%;
	height: 100%;
}
.indexTopBanner .initBanner .item:first-child,
.indexTopBanner .initBanner.slick-slider .item
{
	display: block;
}
.indexTopBanner .initBanner .item a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 0;
	padding-bottom: calc(685 / 1920 * 100%); /*1920 X 685*/
}
.indexTopBanner.tall .initBanner .item a
{
	padding-bottom: calc((685 / 1920) * 100%); /*1920 X 685*/
}
.indexTopBanner.medium .initBanner .item a
{
	padding-bottom: calc((540 / 1920) * 100%); /*1920 X 540*/
}
.indexTopBanner.low .initBanner .item a
{
	padding-bottom: calc((420 / 1920) * 100%); /*1920 X 420*/
}

.indexTopBanner .initBanner .item a picture
{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.indexTopBanner .initBanner .item a picture img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1520px)
{
	.indexTopBanner .initBanner .item a
	{
		padding-bottom: calc((685 / 1520) * 100%); /*1520 X 685*/
	}
	.indexTopBanner.tall .initBanner .item a
	{
		padding-bottom: calc((685 / 1520) * 100%); /*1520 X 685*/
	}
	.indexTopBanner.medium .initBanner .item a
	{
		padding-bottom: calc((540 / 1520) * 100%); /*1520 X 540*/
	}
	.indexTopBanner.low .initBanner .item a
	{
		padding-bottom: calc((420 / 1520) * 100%); /*1520 X 420*/
	}
}

/*@media (max-width: 480px)*/
/*{*/
/*	.indexTopBanner .initBanner .item a,*/
/*	.indexTopBanner.tall .initBanner .item a,*/
/*	.indexTopBanner.medium .initBanner .item a,*/
/*	.indexTopBanner.low .initBanner .item a*/
/*	{*/
/*		padding-bottom: 100%;*/
/*	}*/
/*}*/

/***********************************************************************/
/***********************************************************************/

/***** tabsBlock *****/

.tabsBlock
{
}

.tabsBlock .tabs
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.tabsBlock .tabs li
{
	display: block;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: unset;
	border-bottom: 1px dashed transparent;
	margin: 0 10px 10px 10px;
	padding-bottom: 3px;
	line-height: 2.4rem;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_2);
	cursor: pointer;
}
.tabsBlock.bgColorScheme .tabs li,
.tabsBlock.bgDark .tabs li
{
	color: var(--color_white);
}
.tabsBlock .tabs li:hover,
.tabsBlock .tabs li.active
{
	border-color: var(--color_1);
	color: var(--color_1);
}
.tabsBlock.bgColorScheme .tabs li:hover,
.tabsBlock.bgColorScheme .tabs li.active,
.tabsBlock.bgDark .tabs li:hover,
.tabsBlock.bgDark .tabs li.active
{
	border-color: var(--color_white);
	color: var(--color_white);
	opacity: 0.7;
}
.tabsBlock .tabs li a
{
	line-height: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-align: inherit;
	text-transform: inherit;
	color: inherit;
}

.tabsBlock .tabsContentBlock
{
	position: relative;
	margin-top: 40px;
}
.tabsBlock .tabsContentBlock .tabContent
{
	position: absolute;
	width: 100%;
	opacity: 0;
	z-index: -2;
}
.tabsBlock .tabsContentBlock .tabContent.active
{
	position: static;
	display: block;
	opacity: 1;
}
.tabsBlock .tabsContentBlock .slick-list
{
}

@media (max-width: 1520px)
{
	.tabsBlock .tabsContentBlock
	{
		margin-top: calc(15px + (40 - 15) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.moreItem .innerWrapper
{
}
.moreItem .innerWrapper > a
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}
.moreItem .innerWrapper a .ico
{
	display: block;
}
.moreItem .innerWrapper a .ico svg
{
	width: 37px;
	height: 30px;
}
.moreItem .innerWrapper a .ico i
{
	font-size: 3rem;
}
.moreItem .innerWrapper a .showMore
{
	margin-top: 5px;
	line-height: 1.9rem;
	font-size: 1.6rem;
	color: var(--color_1);
}
.moreItem .innerWrapper a .showing
{
	margin-top: 5px;
	line-height: 1.6rem;
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--color_2);
}

@media (max-width: 1520px)
{
	.moreItem .innerWrapper a .ico i
	{
		font-size: calc(20px + (30 - 20) * var(--width-coefficient));
	}
	.moreItem .innerWrapper a .showMore
	{
		line-height: calc(17px + (19 - 17) * var(--width-coefficient));
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}
	.moreItem .innerWrapper a .showing
	{
		line-height: calc(13px + (16 - 13) * var(--width-coefficient));
		font-size: calc(11px + (13 - 11) * var(--width-coefficient));
	}
}
@media (max-width: 767px)
{
	.moreItem .innerWrapper a .ico svg
	{
		width: 27px;
		height: 20px;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_offerSliderBlock_ZeJrAwu4
{
}

/***********************************************************************/
/***********************************************************************/

.el_informationBlock_ZeJrAwu4
{
}
.el_informationBlock_ZeJrAwu4 .informationList
{
}

/******************************/

.el_informationBlock_ZeJrAwu4 .informationList .informationTexBlock
{
	margin-bottom: 30px;
}
/***/
.el_informationBlock_ZeJrAwu4 .informationList.inRow1 .informationTexBlock
{
}
/***/
.el_informationBlock_ZeJrAwu4 .informationList.inRow2 .informationTexBlock
{
	-ms-flex: 0 0 calc(100% / 2);
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
/***/
.el_informationBlock_ZeJrAwu4 .informationList.inRow3 .informationTexBlock
{
	-ms-flex: 0 0 calc(100% / 4);
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.el_informationBlock_ZeJrAwu4 .informationList.inRow3 .informationTexBlock:nth-child(3)
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
/***/
.el_informationBlock_ZeJrAwu4 .informationList.inRow4 .informationTexBlock
{
	-ms-flex: 0 0 calc(100% / 4);
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
/***/
.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock
{
	-ms-flex: 0 0 calc(100% / 4);
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
/***/
.el_informationBlock_ZeJrAwu4 .informationList.inRow6 .informationTexBlock
{
	-ms-flex: 0 0 calc(100% / 4);
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
/***/
.el_informationBlock_ZeJrAwu4 .informationList .informationTexBlock.type2 .row
{
	height: 100%;
}

.el_informationBlock_ZeJrAwu4 .informationList .informationTexBlock .el_informationListItem2_ZeJrAwu4
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	min-height: calc(50% - 15px);
}
.el_informationBlock_ZeJrAwu4 .informationList .informationTexBlock .el_informationListItem2_ZeJrAwu4:first-child
{
	margin-bottom: 30px;
}

/**********/

@media (max-width: 1520px)
{
	.el_informationBlock_ZeJrAwu4 .row
	{
		margin-left: calc((5px + (15 - 5) * var(--width-coefficient)) * -1);
		margin-right: calc((5px + (15 - 5) * var(--width-coefficient)) * -1);
	}
	.el_informationBlock_ZeJrAwu4 .row .col
	{
		padding-left: calc(5px + (15 - 5) * var(--width-coefficient));
		padding-right: calc(5px + (15 - 5) * var(--width-coefficient));
	}

	.el_informationBlock_ZeJrAwu4 .informationList .informationTexBlock
	{
		margin-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationBlock_ZeJrAwu4 .informationList .informationTexBlock .el_informationListItem2_ZeJrAwu4
	{
		min-height: calc(50% - calc(5px + (15 - 5) * var(--width-coefficient)));
	}
	.el_informationBlock_ZeJrAwu4 .informationList .informationTexBlock .el_informationListItem2_ZeJrAwu4:first-child
	{
		margin-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}

@media (max-width: 1200px)
{
	.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock,
	.el_informationBlock_ZeJrAwu4 .informationList.inRow6 .informationTexBlock
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock:nth-child(4),
	.el_informationBlock_ZeJrAwu4 .informationList.inRow6 .informationTexBlock:nth-child(4)
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock:nth-child(4) .el_informationListItem2_ZeJrAwu4,
	.el_informationBlock_ZeJrAwu4 .informationList.inRow6 .informationTexBlock:nth-child(4) .el_informationListItem2_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
		margin-bottom: 0;
		min-height: 100%;
	}
}

@media (max-width: 1200px) and (min-width: 992px)
{
	.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock:nth-child(4) .el_informationListItem_ZeJrAwu4 .innerWrapper
	{
		flex-direction: row;
	}
	.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock:nth-child(4) .el_informationListItem_ZeJrAwu4 .imageBlock
	{
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
}

@media (max-width: 991px)
{
	.el_informationBlock_ZeJrAwu4 .informationList.inRow3 .informationTexBlock
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
	.el_informationBlock_ZeJrAwu4 .informationList.inRow3 .informationTexBlock:nth-child(3)
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.el_informationBlock_ZeJrAwu4 .informationList.inRow4 .informationTexBlock
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}

	.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock,
	.el_informationBlock_ZeJrAwu4 .informationList.inRow6 .informationTexBlock
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
	.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock:nth-child(4),
	.el_informationBlock_ZeJrAwu4 .informationList.inRow6 .informationTexBlock:nth-child(4)
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}

	.el_informationBlock_ZeJrAwu4 .informationList.inRow5 .informationTexBlock:nth-child(4) .el_informationListItem2_ZeJrAwu4,
	.el_informationBlock_ZeJrAwu4 .informationList.inRow6 .informationTexBlock:nth-child(4) .el_informationListItem2_ZeJrAwu4
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
		min-height: calc(50% - calc(5px + (15 - 5) * var(--width-coefficient)));
	}
}

/***************/

.el_informationListItem_ZeJrAwu4
{
	height: 100%;
}
.el_informationListItem_ZeJrAwu4 .innerWrapper
{
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--color_11);
	min-height: 100%;
}
/**/
.el_informationListItem_ZeJrAwu4 .infoBlock
{
	padding: 30px 30px 25px 30px;
}
.el_informationListItem_ZeJrAwu4 .infoBlock .title
{
	max-height: 75px;
	overflow: hidden;
}
.el_informationListItem_ZeJrAwu4 .infoBlock .title a
{
	display: inline-block;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_informationListItem_ZeJrAwu4 .infoBlock .title a:hover
{
	color: var(--color_colorScheme);
}
.el_informationListItem_ZeJrAwu4 .infoBlock .description
{
	margin-top: 15px;
}
.el_informationListItem_ZeJrAwu4 .infoBlock .description,
.el_informationListItem_ZeJrAwu4 .infoBlock .description *
{
	line-height: 2rem;
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--color_1);
}
/**/
.el_informationListItem_ZeJrAwu4 .btnLine
{
	margin-top: 30px;
}
.el_informationListItem_ZeJrAwu4 .btnLine .btn
{
	min-width: 130px;
}
/**/
.el_informationListItem_ZeJrAwu4 .imageBlock
{
}
.el_informationListItem_ZeJrAwu4 .imageBlock .img_wrap
{
	padding-bottom: 57.47126436781609%;
}
.el_informationListItem_ZeJrAwu4 .imageBlock .img_wrap .el,
.el_informationListItem_ZeJrAwu4 .imageBlock .img_wrap .el picture
{
	align-items: flex-end;
}

/***************/

.el_informationListItem2_ZeJrAwu4
{
}
.el_informationListItem2_ZeJrAwu4 .innerWrapper
{
	position: relative;
	background-color: var(--color_12);
	padding: 30px;
	height: 100%;
}
.el_informationListItem2_ZeJrAwu4:nth-child(2n) .innerWrapper
{
	background-color: var(--color_13);
}
/**/
.el_informationListItem2_ZeJrAwu4 .infoBlock
{
	position: relative;
	z-index: 3;
}
.el_informationListItem2_ZeJrAwu4 .infoBlock .title
{
	max-height: 75px;
	overflow: hidden;
}
.el_informationListItem2_ZeJrAwu4 .infoBlock .title a
{
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_informationListItem2_ZeJrAwu4 .infoBlock .title a:hover
{
	color: var(--color_colorScheme);
}
/**/
.el_informationListItem2_ZeJrAwu4 .infoBlock .btnLine
{
	margin-top: 30px;
}
.el_informationListItem2_ZeJrAwu4 .infoBlock .btnLine .btn
{
	min-width: 130px;
}
/**/
.el_informationListItem2_ZeJrAwu4 .imageBlock
{
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	width: 47.5%;
	height: 100%;
	z-index: 2;
}
.el_informationListItem2_ZeJrAwu4 .imageBlock .img_wrap
{
	padding-bottom: 0;
	width: 100%;
	height: 100%;
}
.el_informationListItem2_ZeJrAwu4 .imageBlock .img_wrap .el,
.el_informationListItem2_ZeJrAwu4 .imageBlock .img_wrap .el picture
{
	align-items: flex-end;
	justify-content: flex-end;
}
.el_informationListItem2_ZeJrAwu4 .imageBlock .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/***************/

.el_informationListItem3_ZeJrAwu4
{
	height: 100%;
}
.el_informationListItem3_ZeJrAwu4 .innerWrapper
{
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	background-color: var(--color_11);
	min-height: 100%;
}
/**/
.el_informationListItem3_ZeJrAwu4 .infoBlock
{
	padding: 30px 30px 30px 30px;
}
.el_informationListItem3_ZeJrAwu4 .infoBlock .title
{
	max-height: 75px;
	overflow: hidden;
}
.el_informationListItem3_ZeJrAwu4 .infoBlock .title a
{
	display: inline-block;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_informationListItem3_ZeJrAwu4 .infoBlock .title a:hover
{
	color: var(--color_colorScheme);
}
.el_informationListItem3_ZeJrAwu4 .infoBlock .description
{
	margin-top: 15px;
}
.el_informationListItem3_ZeJrAwu4 .infoBlock .description,
.el_informationListItem3_ZeJrAwu4 .infoBlock .description *
{
	line-height: 2rem;
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--color_1);
}
/**/
.el_informationListItem3_ZeJrAwu4 .btnLine
{
	margin-top: 30px;
}
.el_informationListItem3_ZeJrAwu4 .btnLine .btn
{
	min-width: 130px;
}
/**/
.el_informationListItem3_ZeJrAwu4 .imageBlock
{
	-ms-flex: 0 0 33.33333%;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}
.el_informationListItem3_ZeJrAwu4 .imageBlock .img_wrap
{
	padding-bottom: 0;
	width: 100%;
	height: 100%;
}
.el_informationListItem3_ZeJrAwu4 .imageBlock .img_wrap .el
{
	align-items: flex-end;
}

/**********/

@media (max-width: 1520px)
{
	.el_informationListItem_ZeJrAwu4 .infoBlock
	{
		padding-top: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-bottom: calc(10px + (25 - 10) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem_ZeJrAwu4 .infoBlock .title
	{
		max-height: calc(63px + (75 - 63) * var(--width-coefficient));
	}
	.el_informationListItem_ZeJrAwu4 .infoBlock .title a
	{
		line-height: calc(20px + (24 - 20) * var(--width-coefficient));
		font-size: calc(15px + (18 - 15) * var(--width-coefficient));
	}
	.el_informationListItem_ZeJrAwu4 .btnLine
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem_ZeJrAwu4 .btnLine .btn
	{
		min-width: calc(110px + (130 - 110) * var(--width-coefficient));
	}

	/***/

	.el_informationListItem2_ZeJrAwu4 .innerWrapper
	{
		padding: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem2_ZeJrAwu4 .infoBlock .title
	{
		max-height: calc(63px + (75 - 63) * var(--width-coefficient));
	}
	.el_informationListItem2_ZeJrAwu4 .infoBlock .title a
	{
		line-height: calc(20px + (24 - 20) * var(--width-coefficient));
		font-size: calc(15px + (18 - 15) * var(--width-coefficient));
	}
	.el_informationListItem2_ZeJrAwu4 .infoBlock .btnLine .btn
	{
		min-width: calc(110px + (130 - 110) * var(--width-coefficient));
	}

	/***/

	.el_informationListItem3_ZeJrAwu4 .infoBlock
	{
		padding-top: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-bottom: calc(10px + (25 - 10) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem3_ZeJrAwu4 .infoBlock .title
	{
		max-height: calc(63px + (75 - 63) * var(--width-coefficient));
	}
	.el_informationListItem3_ZeJrAwu4 .infoBlock .title a
	{
		line-height: calc(20px + (24 - 20) * var(--width-coefficient));
		font-size: calc(15px + (18 - 15) * var(--width-coefficient));
	}
	.el_informationListItem3_ZeJrAwu4 .btnLine
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem3_ZeJrAwu4 .btnLine .btn
	{
		min-width: calc(110px + (130 - 110) * var(--width-coefficient));
	}
}

@media (max-width: 767px)
{
	.el_informationListItem_ZeJrAwu4 .infoBlock .description
	{
		display: none;
	}

	/*****/

	.el_informationListItem3_ZeJrAwu4 .innerWrapper
	{
		flex-direction: column;
	}
	.el_informationListItem3_ZeJrAwu4 .imageBlock
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_informationListItem3_ZeJrAwu4 .imageBlock .img_wrap
	{
		padding-bottom: 57.47126436781609%;
		height: auto;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_informationOneBlock_ZeJrAwu4
{
}
.el_informationOneBlock_ZeJrAwu4 .row
{
}
.el_informationOneBlock_ZeJrAwu4 .infoBlock
{
	padding-right: 50px;
}
.el_informationOneBlock_ZeJrAwu4 .infoBlock .description
{
	max-width: 600px;
}
.el_informationOneBlock_ZeJrAwu4 .infoBlock .btnLine
{
	justify-content: flex-end;
	margin-top: 30px;
}
.el_informationOneBlock_ZeJrAwu4 .infoBlock .btnLine .btn
{
	min-width: 280px;
}
.el_informationOneBlock_ZeJrAwu4.bgColorScheme .infoBlock .btnLine .btn
{
	border: 1px solid var(--color_11_25);
}
.el_informationOneBlock_ZeJrAwu4.bgColorScheme .infoBlock .btnLine .btn:hover
{
	border: 1px solid var(--color_white);
}
.el_informationOneBlock_ZeJrAwu4.bgColorScheme .infoBlock .btnLine .btn:hover::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: inherit;
	background-color: var(--color_black_10);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
/***/
.el_informationOneBlock_ZeJrAwu4 .imageCol
{
}
.el_informationOneBlock_ZeJrAwu4 .imageCol img
{
	max-width: 100%;
	max-height: 100%;
}

@media (max-width: 1520px)
{
	.el_informationOneBlock_ZeJrAwu4 .infoBlock
	{
		padding-right: calc(20px + (50 - 20) * var(--width-coefficient));
	}
	.el_informationOneBlock_ZeJrAwu4 .infoBlock .btnLine
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationOneBlock_ZeJrAwu4 .infoBlock .btnLine
	{
		margin-top: calc(10px + (40 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_informationOneBlock_ZeJrAwu4 .infoBlock
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: calc(10px + (20 - 10) * var(--width-coefficient));
		margin-bottom: 40px;
	}
	.el_informationOneBlock_ZeJrAwu4 .infoBlock .btnLine
	{
		margin-top: calc(20px + (30 - 20) * var(--width-coefficient));
	}
	.el_informationOneBlock_ZeJrAwu4 .infoBlock .btnLine .btn
	{
		min-width: calc(180px + (280 - 180) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.el_informationFullBlock_ZeJrAwu4
{
	display: -ms-grid;
	display: grid;
	align-items: flex-end;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 320px;
}
.el_informationFullBlock_ZeJrAwu4 .innerWrapper
{
	/*padding: 150px 0;*/
	width: 100%;
}
.el_informationFullBlock_ZeJrAwu4 .innerWrapper .infoBlock
{
	margin-top: auto;
	max-width: 1050px;
}
.el_informationFullBlock_ZeJrAwu4 .innerWrapper .description
{
	max-width: 600px;
}
.el_informationFullBlock_ZeJrAwu4 .innerWrapper .btnLine
{
	margin-top: 30px;
}
.el_informationFullBlock_ZeJrAwu4 .innerWrapper .btnLine .btn
{
	min-width: 280px;
}

@media (max-width: 1520px)
{
	.el_informationFullBlock_ZeJrAwu4
	{
		/*min-height: calc(320px + (700 - 320) * var(--width-coefficient));*/
	}
	.el_informationFullBlock_ZeJrAwu4 .innerWrapper .btnLine
	{
		margin-top: calc(20px + (30 - 20) * var(--width-coefficient));
	}
	.el_informationFullBlock_ZeJrAwu4 .innerWrapper .btnLine .btn
	{
		min-width: calc(180px + (280 - 180) * var(--width-coefficient));
	}

}

/***********************************************************************/
/***********************************************************************/

.el_informationBlock_2_ZeJrAwu4
{
}
.el_informationBlock_2_ZeJrAwu4 .informationList
{
	display: -ms-grid;
	display: grid;
	gap: 30px;
}

/**********/

@media (max-width: 1520px)
{
	.el_informationBlock_2_ZeJrAwu4 .informationList
	{
		gap: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}

@media (min-width: 1201px)
{
	/***** 6 *****/

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

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i1
	{
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i2
	{
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 2;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i4
	{
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i5
	{
		grid-column-start: 4;
		grid-column-end: 5;
		grid-row-start: 1;
		grid-row-end: 2;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i6
	{
		grid-column-start: 4;
		grid-column-end: 5;
		grid-row-start: 2;
		grid-row-end: 3;
	}

	/***** 5 *****/

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

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i1
	{
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i2
	{
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 2;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i4
	{
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i5
	{
		grid-column-start: 4;
		grid-column-end: 5;
		grid-row-start: 1;
		grid-row-end: 3;
	}

	/***** 4 *****/

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

	/***** 3 *****/

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

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow3 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 3;
		grid-column-end: 5;
	}

	/***** 2 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow2
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1200px) and (min-width: 992px)
{
	/***** 6 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6
	{
		grid-template-columns: repeat(6, 1fr);
	}

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i1
	{
		grid-column-start: 1;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i2
	{
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row-start: 1;
		grid-row-end: 2;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row-start: 2;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i4
	{
		grid-column-start: 5;
		grid-column-end: 7;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i5
	{
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row-start: 3;
		grid-row-end: 4;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i6
	{
		grid-column-start: 4;
		grid-column-end: 7;
		grid-row-start: 3;
		grid-row-end: 4;
	}

	/***** 5 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5
	{
		grid-template-columns: repeat(6, 1fr);
	}

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i1
	{
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i2
	{
		grid-column-start: 3;
		grid-column-end: 5;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 5;
		grid-column-end: 7;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i4
	{
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row-start: 2;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i5
	{
		grid-column-start: 4;
		grid-column-end: 7;
		grid-row-start: 2;
		grid-row-end: 3;
	}

	/***** 4 *****/

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

	/***** 3 *****/

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

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow3 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 3;
		grid-column-end: 5;
	}

	/***** 2 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow2
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 991px)
{
	/***** 6 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i1
	{
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i2
	{
		grid-column-start: 2;
		grid-column-end: 4;
		grid-row-start: 1;
		grid-row-end: 2;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 2;
		grid-column-end: 4;
		grid-row-start: 2;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i4
	{
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 3;
		grid-row-end: 5;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i5
	{
		grid-column-start: 2;
		grid-column-end: 4;
		grid-row-start: 3;
		grid-row-end: 4;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow6 .el_informationListItem_2_ZeJrAwu4.i6
	{
		grid-column-start: 2;
		grid-column-end: 4;
		grid-row-start: 4;
		grid-row-end: 5;
	}

	/***** 5 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i1
	{
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 1;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i2
	{
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 1;
		grid-row-end: 2;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 3;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i4
	{
		grid-column-start: 1;
		grid-column-end: 2;
		grid-row-start: 3;
		grid-row-end: 4;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_2_ZeJrAwu4.i5
	{
		grid-column-start: 2;
		grid-column-end: 3;
		grid-row-start: 3;
		grid-row-end: 4;
	}

	/***** 4 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow4
	{
		grid-template-columns: repeat(2, 1fr);
	}

	/***** 3 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow3
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow3 .el_informationListItem_2_ZeJrAwu4.i3
	{
		grid-column-start: 1;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 3;
	}

	/***** 2 *****/

	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow2
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

/***************/

.el_informationListItem_2_ZeJrAwu4
{
	height: 100%;
}
.el_informationListItem_2_ZeJrAwu4 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: flex-end;
	background-color: var(--color_11);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 200px;
	height: 100%;
}
.el_informationListItem_2_ZeJrAwu4:nth-child(2n) .innerWrapper
{
	background-color: var(--color_12);
}
.el_informationListItem_2_ZeJrAwu4:nth-child(3n) .innerWrapper
{
	background-color: var(--color_13);
}
.inRow4 .el_informationListItem_2_ZeJrAwu4 .innerWrapper,
.inRow3 .el_informationListItem_2_ZeJrAwu4 .innerWrapper
{
	min-height: 430px;
}
.el_informationListItem_2_ZeJrAwu4 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_black_50);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.el_informationListItem_2_ZeJrAwu4 .innerWrapper:hover::before
{
	background-color: var(--color_black_10);
}
/**/
.el_informationListItem_2_ZeJrAwu4 .infoBlock
{
	position: relative;
	padding: 30px;
	width: 100%;
	z-index: 5;
}
.el_informationListItem_2_ZeJrAwu4 .infoBlock .title
{
	max-width: 530px;
	overflow: hidden;
}
.el_informationListItem_2_ZeJrAwu4 .infoBlock .title a
{
	display: inline-block;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_white);
}
.el_informationListItem_2_ZeJrAwu4 .infoBlock .title a:hover
{
	color: var(--color_colorScheme);
}
.el_informationListItem_2_ZeJrAwu4 .infoBlock .description
{
	margin-top: 15px;
	max-width: 530px;
}
.el_informationListItem_2_ZeJrAwu4 .infoBlock .description,
.el_informationListItem_2_ZeJrAwu4 .infoBlock .description *
{
	line-height: 2rem;
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--color_white);
}
/**/
.el_informationListItem_2_ZeJrAwu4 .btnLine
{
	margin-top: 30px;
}
.el_informationListItem_2_ZeJrAwu4 .btnLine .btn
{
	min-width: 130px;
}

/**********/

@media (max-width: 1520px)
{
	.el_informationListItem_2_ZeJrAwu4 .innerWrapper
	{
		min-height: calc(10px + (200 - 10) * var(--width-coefficient));
	}
	.inRow4 .el_informationListItem_2_ZeJrAwu4 .innerWrapper,
	.inRow3 .el_informationListItem_2_ZeJrAwu4 .innerWrapper
	{
		min-height: calc(10px + (430 - 10) * var(--width-coefficient));
	}

	.el_informationListItem_2_ZeJrAwu4 .infoBlock
	{
		padding: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem_2_ZeJrAwu4 .infoBlock .title a
	{
		line-height: calc(20px + (24 - 20) * var(--width-coefficient));
		font-size: calc(15px + (18 - 15) * var(--width-coefficient));
	}
	.el_informationListItem_2_ZeJrAwu4 .btnLine
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem_2_ZeJrAwu4 .btnLine .btn
	{
		min-width: calc(110px + (130 - 110) * var(--width-coefficient));
	}
}

@media (max-width: 767px)
{
	.el_informationListItem_2_ZeJrAwu4 .infoBlock .description
	{
		display: none;
	}
	.el_informationBlock_2_ZeJrAwu4 .informationList.inRow1 .el_informationListItem_2_ZeJrAwu4 .infoBlock .description
	{
		display: block;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_informationBlock_3_ZeJrAwu4
{
}
.el_informationBlock_3_ZeJrAwu4 .informationList
{
	display: -ms-grid;
	display: grid;
	gap: 30px;
}

/**********/

/***** 6 *****/

.el_informationBlock_3_ZeJrAwu4 .informationList.inRow6
{
	grid-template-columns: repeat(3, 1fr);
}

/***** 4 *****/

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

/***** 2 *****/

.el_informationBlock_3_ZeJrAwu4 .informationList.inRow2
{
	grid-template-columns: repeat(2, 1fr);
}

/**********/

@media (max-width: 1520px)
{
	.el_informationBlock_3_ZeJrAwu4 .informationList
	{
		gap: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}

@media (min-width: 992px)
{
	/***** 5 *****/

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5
	{
		grid-template-columns: repeat(6, 1fr);
	}

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i1
	{
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i2
	{
		grid-column-start: 3;
		grid-column-end: 5;
	}
	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i3
	{
		grid-column-start: 5;
		grid-column-end: 7;
	}
	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i4
	{
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row-start: 2;
		grid-row-end: 3;
	}
	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i5
	{
		grid-column-start: 4;
		grid-column-end: 7;
		grid-row-start: 2;
		grid-row-end: 3;
	}

	/***** 3 *****/

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

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow3 .el_informationListItem_3_ZeJrAwu4.i3
	{
		grid-column-start: 3;
		grid-column-end: 5;
	}
}
@media (max-width: 991px)
{
	/***** 6 *****/

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow6
	{
		grid-template-columns: repeat(2, 1fr);
	}

	/***** 5 *****/

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5
	{
		grid-template-columns: repeat(2, 1fr);
	}
	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i5
	{
		grid-column-start: 1;
		grid-column-end: 3;
	}

	/***** 4 *****/

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow4
	{
		grid-template-columns: repeat(2, 1fr);
	}

	/***** 3 *****/

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow3
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow3 .el_informationListItem_3_ZeJrAwu4.i3
	{
		grid-column-start: 1;
		grid-column-end: 3;
	}

}

/***************/

.el_informationListItem_3_ZeJrAwu4
{
	height: 100%;
}
.el_informationListItem_3_ZeJrAwu4 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: flex-end;
	background-color: var(--color_11);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 220px;
	height: 100%;
}
.el_informationListItem_3_ZeJrAwu4:nth-child(2n) .innerWrapper
{
	background-color: var(--color_12);
}
.el_informationListItem_3_ZeJrAwu4:nth-child(3n) .innerWrapper
{
	background-color: var(--color_13);
}
.el_informationListItem_3_ZeJrAwu4 .innerWrapper::before
{
	display: block;
	content: "";
	width: 0;
	padding-bottom: 100%;
}

.el_informationListItem_3_ZeJrAwu4 .innerWrapper::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_black_20);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
/**/
.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i4 .innerWrapper::before,
.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i5 .innerWrapper::before
{
	padding-bottom: 65%;
}
/**/
.el_informationBlock_3_ZeJrAwu4 .informationList.inRow3 .el_informationListItem_3_ZeJrAwu4 .innerWrapper::before
{
	padding-bottom: 48%;
}
/**/
.el_informationBlock_3_ZeJrAwu4 .informationList.inRow2 .el_informationListItem_3_ZeJrAwu4 .innerWrapper::before
{
	padding-bottom: 45%;
}
/**/
.el_informationBlock_3_ZeJrAwu4 .informationList.inRow1 .el_informationListItem_3_ZeJrAwu4 .innerWrapper::before
{
	padding-bottom: 30%;
}
/**/
.el_informationListItem_3_ZeJrAwu4 .infoBlock
{
	position: relative;
	background-color: var(--color_11_70);
	padding: 30px;
	width: 100%;
	z-index: 5;
}
.el_informationListItem_3_ZeJrAwu4:nth-child(2n) .infoBlock
{
	background-color: var(--color_12_70);
}
.el_informationListItem_3_ZeJrAwu4:nth-child(3n) .infoBlock
{
	background-color: var(--color_13_70);
}
.el_informationListItem_3_ZeJrAwu4 .infoBlock .title
{
	max-width: 450px;
	overflow: hidden;
}
.el_informationListItem_3_ZeJrAwu4 .infoBlock .title a
{
	display: inline-block;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_informationListItem_3_ZeJrAwu4 .infoBlock .title a:hover
{
	color: var(--color_colorScheme);
}
.el_informationListItem_3_ZeJrAwu4 .infoBlock .description
{
	margin-top: 15px;
	max-width: 450px;
}
.el_informationListItem_3_ZeJrAwu4 .infoBlock .description,
.el_informationListItem_3_ZeJrAwu4 .infoBlock .description *
{
	line-height: 2rem;
	font-size: 1.4rem;
	font-weight: 300;
}
/**/
.el_informationListItem_3_ZeJrAwu4 .btnLine
{
	margin-top: 30px;
}
.el_informationListItem_3_ZeJrAwu4 .btnLine .btn
{
	min-width: 130px;
}

/**********/

@media (max-width: 1520px)
{
	.el_informationListItem_3_ZeJrAwu4 .infoBlock
	{
		padding: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem_3_ZeJrAwu4 .infoBlock .title a
	{
		line-height: calc(20px + (24 - 20) * var(--width-coefficient));
		font-size: calc(15px + (18 - 15) * var(--width-coefficient));
	}
	.el_informationListItem_3_ZeJrAwu4 .btnLine
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_informationListItem_3_ZeJrAwu4 .btnLine .btn
	{
		min-width: calc(110px + (130 - 110) * var(--width-coefficient));
	}
}

@media (max-width: 991px)
{
	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i4 .innerWrapper::before
	{
		padding-bottom: 100%;
	}
	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow5 .el_informationListItem_3_ZeJrAwu4.i5 .innerWrapper::before
	{
		padding-bottom: 48%;
	}

	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow3 .el_informationListItem_3_ZeJrAwu4.i3 .innerWrapper::before
	{
		padding-bottom: 30%;
	}
}

@media (max-width: 767px)
{
	.el_informationListItem_3_ZeJrAwu4 .infoBlock .description
	{
		display: none;
	}
	.el_informationBlock_3_ZeJrAwu4 .informationList.inRow1 .el_informationListItem_3_ZeJrAwu4 .infoBlock .description
	{
		display: block;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_articleSliderBlock_ZeJrAwu4
{
}

/***********************************************************************/
/***********************************************************************/

.el_popularManufacturersBlock_ZeJrAwu4
{
}
.el_popularManufacturersBlock_ZeJrAwu4 .btnLine
{
	margin-top: 30px;
	text-align: center;
}

/***********************************************************************/
/***********************************************************************/

.catalogListBlock
{
	border-left: 1px solid var(--color_4);
}

.brandListBlock
{
	border-left: 1px solid var(--color_4);
}

/***********************************************************************/
/***********************************************************************/

.el_subCatalogListBlock_ZeJrAwu4
{
	margin-bottom: 30px;
}

/***********************************************************************/
/***********************************************************************/

.el_catalogListBlock_ZeJrAwu4
{
}
.el_catalogListBlock_ZeJrAwu4 .catalogList
{
}
.el_catalogListBlock_ZeJrAwu4 .catalogList ul
{
	display: -ms-flex;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.el_catalogListBlock_ZeJrAwu4 .catalogList ul li
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	padding: 5px 15px;
	text-align: center;
}
.el_catalogListBlock_ZeJrAwu4 .catalogList ul li a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	width: 270px;
	line-height: 1.2;
	font-size: 1.5rem;
	text-align: left;
	color: var(--color_1);
}
.el_catalogListBlock_ZeJrAwu4 .catalogList ul li a:hover
{
	color: var(--color_colorScheme);
}
.el_catalogListBlock_ZeJrAwu4 .catalogList ul li a .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	width: 24px;
	height: 24px;
}

/***/

@media (max-width: 991px)
{
	.el_catalogListBlock_ZeJrAwu4 .catalogList ul li
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

@media (max-width: 680px)
{
	.el_catalogListBlock_ZeJrAwu4 .catalogList ul li
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow5 .el_catalogListItem_ZeJrAwu4
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}

/**********/

@media (max-width: 991px)
{
	.typeContentBlock1.inRow5 .el_catalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 767px)
{
	.typeContentBlock1.inRow5 .el_catalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
@media (max-width: 520px)
{
	.typeContentBlock1.inRow5 .el_catalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

/***********************************************************************/

.typeContentBlock2.inRow5 .el_catalogListItem_ZeJrAwu4
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}

/**********/

@media (max-width: 1200px)
{
	.typeContentBlock2.inRow5 .el_catalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 991px)
{
	.typeContentBlock2.inRow5 .el_catalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 767px)
{
	.typeContentBlock2.inRow5 .el_catalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
@media (max-width: 520px)
{
	.typeContentBlock2.inRow5 .el_catalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

/***********************************************************************/
/***********************************************************************/

.el_popularСategoriesBlock_ZeJrAwu4
{
}

/***********************************************************************/
/***********************************************************************/

.el_catalogListItem_ZeJrAwu4
{
}
.el_catalogListItem_ZeJrAwu4.moreItem
{
	min-height: 100px;
}
.el_catalogListItem_ZeJrAwu4.hidden
{
	display: none;
}
.el_catalogListItem_ZeJrAwu4 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-right: 1px solid var(--color_4);
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_white);
	min-height: 100%;
}
.el_catalogListItem_ZeJrAwu4 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_4);
	top: -1px;
	left: 0;
	width: 100%;
	height: 1px;
}

/**/
.el_catalogListItem_ZeJrAwu4 .innerWrapper .imageBlock
{
}
.el_catalogListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap
{
	padding-bottom: 53.30739299610895%; /*260 X 140*/
}
.el_catalogListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el
{
	overflow: hidden;
}
.el_catalogListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el img
{
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}
.el_catalogListItem_ZeJrAwu4 .innerWrapper .imageBlock:hover .img_wrap .el img
{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
/**/
.el_catalogListItem_ZeJrAwu4 .innerWrapper .title
{
	margin-top: 10px;
	text-align: center;
}
.el_catalogListItem_ZeJrAwu4 .innerWrapper .title a
{
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--color_1);
}
.el_catalogListItem_ZeJrAwu4 .innerWrapper .title a:hover
{
	color: var(--color_colorScheme);
}

/***/

.el_catalogListItem_ZeJrAwu4 .subCatalogList
{
	display: none !important;
	position: absolute;
	z-index: -100;
}

/**********/

@media (max-width: 1520px)
{
	.el_catalogListItem_ZeJrAwu4 .innerWrapper
	{
		padding: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.el_popularСategoriesBlock_2_ZeJrAwu4
{
}
.el_popularСategoriesBlock_2_ZeJrAwu4 .catalogListBlock
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	border: none;
}

@media (max-width: 1520px)
{
	.el_popularСategoriesBlock_2_ZeJrAwu4 .catalogListBlock
	{
		gap: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_popularСategoriesBlock_2_ZeJrAwu4 .catalogListBlock
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

/***********************************************************************/
/***********************************************************************/

.el_catalogListItem_2_ZeJrAwu4
{
	position: relative;
}
.el_catalogListItem_2_ZeJrAwu4.hidden
{
	display: none;
}
.el_catalogListItem_2_ZeJrAwu4 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: flex-end;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}
.el_catalogListItem_2_ZeJrAwu4 .innerWrapper::before
{
	display: block;
	content: "";
	float: left;
	padding-top: 100%;
}
/**/
.el_catalogListItem_2_ZeJrAwu4 .innerWrapper .infoBlock
{
	display: -ms-flex;
	display: flex;
	content: "";
	background-color: var(--color_black_20);
	padding: 30px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 2;
}
.el_catalogListItem_2_ZeJrAwu4 .innerWrapper .infoBlock .title
{
	display: inline-block;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_white);
}
.el_catalogListItem_2_ZeJrAwu4 .innerWrapper:hover .infoBlock .title
{
	color: var(--color_colorScheme);
}
/***/

.el_catalogListItem_2_ZeJrAwu4 .subCatalogList
{
	display: none !important;
	position: absolute;
	z-index: -100;
}

/***/

.el_catalogListItem_2_ZeJrAwu4.moreItem
{
	grid-column-start: 1;
	grid-column-end: 4;
	text-align: center;
}
.el_catalogListItem_2_ZeJrAwu4 .showAllLink
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	line-height: 1.7rem;
	font-size: 1.4rem;
	color: var(--color_1);
}
.el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover
{
	color: var(--color_colorScheme);
}
.bgColorScheme .el_catalogListItem_2_ZeJrAwu4 .showAllLink,
.bgDark .el_catalogListItem_2_ZeJrAwu4 .showAllLink
{
	color: var(--color_white);
}
.bgColorScheme .el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover,
.bgDark .el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover
{
	color: var(--color_white);
	opacity: 0.7;
}
.el_catalogListItem_2_ZeJrAwu4 .showAllLink svg
{
	margin-right: 5px;
	max-width: 25px;
	max-height: 25px;
	fill: var(--color_2);
}
.bgColorScheme .el_catalogListItem_2_ZeJrAwu4 .showAllLink svg,
.bgDark .el_catalogListItem_2_ZeJrAwu4 .showAllLink svg
{
	margin-right: 5px;
	max-width: 25px;
	max-height: 25px;
	fill: var(--color_2);
}
.el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover svg path
{
	fill: var(--color_colorScheme);
}
.bgColorScheme .el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover svg path,
.bgDark .el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover svg path
{
	fill: var(--color_white_70);
}
.el_catalogListItem_2_ZeJrAwu4 .showAllLink span
{
	display: inline-block;
	border-bottom: 1px dotted var(--color_1);
	padding-bottom: 3px;
}
.bgColorScheme .el_catalogListItem_2_ZeJrAwu4 .showAllLink span,
.bgDark .el_catalogListItem_2_ZeJrAwu4 .showAllLink span
{
	border-bottom: 1px dotted var(--color_white_70);
}
.el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover span
{
	border-bottom: 1px dotted var(--color_colorScheme);
}
.bgColorScheme .el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover span,
.bgDark .el_catalogListItem_2_ZeJrAwu4 .showAllLink:hover span
{
	border-bottom: 1px dotted var(--color_white_70);
}

/**********/

@media (max-width: 1520px)
{
	.el_catalogListItem_2_ZeJrAwu4 .innerWrapper .infoBlock
	{
		padding: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.el_catalogListItem_2_ZeJrAwu4 .innerWrapper .infoBlock .title
	{
		line-height: calc(20px + (24 - 20) * var(--width-coefficient));
		font-size: calc(15px + (18 - 15) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_catalogListItem_2_ZeJrAwu4.moreItem
	{
		grid-column-end: 3;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_popularСategoriesBlock_3_ZeJrAwu4
{
}
.el_popularСategoriesBlock_3_ZeJrAwu4 .catalogListBlock
{
}

.catalogListBlock.inRow4
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	border: none;
}

.catalogListBlock.inRow4 .el_catalogListItem_3_ZeJrAwu4.moreItem
{
	grid-column-start: 1;
	grid-column-end: 5;
	text-align: center;
}


@media (max-width: 1520px)
{
	.catalogListBlock.inRow4
	{
		gap: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.catalogListBlock.inRow4
	{
		grid-template-columns: repeat(3, 1fr);
	}

	.catalogListBlock.inRow4 .el_catalogListItem_3_ZeJrAwu4.moreItem
	{
		grid-column-end: 4;
	}
}
@media (max-width: 767px)
{
	.catalogListBlock.inRow4
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.catalogListBlock.inRow4 .el_catalogListItem_3_ZeJrAwu4.moreItem
	{
		grid-column-end: 3;
	}
}
@media (max-width: 520px)
{
	.catalogListBlock.inRow4
	{
		grid-template-columns: 1fr;
	}

	.catalogListBlock.inRow4 .el_catalogListItem_3_ZeJrAwu4.moreItem
	{
		grid-column-end: 2;
	}
}

/*****/
.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showMore,
.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showing
{
	display: none;
}

@media (min-width: 1201px)
{
	.el_catalogListItem_3_ZeJrAwu4.hidden.h1920,
	.el_catalogListItem_3_ZeJrAwu4.moreItem.hidden.mh1920
	{
		display: none;
	}

	.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showMore.mh1920,
	.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showing.mh1920
	{
		display: block;
	}
}
@media (max-width: 1200px) and (min-width: 768px)
{
	.el_catalogListItem_3_ZeJrAwu4.hidden.h1200,
	.el_catalogListItem_3_ZeJrAwu4.moreItem.hidden.mh1200
	{
		display: none;
	}

	.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showMore.mh1200,
	.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showing.mh1200
	{
		display: block;
	}
}
@media (max-width: 767px) and (min-width: 521px)
{
	.el_catalogListItem_3_ZeJrAwu4.hidden.h767,
	.el_catalogListItem_3_ZeJrAwu4.moreItem.hidden.mh767
	{
		display: none;
	}

	.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showMore.mh767,
	.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showing.mh767
	{
		display: block;
	}
}
@media (max-width: 520px)
{
	.el_catalogListItem_3_ZeJrAwu4.hidden.h520,
	.el_catalogListItem_3_ZeJrAwu4.moreItem.hidden.mh520
	{
		display: none;
	}

	.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showMore.mh520,
	.el_catalogListItem_3_ZeJrAwu4.moreItem .showAllLink .showing.mh520
	{
		display: block;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_catalogListItem_3_ZeJrAwu4
{
	position: relative;
}
.el_catalogListItem_3_ZeJrAwu4.hidden
{
	/*display: none;*/
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper
{
	position: relative;
	padding: 20px;
	border: 1px solid var(--color_4);
	background-color: var(--color_white);
	min-height: 100%;
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .title
{
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .title a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 10px;

	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .title a:hover
{
	color: var(--color_colorScheme);
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .title a .ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	
	-ms-flex: 0 0 25px;
	flex: 0 0 25px;
	max-width: 25px;
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .subCatalogList
{
	margin-top: 5px;
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .subCatalogList li
{
	margin-top: 8px;
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .subCatalogList li.hide
{
	display: none;
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .subCatalogList li a
{
	position: relative;
	display: inline-block;
	padding-left: 10px;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--color_1);
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .subCatalogList li a:hover
{
	color: var(--color_colorScheme);
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .subCatalogList li a::before
{
	position: absolute;
	display: block;
	content: "\f105";
	top: 0;
	left: 0;
	font-family: "FontAwesome";
	color: var(--color_colorScheme);
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .subCatalogList li.seeMore > span
{
	position: relative;
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--color_colorScheme);
	cursor: pointer;
}
.el_catalogListItem_3_ZeJrAwu4 .innerWrapper .subCatalogList li.seeMore > span:hover
{
	color: var(--color_1);
}

/***/

.el_catalogListItem_3_ZeJrAwu4.moreItem
{
	text-align: center;
}
.el_catalogListItem_3_ZeJrAwu4.moreItem.hidden
{
	display: none;
}
.el_catalogListItem_3_ZeJrAwu4 .showAllLink
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	line-height: 1.7rem;
	font-size: 1.4rem;
	color: var(--color_1);
}
.el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover
{
	color: var(--color_colorScheme);
}
.bgColorScheme .el_catalogListItem_3_ZeJrAwu4 .showAllLink,
.bgDark .el_catalogListItem_3_ZeJrAwu4 .showAllLink
{
	color: var(--color_white);
}
.bgColorScheme .el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover,
.bgDark .el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover
{
	color: var(--color_white);
	opacity: 0.7;
}
.el_catalogListItem_3_ZeJrAwu4 .showAllLink svg
{
	margin-right: 5px;
	max-width: 25px;
	max-height: 25px;
	fill: var(--color_2);
}
.bgColorScheme .el_catalogListItem_3_ZeJrAwu4 .showAllLink svg,
.bgDark .el_catalogListItem_3_ZeJrAwu4 .showAllLink svg
{
	margin-right: 5px;
	max-width: 25px;
	max-height: 25px;
	fill: var(--color_2);
}
.el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover svg path
{
	fill: var(--color_colorScheme);
}
.bgColorScheme .el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover svg path,
.bgDark .el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover svg path
{
	fill: var(--color_white_70);
}
.el_catalogListItem_3_ZeJrAwu4 .showAllLink span
{
	border-bottom: 1px dotted var(--color_1);
	padding-bottom: 3px;
}
.bgColorScheme .el_catalogListItem_3_ZeJrAwu4 .showAllLink span,
.bgDark .el_catalogListItem_3_ZeJrAwu4 .showAllLink span
{
	border-bottom: 1px dotted var(--color_white_70);
}
.el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover span
{
	border-bottom: 1px dotted var(--color_colorScheme);
}
.bgColorScheme .el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover span,
.bgDark .el_catalogListItem_3_ZeJrAwu4 .showAllLink:hover span
{
	border-bottom: 1px dotted var(--color_white_70);
}


/***********************************************************************/
/***********************************************************************/

.el_brandsPage_ZeJrAwu4
{
}

.el_brandsPage_ZeJrAwu4 .quickSearchBlock
{
	margin-bottom: 30px;
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}

@media (max-width: 991px)
{
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}

@media (max-width: 767px)
{
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 520px)
{
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

/*****/

.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showMore,
.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showing
{
	display: none;
}

@media (min-width: 992px)
{
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.hidden.h1920,
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem.hidden.mh1920
	{
		display: none;
	}

	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showMore.mh1920,
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showing.mh1920
	{
		display: block;
	}
}
@media (max-width: 991px) and (min-width: 768px)
{
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.hidden.h991,
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem.hidden.mh991
	{
		display: none;
	}

	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showMore.mh991,
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showing.mh991
	{
		display: block;
	}
}
@media (max-width: 767px) and (min-width: 521px)
{
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.hidden.h767,
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem.hidden.mh767
	{
		display: none;
	}

	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showMore.mh767,
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showing.mh767
	{
		display: block;
	}
}
@media (max-width: 520px)
{
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.hidden.h520,
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem.hidden.mh520
	{
		display: none;
	}

	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showMore.mh520,
	.typeContentBlock1.inRow5 .el_brandListItem_ZeJrAwu4.moreItem .innerWrapper a .showing.mh520
	{
		display: block;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_brandListItem_ZeJrAwu4
{
}
.el_brandListItem_ZeJrAwu4.moreItem
{
	min-height: 100px;
}
.el_brandListItem_ZeJrAwu4.moreItem.hidden
{
	display: none;
}
.el_brandListItem_ZeJrAwu4 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-right: 1px solid var(--color_4);
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_white);
	min-height: 100%;
}
.el_brandListItem_ZeJrAwu4 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_4);
	top: -1px;
	left: 0;
	width: 100%;
	height: 1px;
}
/**/
.el_brandListItem_ZeJrAwu4 .innerWrapper .imageBlock
{
}
.el_brandListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap
{
	padding-bottom: 36.10108303249097%; /*277 X 100*/
}
.el_brandListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el
{
}
.el_brandListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el img
{
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}
.el_brandListItem_ZeJrAwu4 .innerWrapper .imageBlock:hover .img_wrap .el img
{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
/**/
.el_brandListItem_ZeJrAwu4 .innerWrapper .title
{
	margin-top: 10px;
	text-align: center;
}
.el_brandListItem_ZeJrAwu4 .innerWrapper .title a
{
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_brandListItem_ZeJrAwu4 .innerWrapper .title a:hover
{
	color: var(--color_colorScheme);
}

/**********/

@media (max-width: 1520px)
{
	.el_brandListItem_ZeJrAwu4 .innerWrapper
	{
		padding: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_brandListItem_ZeJrAwu4 .innerWrapper .title a
	{
		line-height: 1.2;
		font-size: 1.4rem;
	}
}

/***********************************************************************/
/***********************************************************************/

/***** smartFilterListBlock *****/

.smartFilterListBlock
{
}
.smartFilterListBlock .smartFilterList
{
	margin-bottom: 20px;
}
.smartFilterListBlock .smartFilterList li
{
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
}
.smartFilterListBlock .smartFilterList li.hidden
{
	display: none;
}
.smartFilterListBlock .smartFilterList.open li.hidden
{
	display: inline-block;
}
.smartFilterListBlock .smartFilterList li a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid var(--color_4);
	background-color: var(--color_2_10);
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 8px 20px 8px 20px;
	line-height: 1;
	font-size: 1.5rem;
	color: var(--color_colorScheme);
}
.smartFilterListBlock .smartFilterList li a:hover,
.smartFilterListBlock .smartFilterList li a.active
{
	border-color: var(--color_4);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}

/*****/

.smartFilterListBlock .smartFilterList li.showAllLink,
.smartFilterListBlock .smartFilterList.open li.hideLink
{
	display: inline-block;
}
.smartFilterListBlock .smartFilterList.open li.showAllLink,
.smartFilterListBlock .smartFilterList li.hideLink
{
	display: none;
}

/*****/

@media (max-width: 1520px)
{
	.smartFilterListBlock .smartFilterList li a
	{
		padding-top: calc(5px + (8 - 5) * var(--width-coefficient));
		padding-right: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-bottom: calc(5px + (8 - 5) * var(--width-coefficient));
		padding-left: calc(10px + (20 - 10) * var(--width-coefficient));
		font-size: calc(16px + (18 - 16) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.mobileOfferAmount
{
	display: none;
	margin-bottom: 25px;
}

.offerOrderBlockCD
{
	margin-bottom: 30px;
}

/***/

.offerOrderBlockCD .closeButton
{
	display: none;
	height: 50px;
	padding: 10px 0;
}
.offerOrderBlockCD .closeButton .closeOrderButton
{
}

/***/

.offerOrderBlockCD .innerWrapper
{
	border-radius: 4px;
	border: 1px solid var(--color_4);
	padding: 15px 15px;
}
.offerOrderBlockCD .innerWrapper .row
{
	align-items: center;
}
/**/
.offerOrderBlockCD .sortCol
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.offerOrderBlockCD .sortCol .title
{
	margin-right: 15px;
	font-size: 1.5rem;
	color: var(--color_1);
}
.offerOrderBlockCD .sortCol select
{
	width: auto;
	min-width: 180px;
	height: 28px;
	font-size: 1.5rem;
}
/**/
.offerOrderBlockCD .amountCol
{
	-ms-flex: 0 0 200px;
	flex: 0 0 200px;
	max-width: 200px;
	text-align: right;
}
.offerOrderBlockCD .amountCol p
{
	font-size: 1.5rem;
	color: var(--color_1);
}

@media (max-width: 991px)
{
	.mobileOfferAmount
	{
		display: block;
		margin-bottom: 30px;
	}

	.offerOrderBlockCD
	{
		position: fixed;
		border: 1px solid var(--color_2);
		background-color: var(--color_white);
		border-radius: 0;
		top: 0;
		right: -100%;
		padding: 0 10px 20px 10px;
		height: 100%;
		width: 100%;
		opacity: 0;
		overflow: auto;
		z-index: 1000;
		transition: all 0.7s ease 0s;
	}
	.offerOrderBlockCD.open
	{
		right: 0;
		opacity: 1;
	}
	.offerOrderBlockCD.open .closeButton
	{
		display: -ms-flex;
		display: flex;
		justify-content: flex-end;
	}

	.offerOrderBlockCD .innerWrapper .row
	{
		flex-wrap: wrap;
	}
	.offerOrderBlockCD .amountCol
	{
		display: none;
	}

	.offerOrderBlockCD .sortCol
	{
		display: block;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.offerOrderBlockCD .sortCol .title
	{
		display: block;
		margin-right: 0;
		margin-bottom: 15px;
		text-align: left;
	}
	.offerOrderBlockCD .sortCol select
	{
		height: 38px;
		width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_activeFilterBlock_ZeJrAwu4
{
	margin-bottom: 20px;
}
.el_activeFilterBlock_ZeJrAwu4 a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius);
	border: 1px solid var(--color_4);
	background-color: var(--color_2_10);
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 8px 20px 8px 20px;
	line-height: 1;
	font-size: 1.5rem;
	color: var(--color_colorScheme);
}
.el_activeFilterBlock_ZeJrAwu4 a:hover
{
	border-color: var(--color_4);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
.el_activeFilterBlock_ZeJrAwu4 a svg
{
	margin-left: 10px;
	width: 14px;
	height: 14px;
}
.el_activeFilterBlock_ZeJrAwu4 a:hover svg line,
.el_activeFilterBlock_ZeJrAwu4 a:hover svg path
{
	fill: var(--color_white);
	stroke: var(--color_white);
}
.el_activeFilterBlock_ZeJrAwu4 a.resetFilters
{
	border: 1px solid transparent;
}

/*****/

@media (max-width: 1520px)
{
	.el_activeFilterBlock_ZeJrAwu4 a
	{
		padding-top: calc(4px + (8 - 4) * var(--width-coefficient));
		padding-right: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-bottom: calc(5px + (8 - 5) * var(--width-coefficient));
		padding-left: calc(10px + (20 - 10) * var(--width-coefficient));
		font-size: calc(13px + (15 - 13) * var(--width-coefficient));
	}
	.el_activeFilterBlock_ZeJrAwu4 a svg
	{
		width: calc(10px + (15 - 10) * var(--width-coefficient));
		height: calc(10px + (15 - 10) * var(--width-coefficient));

	}
}

@media (max-width: 991px)
{
	.el_activeFilterBlock_ZeJrAwu4
	{
		margin-bottom: 15px;
	}
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow5 .el_offerListItem_ZeJrAwu4
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}

@media (max-width: 1440px)
{
	.typeContentBlock1.inRow5 .el_offerListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}

@media (max-width: 991px)
{
	.typeContentBlock1.inRow5 .el_offerListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 767px)
{
	.typeContentBlock1.inRow5 .el_offerListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock2.inRow4 .el_offerListItem_ZeJrAwu4
{
	-ms-flex: 0 0 calc(100% / 4);
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}

@media (max-width: 1440px)
{
	.typeContentBlock2.inRow4 .el_offerListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 1200px)
{
	.typeContentBlock2.inRow4 .el_offerListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

@media (max-width: 991px)
{
	.typeContentBlock2.inRow4 .el_offerListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 767px)
{
	.typeContentBlock2.inRow4 .el_offerListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}


/************************************************************************************/
/*** wobbler 2 ***/
/*************************************************************************************/

/*---------------------------------------- wobbler -------------------*/

img.wobbler
{
	position: absolute !important;
	display: inline-block;
	z-index: 25;
}

img.wobbler
{
	max-width: 100%;
	max-height: 100%;
}

/*---------------------------------------- wobbler -------------------*/

.wobbler.text
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	border-radius: 0 10px;
	background-color: var(--color_2);
	padding: 0 10px;
	width: auto;
	min-height: 22px;
	font-size: 1rem;
	font-weight: 600;
	/*text-transform: uppercase;*/
	text-align: center;
	color: var(--color_white);
}
/*.wobbler.text.newArrival*/
/*{*/
/*	background-color: var(--color_5);*/
/*	color: var(--color_white);*/
/*}*/
/*.wobbler.text.action*/
/*{*/
/*	background-color: var(--color_8);*/
/*	color: var(--color_white);*/
/*}*/
/*.wobbler.text.superPrice*/
/*{*/
/*	background-color: var(--color_7);*/
/*	color: var(--color_white);*/
/*}*/
/*.wobbler.topSales*/
/*{*/
/*	background-color: var(--color_6);*/
/*	color: var(--color_white);*/
/*}*/
.wobbler.text.discount
{
}
.wobbler.text.discount.hidden
{
	display: none;
}

/*** wobbler 2 ***/

.wobblerBlock
{
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
}
.el_offerPage_ev6fnaSA .wobblerBlock
{
	left: 0;
	pointer-events: none;
}
.wobblerBlock li
{
	position: relative;
	display: table;
	margin-bottom: 5px;
	text-align: left;
	z-index: 15;
}
.wobblerBlock li .wobbler.text
{
	position: static !important;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.wobblerBlock li .wobbler.text img
{
	margin-left: 10px;
	width: 20px;
	height: 20px;
	-ms-flex: 0 0 20px;
	flex: 0 0 20px;
	max-width: 20px;
}

/***********/

/*@media (max-width: 1200px)*/
/*{*/
/*	.wobblerBlock*/
/*	{*/
/*		bottom: calc(30px + (42 - 30) * var(--width-coefficient));*/
/*	}*/

/*	.wobbler.text*/
/*	{*/
/*		padding-top: calc(3px + (5 - 3) * var(--width-coefficient));*/
/*		padding-bottom: calc(4px + (6 - 4) * var(--width-coefficient));*/
/*	}*/
/*}*/
/*@media (max-width: 500px)*/
/*{*/
/*	.el_offerListItem_ZeJrAwu4 .wobbler.text*/
/*	{*/
/*		padding: 5px 5px;*/
/*		width: auto;*/
/*		height: 20px;*/
/*		line-height: 1.1em;*/
/*		font-weight: 600;*/
/*		font-size: 1rem;*/
/*	}*/
/*}*/
@media (max-width: 400px)
{
	.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton a
	{
		font-size: 1.4rem;
	}
}
/*@media (max-width: 360px)*/
/*{*/
/*	.el_offerListItem_ZeJrAwu4 .wobbler.text*/
/*	{*/
/*		padding: 3px 3px;*/
/*		height: 18px;*/
/*		line-height: 1;*/
/*		font-size: 0.8rem;*/
/*	}*/
/*}*/

/***********************************************************************/
/***********************************************************************/

.offerListBlock
{
	border-left: 1px solid var(--color_4);
}
.offerListBlock.emptyList
{
	border-left: none;
	padding-bottom: 30px;
}

/***********************************************************************/

.el_offerListItem_ZeJrAwu4
{
}
.el_offerListItem_ZeJrAwu4.hide
{
	display: none;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-right: 1px solid var(--color_4);
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_white);
	min-height: 100%;
	z-index: 0;
}
.el_offerListItem_ZeJrAwu4.slick-slide .innerWrapper
{
	border-top: 1px solid var(--color_4);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_4);
	top: -1px;
	left: 0;
	width: 100%;
	height: 1px;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper:hover
{
	z-index: 5;
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock
{
	position: relative;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap
{
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el
{
	z-index: 5;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el img
{
	position: absolute;
	transition: all 0.3s ease 0s;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .first,
.el_offerListItem_ZeJrAwu4 .innerWrapper:hover .imageBlock .second
{
	position: static;
	opacity: 1;
	z-index: 2;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper:hover .imageBlock .first,
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .second
{
	position: absolute;
	opacity: 0;
	z-index: 1;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .parameterList
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 15;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .parameterList li
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	width: calc(100% / 5);
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .otherBtnBlock
{
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	z-index: 15;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .otherBtnBlock .otherBtn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius);
	border: 1px solid var(--color_4);
	background-color: var(--color_white);
	margin-bottom: 8px;
	width: 30px;
	height: 30px;
	color: var(--color_1);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .otherBtnBlock .otherBtn.active
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .otherBtnBlock .otherBtn svg
{
	width: 20px;
	height: 20px;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .otherBtnBlock .otherBtn svg path,
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .otherBtnBlock .otherBtn svg path
{
	fill: var(--color_1);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .imageBlock .otherBtnBlock .otherBtn.active svg path
{
	fill: var(--color_white);
}

/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .infoBlock
{
	/*display: -ms-flex;*/
	/*display: flex;*/
	/*flex: 1 1 auto;*/
	padding-top: 10px;
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .rateBlock
{
	margin-top: 5px;
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .title
{
	margin-top: 10px;
	height: 44px;
	overflow: hidden;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .title a
{
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .title a:hover
{
	color: var(--color_colorScheme);
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .offerModStatus
{
	margin-top: 10px;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .offerModStatus span
{
	display: inline-block;
	border-radius: var(--border-radius);
	padding: 3px 6px 4px 6px;
	line-height: 1.3rem;
	font-size: 1.1rem;
	font-weight: 600;
}

/**/

.el_offerListItem_ZeJrAwu4 .innerWrapper .bonusCol
{
	text-align: right;
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .bonusLine
{
	margin-top: 20px;
}

/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .priceLine
{
	margin-top: 20px;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .priceLine .price
{
	display: inline-block;
	letter-spacing: -0.02em;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color_1);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .priceLine .oldPrice
{
	display: inline-block;
	margin-left: 5px;
	line-height: 1.2;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: line-through;
	color: var(--color_2);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .priceLine .oldPrice.hide
{
	display: none;
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock
{
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications
{
	margin-top: 10px;
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications select
{
	border: 1px solid var(--color_4);
	width: 100%;
	height: 42px;
	font-size: 1.4rem;
	text-align: left;
	color: var(--color_1);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications select option
{
	font-size: 1.4rem;
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications ul
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	text-align: center;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications ul li
{
	display: inline-block;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications ul li.hidden
{
	display: none;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius);
	border: 1px solid var(--color_1);
	background-color: var(--color_white);
	padding: 0 8px;
	min-width: 30px;
	height: 30px;

	font-family: var(--font-family-1);
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_1);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications ul li a:hover,
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications ul li a.active
{
	border-color: var(--color_colorScheme);
	color: var(--color_colorScheme);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications ul li a.disabled
{
	border-color: var(--color_2);
	color: var(--color_2);
	opacity: 0.7;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications ul li span
{
	cursor: pointer;
}
/***/
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .addСartBtn
{
	position: relative;
	margin-top: 10px;
	width: 100%;
	z-index: 21; /*Что бы тень не обрезалась openBlock*/
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .addСartBtn svg
{
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .addСartBtn svg path[stroke]
{
	stroke: var(--color_white);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .addСartBtn svg path[fill]
{
	fill: var(--color_white);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .addСartBtn.disabled svg path[stroke]
{
	stroke: var(--color_2_50);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .addСartBtn.disabled svg path[fill]
{
	fill: var(--color_2_50);
}
/**/
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton
{
	margin-top: 10px;
	text-align: center;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton a.disabled
{
	color: var(--color_2_50);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton a svg
{
	margin-right: 5px;
	width: 21px;
	height: 22px;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton a svg path
{
	stroke: var(--color_colorScheme);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton a:hover svg path
{
	stroke: var(--color_1);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton a.disabled svg path
{
	stroke: var(--color_2_50);
}
.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .fastOrderButton a span
{
	position: relative;
	top: 2px;
}

/***/
/*
.el_offerListItem_ZeJrAwu4 .innerWrapper .openBlock
{
	position: absolute;
	border-radius: 0;
	border: 1px solid transparent;
	border-top: none!important;
	background-color: var(--color_white);
	top: calc(100% - 10px);
	left: -1px;
	padding: 0 20px 20px 20px;
	width: calc(100% + 2px);
	height: 0;
	text-align: center;
	overflow: hidden;
	opacity: 0;
	z-index: -1;
}
.el_offerListItem_ZeJrAwu4 .innerWrapper:hover .openBlock
{
	border: 1px solid var(--color_4);
	background-color: var(--color_white);
	height: auto;
	overflow: visible;
	opacity: 1;
	z-index: 20;
}
.el_offerListItem_ZeJrAwu4.slick-slide .innerWrapper .openBlock
{
	position: static;
	margin-top: 40px;
	padding: 0;
	opacity: 1;
	z-index: 20;
}
.el_offerListItem_ZeJrAwu4.slick-slide .innerWrapper:hover .openBlock
{
	border-color: transparent;
}
.el_offerListItem_ZeJrAwu4 .openBlock .btn
{
	margin-top: 10px;
	width: 100%;
}
*/
/**/

/*****/

.showMoreOffer
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 30px;
	text-align: center;
}

/**********/

@media (max-width: 1520px)
{
	.el_offerListItem_ZeJrAwu4 .innerWrapper
	{
		padding: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}

@media (max-width: 991px)
{
	.el_offerListItem_ZeJrAwu4 .innerWrapper .title
	{
		height: 34px;
	}
	.el_offerListItem_ZeJrAwu4 .innerWrapper .title a
	{
		line-height: 1.2;
		font-size: 1.4rem;
	}
	.el_offerListItem_ZeJrAwu4 .innerWrapper .priceLine .price
	{
		line-height: 1.2;
		font-size: 1.6rem;
	}
	.el_offerListItem_ZeJrAwu4 .innerWrapper .priceLine .oldPrice
	{
		font-size: 1.3rem;
	}
	.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .modifications select
	{
		height: 36px;
	}
	.el_offerListItem_ZeJrAwu4 .innerWrapper .buyBlock .addСartBtn
	{
		height: 36px;
	}
}

/***********************************************************************/

.priceRangeList
{
	border-top: 1px solid var(--color_4);
	margin-top: 15px;
	padding-top: 15px;
}
.priceRangeList .titleCol
{
}
.priceRangeList .titleCol > div
{
	position: relative;
}
.priceRangeList .titleCol > div::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_4);
	top: calc(100% - 3px);
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 1;
}

.priceRangeList .titleCol span
{
	position: relative;
	display: inline-block;
	background-color: var(--color_white);
	padding-right: 5px;
	line-height: 1.6rem;
	font-size: 1.3rem;
	color: var(--color_2);
	z-index: 2;
}
.priceRangeList .valueCol
{
}
.priceRangeList .valueCol span
{
	display: inline-block;
	line-height: 1.6rem;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--color_1);
}

/***********************************************************************/

.orderQuantity
{
}
.orderQuantity .innerWrapper
{
	display: inline-block;
	border-radius: 30px;
	background-color: var(--color_2_10);
	margin-top: 15px;
	padding: 2px 8px 2px 8px;
	line-height: 1.6rem;
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--color_1);
}
.orderQuantity .innerWrapper .fa
{
	color: var(--color_1_70);
}

/***********************************************************************/
/*****                  articleCatalogList                         *****/
/***********************************************************************/

.el_articleCatalogListBlock_ZeJrAwu4
{
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow5 .el_articleCatalogListItem_ZeJrAwu4
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
	margin-bottom: 30px;
}
.typeContentBlock1.inRow5.slick-slider .el_articleCatalogListItem_ZeJrAwu4
{
	margin-bottom: 0;
}

@media (max-width: 1440px)
{
	.typeContentBlock1.inRow5 .el_articleCatalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}

@media (max-width: 1200px)
{
	.typeContentBlock1.inRow5 .el_articleCatalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 767px)
{
	.typeContentBlock1.inRow5 .el_articleCatalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

@media (max-width: 480px)
{
	.typeContentBlock1.inRow5 .el_articleCatalogListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_articleCatalogListItem_ZeJrAwu4
{
}
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	background-color: var(--color_white);
	min-height: 100%;
}

/**/
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .imageBlock
{
}
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap
{
	padding-bottom: 51.72413793103448%; /*348 X 180*/
}
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el
{
	overflow: hidden;
}
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el img
{
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .imageBlock:hover .img_wrap .el img
{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
/**/
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .infoBlock
{
	padding: 20px;
}
/**/
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .title
{
	margin-top: 10px;
	text-align: center;
}
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .title a
{
	display: inline-block;
	line-height: 1.2;
	font-size: 1.5rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color_1);
}
.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .title a:hover
{
	color: var(--color_colorScheme);
}

/**********/

@media (max-width: 1520px)
{
	.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .infoBlock
	{
		padding: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.el_articleCatalogListItem_ZeJrAwu4 .innerWrapper .title a
	{
		line-height: calc(18px + (22 - 18) * var(--width-coefficient));
		font-size: calc(15px + (18 - 15) * var(--width-coefficient));
	}
}

/***********************************************************************/
/*****                       articleList                           *****/
/***********************************************************************/

.el_articleListBlock_ZeJrAwu4
{
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow4 .el_articleListItem_ZeJrAwu4
{
	-ms-flex: 0 0 calc(100% / 4);
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	margin-bottom: 30px;
}
.typeContentBlock1.inRow4.slick-slider .el_articleListItem_ZeJrAwu4
{
	margin-bottom: 0;
}

@media (max-width: 1200px)
{
	.typeContentBlock1.inRow4 .el_articleListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 767px)
{
	.typeContentBlock1.inRow4 .el_articleListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

@media (max-width: 480px)
{
	.typeContentBlock1.inRow4 .el_articleListItem_ZeJrAwu4
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_articleListItem_ZeJrAwu4
{
}
.el_articleListItem_ZeJrAwu4 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	background-color: var(--color_white);
	min-height: 100%;
}

/**/
.el_articleListItem_ZeJrAwu4 .innerWrapper .imageBlock
{
}
.el_articleListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap
{
	padding-bottom: 51.72413793103448%; /*348 X 180*/
}
.el_articleListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el
{
	overflow: hidden;
}
.el_articleListItem_ZeJrAwu4 .innerWrapper .imageBlock .img_wrap .el img
{
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}
.el_articleListItem_ZeJrAwu4 .innerWrapper .imageBlock:hover .img_wrap .el img
{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
/**/
.el_articleListItem_ZeJrAwu4 .innerWrapper .infoBlock
{
	padding: 20px;
}
/**/
.el_articleListItem_ZeJrAwu4 .innerWrapper .title
{
	margin-top: 10px;
}
.el_articleListItem_ZeJrAwu4 .innerWrapper .title a
{
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_articleListItem_ZeJrAwu4 .innerWrapper .title a:hover
{
	color: var(--color_colorScheme);
}
/**/
.el_articleListItem_ZeJrAwu4 .innerWrapper .date
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-top: 10px;
	line-height: 2.2rem;
	font-size: 1.2rem;
	color: var(--color_2);
}
.el_articleListItem_ZeJrAwu4 .innerWrapper .date svg
{
	margin-right: 5px;
}

/**********/

@media (max-width: 1520px)
{
	.el_articleListItem_ZeJrAwu4 .innerWrapper .infoBlock
	{
		padding: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.el_articleListItem_ZeJrAwu4 .innerWrapper .title a
	{
		line-height: calc(18px + (22 - 18) * var(--width-coefficient));
		font-size: calc(15px + (18 - 15) * var(--width-coefficient));
	}
}

/***********************************************************************/
/*****                     articleContent                          *****/
/***********************************************************************/

.el_articleContent_ZeJrAwu4
{
}
.el_articleContent_ZeJrAwu4 .imgBlock
{
	max-height: 800px;
	text-align: center;
}
.el_articleContent_ZeJrAwu4 .imgBlock img
{
	max-height: inherit;
}
/**/
.el_articleContent_ZeJrAwu4 .date
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin: 15px 0;
	line-height: 2.2rem;
	font-size: 1.4rem;
	color: var(--color_2);
}
.el_articleContent_ZeJrAwu4 .date svg
{
	margin-right: 5px;
}
/**/
.el_articleContent_ZeJrAwu4 .shareBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-top: 1px solid var(--color_4);
	padding-top: 25px;
	margin-top: 25px;
}
.el_articleContent_ZeJrAwu4 .shareBlock .titleSharing
{
	letter-spacing: 0.05em;
	line-height: 1.5rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--color_2);
}
.el_articleContent_ZeJrAwu4 .shareBlock .btnSharingBlock
{
	text-align: right;
}
.el_articleContent_ZeJrAwu4 .shareBlock .btnSharingBlock a:last-child
{
	margin-right: 0;
}

/***********************************************************************/
/*****                         staticPage                          *****/
/***********************************************************************/

.staticPage
{
}

/***********************************************************************/
/*****                   contactsPageContent                       *****/
/***********************************************************************/

.contactsPageContent
{
}

.contactsPageContent .contactsBlock
{
}
.contactsPageContent .contactsBlock .contactsItem
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
	margin-bottom: 30px;
}
.contactsPageContent .contactsBlock .contactsItem .innerWrapper
{
	display: -ms-flex;
	display: flex;
}
.contactsPageContent .contactsBlock .contactsItem .ico
{
	-ms-flex: 0 0 42px;
	flex: 0 0 42px;
	max-width: 42px;
	width: 42px;
	height: 42px;
}
.contactsPageContent .contactsBlock .contactsItem .ico svg
{
	width: 42px;
	height: 42px;
}
.contactsPageContent .contactsBlock .contactsItem .ico svg path
{
	stroke: var(--color_colorScheme);
}
.contactsPageContent .contactsBlock .contactsItem .ico svg path.map-pin-center
{
	fill: var(--color_colorScheme);
}

/**/
.contactsPageContent .contactsBlock .contactsItem .infoBlock
{
	padding-left: 15px;
	line-height: 2.4rem;
	font-size: 1.8rem;
}
.contactsPageContent .contactsBlock .contactsItem .infoBlock ul
{
}
.contactsPageContent .contactsBlock .contactsItem .infoBlock ul li
{
	/*margin-top: 5px;*/
}
.contactsPageContent .contactsBlock .contactsItem .infoBlock ul li:first-child
{
	margin-top: 0;
}
.contactsPageContent .contactsBlock .contactsItem .infoBlock ul li a
{
	display: inline-block;
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_1);
}
/**/
.contactsPageContent .contactsBlock .contactsItem .infoBlock .text
{
	line-height: 1.5;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_1);
}

/***/

.contactsPageContent .mapBlock
{
}
.contactsPageContent .mapBlock > div
{
	position: relative;
	padding-bottom: 33.78378378378378%;
	width: 100%;
	height: 0;
	overflow: hidden;
}
.contactsPageContent .mapBlock iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/***/

.contactsPageContent .textBlock
{
	margin-top: 40px;
}

/***/

.contactsPageContent .comtactsFormBlock
{
	margin-top: 40px;
}
.contactsPageContent .comtactsFormBlock .note
{
	font-family: var(--font-family-1);
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_2);
}
.contactsPageContent .comtactsFormBlock form
{
	margin-top: 40px;
}
.contactsPageContent .comtactsFormBlock form textarea
{
	height: 186px;
}
.contactsPageContent .comtactsFormBlock form .buttonForm
{
}
.contactsPageContent .comtactsFormBlock form .buttonForm .btn
{
	min-width: 280px;
}

/**********/

@media (max-width: 1440px)
{
	.contactsPageContent .contactsBlock .contactsItem
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 991px)
{
	.contactsPageContent .mapBlock > div
	{
		padding-bottom: 56.25%;
	}
}

@media (max-width: 767px)
{
	.contactsPageContent .contactsBlock .contactsItem
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}

	.contactsPageContent .comtactsFormBlock form .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.contactsPageContent .comtactsFormBlock form textarea
	{
		height: 100px;
	}
}

@media (max-width: 480px)
{
	.contactsPageContent .contactsBlock .contactsItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.entityContent
{
}
.entityContent .innerWrapper
{
}
.entityContent .innerWrapper .text
{
}
.entityContent .innerWrapper .ico
{
	margin-bottom: 30px;
	font-size: 8rem;
	color: var(--color_colorScheme);
	text-align: center;
}
.entityContent .innerWrapper .ico i
{
	line-height: 1;
}

/***********************************************************************/
/*****                       loginContent                          *****/
/***********************************************************************/

.el_loginContent_ZeJrAwu4
{
}
.el_loginContent_ZeJrAwu4 .note
{
	margin-bottom: 30px;
}

.el_loginContent_ZeJrAwu4 .btn_wrap .btn i
{
	margin-right: 7px;
}
.el_loginContent_ZeJrAwu4 .linkLine
{
	margin-top: 15px;
}
.el_loginContent_ZeJrAwu4 .linkLine a
{
}

/***********************************************************************/
/*****                passwordRecover CONTENT                      *****/
/***********************************************************************/

/***********************************************************************/
/*****                   PROFILE CONTENT                           *****/
/***********************************************************************/

.profileContent
{
}

@media (max-width: 991px)
{
	.profileContent.entityContent .innerWrapper .ico i
	{
		transform: rotate(90deg);
	}
}

/***********************************************************************/
/*****                changePassword CONTENT                       *****/
/***********************************************************************/

.el_changePasswordContent_ZeJrAwu4
{
}

/***********************************************************************/
/*****                 userOrderList CONTENT                       *****/
/***********************************************************************/

.el_userOrderList_ZeJrAwu4
{
}
.el_userOrderList_ZeJrAwu4 .innerWrapper
{
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .tableHeader
{
	border: 1px solid var(--color_4);
	background-color: var(--color_2_10);
	/*padding-top: 10px;*/
	/*padding-bottom: 10px;*/
	padding-left: 0;
	margin-left: 0;
	margin-right: 0;
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .tableHeader .col
{
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .col
{
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_1);
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .number
{
	text-align: left;
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow
{
	border: 1px solid var(--color_4);
	border-top: none;
	margin-left: 0;
	margin-right: 0;
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .title
{
	display: none;
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow:nth-child(even)
{
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow:nth-child(odd)
{
	/*background-color: var(--color_2_10);*/
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .status .value
{
	display: inline-block !important;
	border-radius: var(--border-radius);
	padding: 3px 6px 4px 6px;
	line-height: 1.6rem;
	font-size: 1.3rem;
	font-weight: 500;
}

.el_userOrderList_ZeJrAwu4 .innerWrapper .more
{
}
.el_userOrderList_ZeJrAwu4 .innerWrapper .more .btn
{
	margin-bottom: 10px;
}

@media (max-width: 1440px)
{
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableHeader
	{
		display: none;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;

		padding: 5px 0;
		text-align: left;
	}

	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow
	{
		border: 1px solid var(--color_4);
		padding: 15px;
		margin-bottom: 30px;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow:last-child
	{
		margin-bottom: 0;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .col
	{
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .col:first-child
	{
		padding-top: 0;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .col:last-child
	{
		border-bottom: none;
		padding-bottom: 0;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .col.more
	{
		display: -ms-flex;
		display: flex;
		justify-content: flex-start;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .title
	{
		display: inline-block;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .value
	{
		display: inline-block;
		margin-top: 5px;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .date .title,
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .date .value
	{
		line-height: 1.5;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .more
	{
		padding-top: 15px;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .more .btn
	{
		margin-right: 15px;
	}
	.el_userOrderList_ZeJrAwu4 .innerWrapper .tableRow .more .btn ~ .link
	{
		line-height: 32px;
	}
}

/***********************************************************************/
/*****                 userOrderView CONTENT                       *****/
/***********************************************************************/

.el_userOrderView_ZeJrAwu4
{
}
.el_userOrderView_ZeJrAwu4 .innerWrapper
{
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .tableHeader
{
	border: 1px solid var(--color_4);
	background-color: var(--color_2_10);
	margin-left: 0;
	margin-right: 0;
	padding-top: 10px;
	padding-bottom: 10px;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .tableHeader .col
{
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .col
{
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .tableRow
{
	border: 1px solid var(--color_4);
	border-top: none;
	margin-left: 0;
	margin-right: 0;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .tableRow:first-child
{
	border-top: 1px solid var(--color_4);
	margin-left: 0;
	margin-right: 0;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .tableRow .col
{
	padding-top: 15px;
	padding-bottom: 15px;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .tableRow:nth-child(even)
{
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .tableRow:nth-child(odd)
{
	/*background-color: var(--color_2_10);*/
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .tableRow .value span
{
	display: inline-block !important;
	border-radius: var(--border-radius);
	padding: 3px 6px 4px 6px;
	line-height: 1.6rem;
	font-size: 1.3rem;
	font-weight: 500;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .btnLine
{
	margin-bottom: 15px;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .topTable
{
	margin-bottom: 15px;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .topTable .tableRow .title
{
	text-align: left;
}

.el_userOrderView_ZeJrAwu4 .innerWrapper .el_titleBlock_ZeJrAwu4
{
	margin-top: 60px;
}

@media (max-width: 767px)
{
	.el_userOrderView_ZeJrAwu4 .innerWrapper .topTable .tableRow
	{
		border: 1px solid var(--color_4);
		margin-bottom: 10px;
	}
	.el_userOrderView_ZeJrAwu4 .innerWrapper .topTable .tableRow .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_userOrderView_ZeJrAwu4 .innerWrapper .topTable .tableRow .col.title
	{
		border-bottom: 1px dotted var(--color_4);
	}
	.el_userOrderView_ZeJrAwu4 .innerWrapper .topTable .tableRow .col.value
	{
		/*text-align: right;*/
	}
}

/*****/

.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable
{
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .col
{
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .col.product
{
	flex-grow: 2;
	text-align: left;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .col.qty,
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .col.sum
{
	-ms-flex: 0 0 220px;
	flex: 0 0 220px;
	max-width: 220px;
	text-align: right;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow
{
	align-items: center;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product
{
	font-size: 1.4rem;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product .row
{
	width: 100%;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product .col
{
	padding-top: 0;
	padding-bottom: 0;
	text-align: left;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product .left_side
{
	-ms-flex: 0 0 90px;
	flex: 0 0 90px;
	max-width: 90px;
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .item .right_side
{
}

.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product .img_wrap
{
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product .img_wrap .el
{
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product p
{
	margin-bottom: 5px;
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--color_2);
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product .offerTitle
{
	line-height: 1.7;
	font-size: 1.4rem;
	color: var(--color_1);
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product .offerTitle a
{
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .product .offerTitle a:hover
{
	color: var(--color_colorScheme);
}

.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .sum
{
	color: var(--color_1);
}
.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .title
{
	display: none;
}

@media (max-width: 767px)
{
	.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableHeader
	{
		display: none;
	}
	.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow
	{
		border: 1px solid var(--color_4);
		margin-bottom: 30px;
	}
	.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .qty,
	.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .sum
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		text-align: left;
	}
	.el_userOrderView_ZeJrAwu4 .innerWrapper .bottomTable .tableRow .title
	{
		display: inline-block;
	}
}

/***********************************************************************/
/*****                   bonusList CONTENT                         *****/
/***********************************************************************/

.el_bonusList_ZeJrAwu4
{
}
.el_bonusList_ZeJrAwu4 .innerWrapper
{
}

/***/

.el_bonusList_ZeJrAwu4 .amountBonusesBlock
{
}
.el_bonusList_ZeJrAwu4 .amountBonusesBlock .item
{
	-ms-flex: 0 0 calc(100% / 4);
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	margin-bottom: 30px;
}

.el_bonusList_ZeJrAwu4 .amountBonusesBlock .item .title
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;

	border-radius: 4px;
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_gray);
	padding: 15px 15px;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_bonusList_ZeJrAwu4 .amountBonusesBlock.light .item .title
{
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_white);
	color: var(--color_1);
}
.el_bonusList_ZeJrAwu4 .amountBonusesBlock.gray .item .title
{
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_gray);
	color: var(--color_1);
}
.el_bonusList_ZeJrAwu4 .amountBonusesBlock.colorScheme .item .title
{
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
.el_bonusList_ZeJrAwu4 .amountBonusesBlock.dark .item .title
{
	border-bottom: 1px solid var(--color_4);
	background-color: var(--color_dark);
	color: var(--color_white);
}

/***/

.el_bonusList_ZeJrAwu4 .bonusListBlock .tableHeader
{
	border: 1px solid var(--color_4);
	background-color: var(--color_2_10);
	/*padding-top: 10px;*/
	/*padding-bottom: 10px;*/
	padding-left: 0;
	margin-left: 0;
	margin-right: 0;

}
.el_bonusList_ZeJrAwu4 .bonusListBlock .tableHeader .col
{
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_bonusList_ZeJrAwu4 .bonusListBlock .col
{
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_1);
}
.el_bonusList_ZeJrAwu4 .bonusListBlock .number
{
	text-align: left;
}
.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow
{
	border: 1px solid var(--color_4);
	border-top: none;
	margin-left: 0;
	margin-right: 0;
}
.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow .title
{
	display: none;
}
.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow:nth-child(even)
{
}
.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow:nth-child(odd)
{
	background-color: var(--color_2_10);
}
.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow .value
{
}
.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow .value .bgBlock
{
	display: inline-block;
	border-radius: 4px;
	padding: 5px;
	color: var(--color_white);
}

@media (max-width: 1230px)
{
	.el_bonusList_ZeJrAwu4 .amountBonusesBlock .item
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 991px)
{
	.el_bonusList_ZeJrAwu4 .bonusListBlock .tableHeader
	{
		display: none;
	}
	.el_bonusList_ZeJrAwu4 .bonusListBlock .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;

		padding: 5px 0;
		text-align: left;
	}
	.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow
	{
		border: 1px solid var(--color_4);
		padding: 15px;
		margin-bottom: 30px;
	}
	.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow .col
	{
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
	}
	.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow .title
	{
		display: inline-block;
	}
	.el_bonusList_ZeJrAwu4 .bonusListBlock .tableRow .value
	{
		text-align: right;
	}
}
@media (max-width: 460px)
{
	.el_bonusList_ZeJrAwu4 .amountBonusesBlock .item
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/*****                    userData CONTENT                         *****/
/***********************************************************************/

.el_userData_ZeJrAwu4
{
}

.el_userData_ZeJrAwu4 .btn_wrap
{
	margin-top: 15px;
}
.el_userData_ZeJrAwu4 .btn_wrap .btn
{
	width: 100%;
	max-width: 200px;
}

@media (max-width: 767px)
{
	.el_userData_ZeJrAwu4 .formData .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}


/************************************************************************************/
/*** compareListCD ***/
/************************************************************************************/

.compareListCD
{
}

/***/

.compareListCD .emptyBlock
{
}
.compareListCD .emptyBlock p
{
	margin-bottom: 15px;
}

/*****/

.compareListCD .catalogBlock
{
	border-top: 1px solid var(--color_4);
	margin-bottom: 30px;
	padding-top: 30px;
}
.compareListCD .catalogBlock .catalogTitle
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 30px;
}
.compareListCD .catalogBlock .catalogTitle span
{
	position: relative;
	margin: 10px 30px 10px 0;
	font-family: var(--font-family-1);
	line-height: 24px;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_1);
}
.compareListCD .catalogBlock .catalogTitle a
{
}

/******************************/

.compareListCD .offerCompareList
{
	overflow: auto;
}
.compareListCD .offerCompareList .compareBlock
{
	border-bottom: 1px solid var(--color_4);
	padding-bottom: 30px;
	width: 100%;
	overflow-x: scroll;
}
.compareListCD .offerCompareList .compareBlock .rowItem
{
	flex-wrap: nowrap;
}

.compareListCD .offerCompareList .compareBlock .rowItem:nth-child(odd) .item
{
	background-color: var(--color_2_10);
}
.compareListCD .offerCompareList .compareBlock .rowItem:first-child .item,
.compareListCD .offerCompareList .compareBlock .rowItem:last-child .item
{
	background-color: transparent;
}
.compareListCD .offerCompareList .compareBlock .rowItem:hover .item
{
	background-color: var(--color_colorScheme_10);
}

.compareListCD .offerCompareList .compareBlock .rowItem:hover:first-child .item,
.compareListCD .offerCompareList .compareBlock .rowItem:hover:last-child .item
{
	background-color: transparent;
}
.compareListCD .offerCompareList .compareBlock .rowItem .item
{
	-ms-flex: 0 0 calc(100% / 6);
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
	padding-top: 10px;
	padding-bottom: 10px;
}
.compareListCD .offerCompareList .compareBlock .rowItem .item p
{
	margin: 0;
}
.compareListCD .offerCompareList .compareBlock .rowItem .item .price
{
	letter-spacing: -0.02em;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color_1);
}
.compareListCD .offerCompareList .compareBlock .rowItem .item .priceOld
{
	line-height: 1.2;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: line-through;
	color: var(--color_2);
}

@media (max-width: 1440px)
{
	.compareListCD .offerCompareList .compareBlock .rowItem .item
	{
		-ms-flex: 0 0 calc(100% / 5);
		flex: 0 0 calc(100% / 5);
		max-width: calc(100% / 5);
	}
}
@media (max-width: 1200px)
{
	.compareListCD .offerCompareList .compareBlock .rowItem .item
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 991px)
{
	.compareListCD .offerCompareList .compareBlock .rowItem .item
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
@media (max-width: 767px)
{
	.compareListCD .offerCompareList .compareBlock .rowItem .item
	{
		-ms-flex: 0 0 240px;
		flex: 0 0 240px;
		max-width: 240px;
	}
}

/****/

.compareListCD .offerCompareList .compareBlock .headCol
{
	border-right: 1px solid var(--color_4);
}

.compareListCD .offerCompareList .compareBlock .headCol.ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid transparent;
}
.compareListCD .offerCompareList .compareBlock .item.headCol p
{
	font-size: 1.5rem;
	text-align: left;
}
.compareListCD .offerCompareList .compareBlock .headCol.ico p
{
	font-size: 2rem;
	color: var(--color_colorScheme);
}
.compareListCD .offerCompareList .compareBlock .headCol.ico p a
{
	font-size: 1.5rem;
	color: var(--color_colorScheme);
}
.compareListCD .offerCompareList .compareBlock .headCol.ico p a:hover
{
	color: var(--color_1);
}

/****/

.compareListCD .offerCompareList .compareBlock .item p
{
	font-size: 1.5rem;
	text-align: center;
}

/***/

.compareListCD .offerCompareList .compareBlock .imageAndTitleCOL
{
}
.compareListCD .offerCompareList .compareBlock .imageAndTitleCOL .image
{
	position: relative;
	width: 100%;
	padding-bottom: 100%;
}
.compareListCD .offerCompareList .compareBlock .imageAndTitleCOL .image a
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.compareListCD .offerCompareList .compareBlock .imageAndTitleCOL .image img
{
	max-width: 100%;
	max-height: 100%;
}
.compareListCD .offerCompareList .compareBlock .imageAndTitleCOL .title
{
	margin-top: 15px;
	text-align: left;
}
.compareListCD .offerCompareList .compareBlock .imageAndTitleCOL .title a
{
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.compareListCD .offerCompareList .compareBlock .imageAndTitleCOL .title a:hover
{
	color: var(--color_colorScheme);
}

/***/
.compareListCD .offerCompareList .compareBlock .availabilityCOL
{
}
/***/
.compareListCD .offerCompareList .compareBlock .ratingCOL
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
/***/
.compareListCD .offerCompareList .compareBlock .buttonCOL
{
}
.compareListCD .offerCompareList .compareBlock .buttonCOL .btn
{
	width: 100%;
}
/***/
.compareListCD .offerCompareList .compareBlock .deleteButtonCOL
{
	text-align: center;
}
.compareListCD .offerCompareList .compareBlock .deleteButtonCOL .link-delete
{
	display: inline-block;
	font-size: 1.5rem;
}

/***********************************************************************/
/*****                      page404Content                         *****/
/***********************************************************************/

.el_page404Content_ZeJrAwu4
{
}
.el_page404Content_ZeJrAwu4 .numbers
{
	line-height: 1;
	font-size: 15rem;
	font-weight: bold;
	color: var(--color_colorScheme);
}

@media (max-width: 1520px)
{
	.el_page404Content_ZeJrAwu4 .numbers
	{
		font-size: calc(100px + (150 - 100) * var(--width-coefficient));
	}
}

/***********************************************************************/
/*****                         staticText                          *****/
/***********************************************************************/

.staticText
{
	font-family: var(--font-family-1);
	line-height: 1.5;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.bgColorScheme .staticText,
.bgDark .staticText
{
	color: var(--color_white);
}
.staticText *
{
	margin-bottom: 30px;
	font-family: inherit;
	line-height: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}
.staticText *:first-child
{
	margin-top: 0;
}
.staticText *:last-child
{
	margin-bottom: 0;
}

.staticText .fa::before
{
	font-family: "FontAwesome";
}

.staticText h1,
.staticText .h1,
.staticText h2,
.staticText .h2,
.staticText h3,
.staticText .h3,
.staticText h4,
.staticText .h4,
.staticText h5,
.staticText .h5,
.staticText h6,
.staticText .h6
{
	margin-top: 40px;
	margin-bottom: 30px;
	font-family: var(--font-family-1);
	font-weight: 600;
	color: var(--color_10);
}
.bgColorScheme .staticText h1,
.bgColorScheme .staticText .h1,
.bgDark .staticText h1,
.bgDark .staticText .h1,
.bgColorScheme .staticText h2,
.bgColorScheme .staticText .h2,
.bgDark .staticText h2,
.bgDark .staticText .h2,
.bgColorScheme .staticText h3,
.bgColorScheme .staticText .h3,
.bgDark .staticText h3,
.bgDark .staticText .h3,
.bgColorScheme .staticText h4,
.bgColorScheme .staticText .h4,
.bgDark .staticText h4,
.bgDark .staticText .h4,
.bgColorScheme .staticText h5,
.bgColorScheme .staticText .h5,
.bgDark .staticText h5,
.bgDark .staticText .h5,
.bgColorScheme .staticText h6,
.bgColorScheme .staticText .h6,
.bgDark .staticText h6,
.bgDark .staticText .h6
{
	color: var(--color_white);
}

.staticText h1,
.staticText .h1
{
	line-height: 3.4rem;
	font-size: 3rem;
}
.staticText h2,
.staticText .h2
{
	line-height: 2.9rem;
	font-size: 2.6rem;
}
.staticText h3,
.staticText .h3
{
	line-height: 2.9rem;
	font-size: 2.2rem;
}
.staticText h4,
.staticText .h4
{
	line-height: 2.9rem;
	font-size: 2rem;
}
.staticText h5,
.staticText .h5
{
	line-height: 2.2rem;
	font-size: 1.8rem;
}
.staticText h6,
.staticText .h6
{
	line-height: 2.2rem;
	font-size: 1.6rem;
}

.staticText ul,
.staticText ol
{
	margin-bottom: 10px;
	padding-left: 40px;
}
.staticText ul li ul,
.staticText ol li ul,
.staticText ul li ol
{
	margin: 10px 0;
	padding: 0 0 0 20px;
}
.staticText ul li,
.staticText ol li
{
	list-style-position: outside!important;
	margin: 0 0 10px 0;
	padding: 0;
}
.staticText ul li
{
	list-style: disc;
}
.staticText ol li
{
	list-style: decimal;
}

.staticText a
{
	color: var(--color_colorScheme);
}
.staticText a:hover
{
	color: var(--color_1);
}
.bgColorScheme .staticText a
{
	color: var(--color_1);
}
.bgColorScheme .staticText a:hover,
.bgDark .staticText a:hover
{
	color: var(--color_white);
	opacity: 0.7;
}

.staticText b,
.staticText strong
{
	font-weight: bold;
}
.staticText em
{
	font-style: italic;
}
.staticText img
{
	display: block;
	margin: 10px auto;
	width: auto !important;
	max-width: 100%;
}

.staticText table
{
	width: 100%;
}
.staticText table tr
{
	border: 1px solid var(--color_4);
}
.staticText table tr:nth-child(odd)
{
	background-color: var(--color_2_10);
}
.staticText table tr td
{
	padding: 9px 13px;
}

.staticText .videoIframe
{
	width: 100%;
	max-width: 100%;
	margin-bottom: 30px;
}
.staticText .videoIframe:empty
{
	margin-bottom: 0;
	padding-top: 0;
}
.staticText .videoIframe > div
{
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
}
.staticText .videoIframe iframe,
.staticText .videoIframe object,
.staticText .videoIframe embed
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.staticText .videoIframe .video_wrap .el
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.staticText .videoIframe .video_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.staticText .videoIframe .video_wrap .el svg
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 48px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.staticText .videoIframe .video_wrap .el svg .ytp-large-play-button-bg
{
	-webkit-transition: fill .1s cubic-bezier(0.4,0,1,1),fill-opacity .1s cubic-bezier(0.4,0,1,1);
	transition: fill .1s cubic-bezier(0.4,0,1,1),fill-opacity .1s cubic-bezier(0.4,0,1,1);
	fill: var(--color_colorScheme);
	fill-opacity: .8;
}
.staticText .videoIframe .video_wrap:hover .el svg .ytp-large-play-button-bg
{
	fill: #FF0000;
	fill-opacity: 1;
}

.staticText .items
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 0;
}
.staticText .items.it2
{
	align-items: unset;
}
.staticText .items > div
{
	margin: 0 0 30px 0;
	padding-left: 15px;
	padding-right: 15px;
}
.staticText .items.ia1 > div
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.staticText .items.ia2 > div
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

@media (max-width: 1520px)
{
	.staticText
	{
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}

	.staticText h1,
	.staticText .h1,
	.staticText h2,
	.staticText .h2,
	.staticText h3,
	.staticText .h3,
	.staticText h4,
	.staticText .h4,
	.staticText h5,
	.staticText .h5,
	.staticText h6,
	.staticText .h6
	{
		margin-bottom: calc(30px + (40 - 30) * var(--width-coefficient));
	}
	.staticText h1,
	.staticText .h1
	{
		line-height: calc(27px + (29 - 27) * var(--width-coefficient));
		font-size: calc(22px + (24 - 22) * var(--width-coefficient));
	}

	.staticText .items
	{
		margin-left: calc((5px + (15 - 5) * var(--width-coefficient)) * -1);
		margin-right: calc((5px + (15 - 5) * var(--width-coefficient)) * -1);
	}
	.staticText .items > div
	{
		padding-left: calc(5px + (15 - 5) * var(--width-coefficient));
		padding-right: calc(5px + (15 - 5) * var(--width-coefficient));
		margin-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.staticText .items.ia2 > div
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/*****                       PAGINATION                            *****/
/***********************************************************************/

.el_paginationBlock_ZeJrAwu4
{
	margin: 20px auto;
}
.el_paginationBlock_ZeJrAwu4 ul
{
	text-align: center;
}
.el_paginationBlock_ZeJrAwu4 ul li
{
	display: inline-block;
	margin: 5px;
}
.el_paginationBlock_ZeJrAwu4 ul li a,
.el_paginationBlock_ZeJrAwu4 ul li span
{
	display: block;
	background-color: transparent;
	border: 1px solid var(--color_4);
	border-radius: var(--border-radius);
	box-shadow: none;
	padding: 0 5px;
	min-width: 42px;
	height: 42px;
	line-height: 40px;
	font-family: var(--font-family-1);
	font-size: 1.5rem;
	font-weight: 500;
	text-transform: uppercase;
	font-style: normal;
	color: var(--color_1);
}
.el_paginationBlock_ZeJrAwu4 ul li a:hover,
.el_paginationBlock_ZeJrAwu4 ul li span
{
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}

@media (max-width: 991px)
{
	.el_paginationBlock_ZeJrAwu4 ul li a,
	.el_paginationBlock_ZeJrAwu4 ul li span
	{
		min-width: 36px;
		height: 36px;
		line-height: 34px;
	}
}


/***********************************************************************/
/***********************************************************************/

.dimensionalGridBlock
{
	position: fixed;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;

	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 900;
}
.dimensionalGridBlock .closeBlock
{
	position: absolute;
	display: block;
	background-color: var(--color_black_50);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.dimensionalGridBlock .innerWrapper
{
	position: absolute;
	display: block;
	background-color: var(--color_white);
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 800px;
	height: 100vh;
	overflow: auto;
	z-index: 2;
}
.dimensionalGridBlock .innerWrapper .closeButton
{
	position: absolute;
	top: 11px;
	right: 20px;
}
.dimensionalGridBlock .innerWrapper .title
{
	border-bottom: 1px solid var(--color_4);
	padding: 15px 50px 15px 30px;
	line-height: 2.4rem;
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color_1);
}
.dimensionalGridBlock .innerWrapper .content
{
	padding: 50px 30px 30px 30px;
}
.dimensionalGridBlock .innerWrapper .linkLine
{
	margin-top: 40px;
	text-align: center;
}
.dimensionalGridBlock .innerWrapper .linkLine a
{
	display: inline-block;
	line-height: 1.2;
	font-size: 1.4rem;
	font-weight: 400;
	text-decoration-line: underline;
	color: var(--color_1);
}
.dimensionalGridBlock .innerWrapper .linkLine a:hover
{
	color: var(--color_colorScheme);
}
.dimensionalGridBlock .innerWrapper .linkLine a span
{
	display: block;
}

@media (max-width: 1520px)
{
	.dimensionalGridBlock .innerWrapper .closeButton
	{
		position: absolute;
		top: calc(11px + (24 - 11) * var(--width-coefficient));
		right: calc(20px + (50 - 20) * var(--width-coefficient));
	}
	.dimensionalGridBlock .innerWrapper .title
	{
		padding-right: calc(30px + (50 - 30) * var(--width-coefficient));
		padding-left: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	.dimensionalGridBlock .innerWrapper .content
	{
		padding-top: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-right: calc(30px + (50 - 30) * var(--width-coefficient));
		padding-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-left: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.modal
{
}
.modal .modal-dialog
{

}
@media (min-width: 576px)
{
	.modal .modal-dialog
	{
		max-width: 550px;
	}
}

.modal .modal-content
{
	border: none;
}

body[data-block-header-color="light"] .modal .modal-header
{
	border-bottom-color: var(--color_gray);
	background-color: var(--color_white);
}
body[data-block-header-color="gray"] .modal .modal-header
{
	border-bottom-color: var(--color_2_15);
	background-color: var(--color_gray);
}
body[data-block-header-color="colorScheme"] .modal .modal-header
{
	border-bottom-color: var(--color_gray_15);
	background-color: var(--color_colorScheme);
}
body[data-block-header-color="dark"] .modal .modal-header
{
	border-bottom-color: var(--color_gray_15);
	background-color: var(--color_dark);
}

body[data-block-header-color="light"] .modal .modal-header .modal-title,
body[data-block-header-color="gray"] .modal .modal-header .modal-title,
body[data-block-header-color="light"] .modal .modal-header .close,
body[data-block-header-color="gray"] .modal .modal-header .close
{
	color: var(--color_1);
}
body[data-block-header-color="colorScheme"] .modal .modal-header .modal-title,
body[data-block-header-color="dark"] .modal .modal-header .modal-title,
body[data-block-header-color="colorScheme"] .modal .modal-header .close,
body[data-block-header-color="dark"] .modal .modal-header .close
{
	color: var(--color_white);
}

.modal .modal-header .modal-title
{
	font-weight: normal;
	text-transform: none;
}

.modal .modal-body
{
	font-family: var(--font-family-1);
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.modal .modal-body a
{
	font-weight: 500;
	color: var(--color_colorScheme);
}
.modal .modal-body a:hover
{
	color: var(--color_1);
}

.modal .modal-footer
{
}
.modal .modal-footer .btn
{
	min-width: 100px;
}

/***********************************************************************/
/***********************************************************************/

.offerInfoMoModal .offerImage
{
	-ms-flex: 0 0 180px;
	flex: 0 0 180px;
	max-width: 180px;
}
.offerInfoMoModal .offerImage .imageBlock
{
}
/***/
.offerInfoMoModal .infoBlock
{
	padding-left: 15px;
}
.offerInfoMoModal .infoBlock .title
{
}
.offerInfoMoModal .infoBlock .title a
{
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.offerInfoMoModal .infoBlock .title a:hover
{
	color: var(--color_colorScheme);
}
/**/
.offerInfoMoModal .infoBlock .priceBlock
{
	margin-top: 5px;
}
/**/
.offerInfoMoModal .infoBlock .bonusLine
{
	margin-top: 15px;
}
/**/
.offerInfoMoModal .infoBlock .priceLine
{
	margin-top: 15px;
}
.offerInfoMoModal .infoBlock .priceLine .price
{
	display: inline-block;
	letter-spacing: -0.02em;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color_1);
}
.offerInfoMoModal .infoBlock .priceLine .oldPrice
{
	display: inline-block;
	margin-left: 5px;
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: line-through;
	color: var(--color_2);
}
.offerInfoMoModal .infoBlock .priceLine .oldPrice.hide
{
	display: none;
}
/***/
.offerInfoMoModal .infoBlock .modifications
{
	margin-top: 15px;
}
/**/
.offerInfoMoModal .infoBlock .modifications select
{
	border: 1px solid var(--color_4);
	width: 100%;
	height: 42px;
	font-size: 1.4rem;
	text-align: left;
	color: var(--color_1);
}
.offerInfoMoModal .infoBlock .modifications select option
{
	font-size: 1.4rem;
}
/**/
.offerInfoMoModal .infoBlock .modifications ul
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	text-align: center;
}
.offerInfoMoModal .infoBlock .modifications ul li
{
	display: inline-block;
}
.offerInfoMoModal .infoBlock .modifications ul li.hidden:not(.active)
{
	display: none;
}
.offerInfoMoModal .infoBlock .modifications ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius);
	border: 1px solid var(--color_1);
	background-color: var(--color_white);
	padding: 0 8px;
	min-width: 30px;
	height: 30px;

	font-family: var(--font-family-1);
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_1);
}
.offerInfoMoModal .infoBlock .modifications ul li a:hover,
.offerInfoMoModal .infoBlock .modifications ul li a.active
{
	border-color: var(--color_colorScheme);
	color: var(--color_colorScheme);
}
.offerInfoMoModal .infoBlock .modifications ul li a.disabled
{
	border-color: var(--color_2);
	color: var(--color_2);
	opacity: 0.7;
}
.offerInfoMoModal .infoBlock .modifications ul li span
{
	cursor: pointer;
}
/***/
.offerInfoMoModal .infoBlock .amountBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-top: 15px;
}
.offerInfoMoModal .infoBlock .amountBlock .qtText
{
	padding-right: 15px;
}
.offerInfoMoModal .infoBlock .amountBlock .amount
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	-ms-flex: 0 0 100px;
	flex: 0 0 100px;
	max-width: 100px;
}
.offerInfoMoModal .infoBlock .amountBlock .amount input
{
	padding: 0 5px;
	height: 22px;
	text-align: center;
}
.offerInfoMoModal .infoBlock .amountBlock .amount button
{
	display: block;
	padding: 0;
	-ms-flex: 0 0 22px;
	flex: 0 0 22px;
	max-width: 22px;
	width: 22px;
	height: 22px;
}
.offerInfoMoModal .infoBlock .amountBlock .amount .plus
{
}
.offerInfoMoModal .infoBlock .amountBlock .amount .minus
{
}

/******************************/

.addToCartFormModal
{
}

.addToCartFormModal .modal-footer
{
}
.addToCartFormModal .modal-footer .btn
{
	width: calc(50% - 0.25rem);
}

/******************************/

.addOrderInOneClickModal
{
}
/**/
.addOrderInOneClickModal .bottomBlock
{
	margin-top: 15px;
}
/**/
.addOrderInOneClickModal .btn_wrap
{
	text-align: center;
}
.addOrderInOneClickModal .btn_wrap .btn
{
	width: 100%;
	max-width: 200px;
}

/******************************/
/******************************/

@media (max-width: 520px)
{
	.offerInfoMoModal .offerImage
	{
		-ms-flex: 0 0 150px;
		flex: 0 0 150px;
		max-width: 150px;
	}
}
@media (max-width: 460px)
{
	.offerInfoMoModal .infoBlock .amountBlock .qtText
	{
		display: none;
	}
}
@media (max-width: 400px)
{
	.offerInfoMoModal .offerImage
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.offerInfoMoModal .offerImage .imageBlock
	{
		margin: 0 auto;
		max-width: 100px;
	}
	.offerInfoMoModal .offerImage .wobblerBlock
	{
		display: none;
	}

	.addToCartFormModal .modal-footer
	{
		flex-wrap: wrap;
	}
	.addToCartFormModal .modal-footer .btn
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		margin: 10px 0 0 0;
	}
	.addToCartFormModal .modal-footer .btn:first-child
	{
		margin-top: 0;
	}
}

/************************************************************************************/
/*** rateStar ***/
/*************************************************************************************/

.formRateStar
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.formRateStar span
{
	font-size: 1.8rem;
	cursor:pointer;
}
.formRateStar span.passiveStar i
{
	color: var(--color_9);
}
.formRateStar span.activeStar i
{
	color: var(--color_9);
}

/*************************************/
/*************************************/

.rateStar
{
	position: relative;
	display: inline-block !important;
}
.rateStar .starsPassive i
{
	color: var(--color_9);
}
.rateStar .starsActive i
{
	color: var(--color_9);
}
/*****/
.rateStar.smallStar,
.rateStar.smallStar > div > div
{
	width: 65px;
	height: 16px;
}
.rateStar.smallStar > div
{
	position: absolute;
	top: 0;
	left: 0;
	height: 16px;
	width: 0;
	overflow: hidden;
}
.rateStar.smallStar > .starsPassive
{
	width: 65px;
}
/**/
.rateStar.smallStar > div i
{
	margin: 0 0;
	font-size: 14px !important;
}
.rateStar.smallStar > div i:first-child
{
	margin-left: 0;
}
.rateStar.smallStar > div i:last-child
{
	margin-right: 0;
}
/***/
.rateStar.mediumStar,
.rateStar.mediumStar > div > div
{
	width: 112px;
	height: 24px;
}
.rateStar.mediumStar > div
{
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 0;
	overflow: hidden;
}
.rateStar.mediumStar > .starsPassive
{
	width: 112px;
}
/**/
.rateStar.mediumStar > div i
{
	margin: 0 0;
	font-size: 24px !important;
}
.rateStar.mediumStar > div i:first-child
{
	margin-left: 0;
}
.rateStar.mediumStar > div i:last-child
{
	margin-right: 0;
}

/***********************************************************************/
/***********************************************************************/

.filesList
{
	padding: 0;
}
.filesList .filesListItem
{
	display: inline-block;
	margin: 0 10px 10px 0;
}
.filesList .filesListItem a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	border: 1px solid var(--color_4);
	background-color: var(--color_white);
	padding: 15px 15px;
}
.filesList .filesListItem a:hover
{
	border-color: var(--color_colorScheme);
}
.filesList .filesListItem a .ico
{
	-ms-flex: 0 0 38px;
	flex: 0 0 38px;
	max-width: 38px;
}
.filesList .filesListItem a .info
{
	padding-left: 10px;
}
.filesList .filesListItem a .info .name
{
	display: block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 300;
	word-break: break-all;
	color: var(--color_1);
}
.filesList .filesListItem a:hover .info .name
{
	color: var(--color_colorScheme);
}
.filesList .filesListItem a .info .cName
{
	display: block;
	line-height: 1.6rem;
	font-size: 1.2rem;
	color: var(--color_2);
}

/**********/

@media (max-width: 1520px)
{
	.filesList .filesListItem a
	{
		padding: calc(10px + (15 - 10) * var(--width-coefficient));
	}
}


/***********************************************************************/
/***********************************************************************/

.commentListCD
{
	margin-top: 50px;
}
.commentListCD .commentListEmpty
{
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}

/***/

.commentListCD .commentItem
{
	margin-top: 10px;
}
.commentListCD .commentItem:first-child
{
	margin-top: 0;
}
.commentListCD .commentItem .innerWrapper
{
	border: 1px solid var(--color_4);
	background-color: var(--color_white);
	padding: 25px 30px 30px 30px;
}
.commentListCD .commentItem .innerWrapper .nameDateRow
{
}
.commentListCD .commentItem .innerWrapper .name
{
	line-height: 1.9rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color_10);
}
.commentListCD .commentItem .innerWrapper .rateBlock
{
	margin-top: 10px;
}
.commentListCD .commentItem .innerWrapper .dateCol
{
	-ms-flex: 0 0 130px;
	flex: 0 0 130px;
	max-width: 130px;
	text-align: right;
}
.commentListCD .commentItem .innerWrapper .date
{
	line-height: 1.6rem;
	font-size: 1.3rem;
	color: var(--color_2);
}

.commentListCD .commentItem .innerWrapper .commentText
{
	margin-top: 7px;
	line-height: 2rem;
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--color_10);
}
.commentListCD .commentItem .innerWrapper .commentText.textPlus > span,
.commentListCD .commentItem .innerWrapper .commentText.textMinus > span
{
	font-weight: 500;
}

/***/

.commentListCD .commentItem .innerWrapper .answerMenuLine
{
	margin-top: 20px;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .row
{
	align-items: center;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .btnCol
{
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .answerButton
{
	margin-right: 15px;
	height: 34px;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .openAnswerButton
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	border: none;
	border-bottom: 1px solid transparent;
	background-color: transparent;
	line-height: 1.8rem;
	font-size: 1.4rem;
	color: var(--color_colorScheme);
	cursor: pointer;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .openAnswerButton:hover
{
	border-color: var(--color_colorScheme);;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .openAnswerButton svg
{
	margin-right: 5px;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .openAnswerButton svg path
{
	fill: var(--color_colorScheme);
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .openAnswerButton:hover svg path
{
	fill: var(--color_colorScheme);
}
/**/
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol
{
	text-align: right;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock
{
	line-height: 1.7rem;
	font-size: 1.4rem;
	color: var(--color_2);
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock > span
{
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	border-radius: var(--border-radius);
	border: 1px solid var(--color_2);
	background-color: var(--color_white);
	margin-left: 15px;
	padding: 0 15px;
	min-width: 65px;
	height: 34px;
	font-size: 1.3rem;
	text-align: center;
	color: var(--color_2);
	cursor: pointer;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button:hover
{
	border-color: var(--color_colorScheme_90);
	background-color: var(--color_colorScheme_90);
	color: var(--color_white);
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button i
{
	margin-right: 5px;
	color: var(--color_1);
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button:hover i
{
	color: var(--color_white);
}

/*************************************/

.commentListCD .commentItem .answerBlock
{
	display: none;
	border-top: 2px solid var(--color_colorScheme);
	background-color: var(--color_white);
	padding: 25px 30px 30px 70px;
}
.commentListCD .commentItem .answerBlock .commentItem
{
	margin-top: 30px;
}
.commentListCD .commentItem .answerBlock .commentItem:first-child
{
	margin-top: 0;
}
.commentListCD .commentItem .answerBlock .commentItem .innerWrapper
{
	border: none;
	background: transparent;
	padding: 0;
}
.commentListCD .commentItem .answerBlock .btnLine
{
	margin-top: 30px;
}
.commentListCD .commentItem .answerBlock .btnLine .closeAnswerButton
{
	border: none;
	border-bottom: 1px solid transparent;
	background-color: transparent;
	margin-right: 15px;
	line-height: 1.8rem;
	font-size: 1.4rem;
	color: var(--color_colorScheme);
	cursor: pointer;
}
.commentListCD .commentItem .answerBlock .btnLine .closeAnswerButton:hover
{
	border-color: var(--color_colorScheme);
}

/*************************************/

.commentListCD .answerForCommentFormCD
{
	margin-top: 30px;
	max-width: 600px;
}
.commentListCD .answerForCommentFormCD > div
{
	border: 1px solid var(--color_4);
	background-color: var(--color_2_10);
	padding: 25px 30px 30px 30px;
}
.commentListCD .answerForCommentFormCD .btn_wrap
{
}
.commentListCD .answerForCommentFormCD .btn_wrap .btn
{
}
.commentListCD .answerForCommentFormCD .btn_wrap .or
{
	display: inline-block;
	margin: 10px 10px;
	line-height: 1.8rem;
	font-size: 1.4rem;
	color: var(--color_1);
}
.commentListCD .answerForCommentFormCD .btn_wrap .closeAnswerButton
{
	display: inline-block;
	margin: 10px 0 10px 15px;
	line-height: 1.8rem;
	font-size: 1.4rem;
	color: var(--color_colorScheme);
}
.commentListCD .answerForCommentFormCD .btn_wrap .closeAnswerButton:hover
{
	color: var(--color_1);
}

/*************************************/

.addCommentFormCD
{
	margin-top: 50px;
}
.addCommentFormCD .innerWrapper
{
	display: none;
}
.addCommentFormCD.open .innerWrapper
{
	display: block;
}

.addCommentFormCD .titleAndCloseBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/**/
.addCommentFormCD .titleAndCloseBlock .addCommentFormTitle
{
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
/**/
.addCommentFormCD .titleAndCloseBlock .closeBtn
{
}
.addCommentFormCD .titleAndCloseBlock .closeBtn a
{
}
.addCommentFormCD .titleAndCloseBlock .closeBtn a:hover svg path
{
	fill: var(--color_colorScheme);
}

/***/

.addCommentFormCD .innerWrapper form
{
	margin-top: 15px;
}
.addCommentFormCD .innerWrapper form textarea[name='offerCommentTextPlus'],
.addCommentFormCD .innerWrapper form textarea[name='offerCommentTextMinus']
{
	height: 52px;
}
.addCommentFormCD .innerWrapper form textarea[name='siteCommentText']
{
	height: 223px;
}

.addCommentFormCD .innerWrapper form .rateProduct,
.addCommentFormCD .innerWrapper form .rateSite
{
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.addCommentFormCD .innerWrapper form .rateProduct label,
.addCommentFormCD .innerWrapper form .rateSite label
{
	margin-right: 10px;
	margin-bottom: 3px;
}
.addCommentFormCD .innerWrapper form .btn_wrap
{
	margin-top: 44px;
}
.addCommentFormCD.siteComment .innerWrapper form .btn_wrap
{
	margin-top: 33px;
}
.addCommentFormCD .innerWrapper form .btn_wrap .btn
{
	width: 100%;
}

/**********/

.commentListCD .el_paginationBlock_ZeJrAwu4
{
	margin-bottom: 0;
}

/**********/
/**********/

@media (max-width: 1520px)
{
	.commentListCD
	{
		margin-top: calc(30px + (50 - 30) * var(--width-coefficient));
	}

	.commentListCD .commentItem .innerWrapper
	{
		padding-top: calc(10px + (25 - 10) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
	}

	.commentListCD .commentItem .answerBlock
	{
		padding-top: calc(10px + (25 - 10) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-left: calc(30px + (70 - 30) * var(--width-coefficient));
	}

	.commentListCD .answerForCommentFormCD > div
	{
		padding-top: calc(10px + (25 - 10) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}

@media (max-width: 991px)
{
	.addCommentFormCD.siteComment .innerWrapper form textarea[name="siteCommentText"]
	{
		height: 193px;
	}
}
@media (max-width: 767px)
{
	.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 15px;
		text-align: left;
	}
}
@media (max-width: 575px)
{
	.addCommentFormCD .innerWrapper form .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.addCommentFormCD .innerWrapper form textarea[name="offerCommentTextPlus"],
	.addCommentFormCD .innerWrapper form textarea[name="offerCommentTextMinus"]
	{
		height: 60px;
	}
	.addCommentFormCD.siteComment .innerWrapper form textarea[name="siteCommentText"]
	{
		height: 100px;
	}

	.addCommentFormCD .innerWrapper form .btn_wrap,
	.addCommentFormCD.siteComment .innerWrapper form .btn_wrap
	{
		margin-top: 15px;
	}
}
@media (max-width: 440px)
{
	.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock > span
	{
		display: block;
		margin-right: 0;
		margin-bottom: 10px;
		width: 100%;
	}
	.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button
	{
		margin-left: 0;
		margin-right: 15px;
	}
}

@media (max-width: 380px)
{
	.commentListCD .commentItem .innerWrapper .dateCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 10px;
		text-align: left;
	}
}


/************************************************************************************/
/*** siteCommentCD ***/
/*************************************************************************************/

.siteCommentCD
{
}

/*****/

.siteCommentCD .titleAndRatingRow
{
	align-items: center;
}
/**/
.siteCommentCD .titleAndRatingRow .titleAndWriteCol
{
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.siteCommentCD .titleAndRatingRow .titleAndWriteCol .title
{
	margin-right: 20px;
	margin-bottom: 0;
	line-height: 2.4rem;
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color_1);
}

.siteCommentCD .titleAndRatingRow .titleAndWriteCol .writeReview
{
}
.siteCommentCD .titleAndRatingRow .titleAndWriteCol .writeReview a
{
	height: 32px;
	font-size: 1.2rem;
	text-transform: uppercase;
}

/**/
.siteCommentCD .titleAndRatingRow .siteRatingCol
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;

	-ms-flex: 0 0 230px;
	flex: 0 0 230px;
	max-width: 230px;
}
.siteCommentCD .titleAndRatingRow .siteRatingCol .siteRating
{
	margin-right: 5px;
	line-height: 1.9rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color_10);
}

/**********/

@media (max-width: 575px)
{
	.siteCommentCD .titleAndRatingRow .siteRatingCol
	{
		justify-content: flex-start;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 15px;
	}
}
@media (max-width: 400px)
{
	.siteCommentCD .titleAndRatingRow .titleAndWriteCol .title
	{
		margin-right: 10px;
	}
}


/***********************************************************************/
/***********************************************************************/

.share
{
	display: flex;
	justify-content: flex-start;
	align-items:center;
}
.share span
{
	margin-right: 30px;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--color_2);
}
.share a
{
	display: inline-block;
	margin-right: 15px;
	line-height: 2.4rem;
	font-size: 1.8rem;
	text-align: center;
	color: var(--color_colorScheme);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.share a:last-of-type
{
	margin-right: 0;
}
.share a span
{
	display: none;
}

/*************************************/
/*************************************/

#ajaxAddAnswerForOfferCommentFormHide,
#ajaxAddAnswerForSiteCommentFormHide
{
	display: none !important;
}

/*************************************/
/*************************************/

#buttonUp
{
	position: fixed;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	right: 25px;
	bottom: 125px;
	padding-top: 3px;
	width: 52px;
	height: 52px;
	line-height: 1;
	font-size: 3rem;
	text-align: center;
	color: var(--color_1);
	-webkit-transition: all 0.35s ease-in-out 0s;
	-moz-transition: all 0.35s ease-in-out 0s;
	-ms-transition: all 0.35s ease-in-out 0s;
	-o-transition: all 0.35s ease-in-out 0s;
	transition: all 0.35s ease-in-out 0s;
	opacity: 0;
	z-index: 100;
	cursor: pointer;
}
#buttonUp:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
#buttonUp i
{
	position: relative;
	top: -5px;
	line-height: 1;
}

@media (max-width: 767px)
{
	#buttonUp
	{
		right: 5px;
		bottom: 65px;
		width: 40px;
		height: 40px;
		font-size: 2rem;
	}

	#buttonUp i
	{
		top: -3px;
	}
}

/************************************************************************************/
/*** SUBSCRIBE ***/
/*************************************************************************************/

.el_subscribeBlock_ZeJrAwu4
{
}
.el_subscribeBlock_ZeJrAwu4 .row
{
	align-items: center;
}
.el_subscribeBlock_ZeJrAwu4 .titleCol
{
}
.el_subscribeBlock_ZeJrAwu4 .titleCol .title
{
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_1);
}
/**/
.el_subscribeBlock_ZeJrAwu4 .inputCol
{
}
.el_subscribeBlock_ZeJrAwu4 .inputCol .input_wrapper
{
	margin-bottom: 0;
}
/**/
.el_subscribeBlock_ZeJrAwu4 .btnCol
{
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}
.el_subscribeBlock_ZeJrAwu4 .btnCol .btn
{
	width: 100%;
}

/**********/

@media (max-width: 1200px)
{
	.el_subscribeBlock_ZeJrAwu4 .titleCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 30px;
	}
	.el_subscribeBlock_ZeJrAwu4 .btnCol
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 520px)
{
	.el_subscribeBlock_ZeJrAwu4 .inputCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}
	.el_subscribeBlock_ZeJrAwu4 .btnCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/************************************************************************************/

.bottomTextBlock .staticText
{
	position: relative;
	max-height: 110px;
	overflow: hidden;
}
.bottomTextBlock .staticText.showed
{
	max-height: 100%;
	overflow: hidden;
}
.bottomTextBlock .staticText.wl:after
{
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	width: 100%;
	height: 30px;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}
.bottomTextBlock .staticText.wl.showed:after
{
	display: none;
}
.bottomTextBlock .linkLine
{
	margin-top: 15px;
}
.bottomTextBlock .linkLine a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 5px;
}

/************************************************************************************/
/*** FOOTER ***/
/*************************************************************************************/

footer.footerCD
{
	border-top: 1px solid var(--color_2_15);
	background-color: var(--color_gray);
}

footer.footerCD.bgLight
{
	border-color: var(--color_gray);
	background-color: var(--color_white);
}
footer.footerCD.bgGray
{
	border-color: var(--color_2_15);
	background-color: var(--color_gray);
}
footer.footerCD.bgColorScheme
{
	border-color: var(--color_gray_15);
	background-color: var(--color_colorScheme);
}
footer.footerCD.bgDark
{
	border-color: var(--color_gray_15);
	background-color: var(--color_dark);
}

/**********/

.footerTopType1
{
	padding: 60px 0 30px 0;
}
.footerTopType1 .col
{
	margin-bottom: 30px;
}

/***/

.footerTopType1 .logoCol
{
}
.footerTopType1 .logoBlock
{
	max-width: 200px;
}
.footerTopType1 .logoBlock .logo
{
	display: block;
	max-width: 220px;
	max-height: 200px;
}
.footerTopType1 .logoBlock .logo img
{
	max-width: 100%;
	max-height: inherit;
}
/**/

.footerTopType1 .cardsBlock
{
	margin-top: 25px;
}
.footerTopType1 .cardsBlock .note
{
	line-height: 1.7rem;
	font-size: 1.4rem;
	font-weight: normal;
	color: var(--color_1);
}
.footerTopType1 .cardsBlock .note
{
	line-height: 1.7rem;
	font-size: 1.4rem;
	font-weight: normal;
	color: var(--color_1);
}
.bgColorScheme .footerTopType1 .cardsBlock .note,
.bgDark .footerTopType1 .cardsBlock .note
{
	color: var(--color_white);
	opacity: 0.7;
}

.footerTopType1 .cardsBlock .cardsList
{
	align-items: center;
}
.footerTopType1 .cardsBlock .cardsList .cardsListItem
{
	-ms-flex: 0 0 45px;
	flex: 0 0 45px;
	max-width: 45px;

	margin-top: 10px;
	margin-right: 5px;
}
.footerTopType1 .cardsBlock .cardsList .cardsListItem .img_wrap
{
	padding-bottom: 62.22%;
}
.footerTopType1 .cardsBlock .cardsList .cardsListItem img
{
}
/**/
.footerTopType1 .copyright
{
	margin-top: 25px;
	line-height: 2rem;
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--color_2);
}
.footerTopType1 .copyright a
{
	color: var(--color_2);
}

/***/

.footerTopType1 .itemCol
{
}

.footerTopType1 .itemTitle
{
	margin-bottom: 10px;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color_colorScheme);
}
.footerTopType1 .itemTitle.contacts
{
	margin-bottom: 16px;
}
.bgColorScheme .footerTopType1 .itemTitle,
.bgDark .footerTopType1 .itemTitle
{
	color: var(--color_white);
}

.footerTopType1 .itemTitle .toggleBtn
{
	position: relative;
	display: none;
	margin-left: 10px;
	width: 25px;
	height: 25px;
	font-size: 25px;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.footerTopType1 .itemTitle .toggleBtn::before,
.footerTopType1 .itemTitle .toggleBtn::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_colorScheme);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.bgColorScheme .footerTopType1 .itemTitle .toggleBtn::before,
.bgDark .footerTopType1 .itemTitle .toggleBtn::before,
.bgColorScheme .footerTopType1 .itemTitle .toggleBtn::after,
.bgDark .footerTopType1 .itemTitle .toggleBtn::after
{
	background-color: var(--color_white);
}
.footerTopType1 .itemTitle .toggleBtn::before
{
	width: 15px;
	height: 2px;
}
.footerTopType1 .itemTitle .toggleBtn::after
{
	width: 2px;
	height: 15px;
}
.footerTopType1 .itemTitle .toggleBtn.open:after
{
	display: none;
}

/***/

.footerTopType1 .itemContent
{
}
.footerTopType1 .itemContent ul
{
}
.footerTopType1 .itemContent ul li
{
}
.footerTopType1 .itemContent ul li a
{
	display: inline-block;
	padding: 10px 0;
	line-height: 1.7rem;
	font-size: 1.4rem;
	color: var(--color_1);
}
.bgColorScheme .itemContent ul li a,
.bgDark .itemContent ul li a
{
	color: var(--color_white);
}
.footerTopType1 .itemContent ul li a:hover,
.footerTopType1 .itemContent ul li a:focus,
.footerTopType1 .itemContent ul li a.active
{
	color: var(--color_colorScheme);
}
/*.footerTopType1 .itemContent ul li a:focus*/
/*{*/
/*	outline: 1px solid var(--color_colorScheme);*/
/*}*/
.bgColorScheme .itemContent ul li a:hover,
.bgColorScheme .itemContent ul li a.active,
.bgDark .itemContent ul li a:hover,
.bgDark .itemContent ul li a.active
{
	color: var(--color_white);
	opacity: 0.7;
}
/*.bgColorScheme .itemContent ul li a:focus,*/
/*.bgDark .itemContent ul li a:focus*/
/*{*/
/*	outline: 1px dashed var(--color_white);*/
/*	color: var(--color_white);*/
/*	opacity: 0.7;*/
/*}*/

/***/

.footerTopType1 .itemContent .contactsItem
{
	margin-top: 20px;
}
.footerTopType1 .itemContent .contactsItem:first-child
{
	margin-top: 0;
}
.footerTopType1 .itemContent .contactsItem .link
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	margin-top: 3px;
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color_1);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem .link,
.bgDark .footerTopType1 .itemContent .contactsItem .link
{
	color: var(--color_white);
}

.footerTopType1 .itemContent .contactsItem .link:first-child
{
	margin-top: 0;
}
.footerTopType1 .itemContent .contactsItem .link a
{
	display: inline-block;
	line-height: 2rem;
	color: var(--color_1);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem .link a,
.bgDark .footerTopType1 .itemContent .contactsItem .link a
{
	color: var(--color_white);
}
.footerTopType1 .itemContent .contactsItem.telList .link a
{
	line-height: 2.4rem;
	font-size: 1.8rem;
}
.footerTopType1 .itemContent .contactsItem.emailList .link a
{
	color: var(--color_colorScheme);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem.emailList .link a,
.bgDark .footerTopType1 .itemContent .contactsItem.emailList .link a
{
	color: var(--color_white);
}
.footerTopType1 .itemContent .contactsItem .link a:hover
{
	color: var(--color_colorScheme);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem .link a:hover,
.bgDark .footerTopType1 .itemContent .contactsItem .link a:hover
{
	color: var(--color_white);
	opacity: 0.7;
}
.footerTopType1 .itemContent .contactsItem.emailList .link a:hover
{
	color: var(--color_1);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem.emailList .link a:hover,
.bgDark .footerTopType1 .itemContent .contactsItem.emailList .link a:hover
{
	color: var(--color_white);
	opacity: 0.7;
}
.footerTopType1 .itemContent .contactsItem.emailList .link .title
{
	margin-right: 5px;
}
.footerTopType1 .itemContent .contactsItem .ico
{
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	max-width: 24px;
	margin-right: 5px;
}
.footerTopType1 .itemContent .contactsItem .ico svg
{
}
.footerTopType1 .itemContent .contactsItem .ico svg path
{
	stroke: var(--color_colorScheme);
}
.footerTopType1 .itemContent .contactsItem .ico svg path.map-pin-center
{
	fill: var(--color_colorScheme);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem .ico svg path,
.bgDark .footerTopType1 .itemContent .contactsItem .ico svg path
{
	stroke: var(--color_white);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem .ico svg path.map-pin-center,
.bgDark .footerTopType1 .itemContent .contactsItem .ico svg path.map-pin-center
{
	fill: var(--color_white);
}

/**/

.footerTopType1 .itemContent .contactsItem .title
{
	display: inline-block;
	line-height: 2.4rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color_1);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem .title,
.bgDark .footerTopType1 .itemContent .contactsItem .title
{
	color: var(--color_white);
}

.footerTopType1 .itemContent .contactsItem .wrapper
{
	display: -ms-flex;
	display: flex;

	line-height: 2rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color_1);
}
.bgColorScheme .footerTopType1 .itemContent .contactsItem .wrapper,
.bgDark .footerTopType1 .itemContent .contactsItem .wrapper
{
	color: var(--color_white);
}
.footerTopType1 .itemContent .contactsItem .text
{
	font-weight: 300;
}

/******************************/

.footerBottomType1
{
	border-top: 1px solid var(--color_4);
}
.bgColorScheme .footerBottomType1,
.bgDark .footerBottomType1
{
	border-color: var(--color_4_15);
}
.footerBottomType1 .row
{
	height: 64px;
	align-items: center;
}

/***/

.footerBottomType1 .systemCol
{
}
.footerBottomType1 .systemBlock
{
}
.footerBottomType1 .systemBlock .text
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	line-height: 1.7rem;
	font-size: 1.4rem;
	font-weight: normal;
	color: var(--color_1);
	text-align: left;
}
.bgColorScheme .footerBottomType1 .systemBlock .text,
.bgDark .footerBottomType1 .systemBlock .text
{
	color: var(--color_white);
}
.footerBottomType1 .systemBlock .text .imgBlock
{
	margin-right: 5px;
}
.footerBottomType1 .systemBlock .text .imgBlock img
{
	max-width: 31px;
	max-height: 31px;
}
.footerBottomType1 .systemBlock .text a
{
	color: var(--color_colorScheme);
}
.bgColorScheme .footerBottomType1 .systemBlock .text a,
.bgDark .footerBottomType1 .systemBlock .text a
{
	color: var(--color_white);
}
.footerBottomType1 .systemBlock .text a:hover
{
	color: var(--color_1);
}
.bgColorScheme .footerBottomType1 .systemBlock .text a:hover,
.bgDark .footerBottomType1 .systemBlock .text a:hover
{
	color: var(--color_white);
	opacity: 0.7;
}

/***/

.footerBottomType1 .socialNetworkCol
{
	text-align: right;
}
.footerBottomType1 .socialNetworkBlock
{
	display: inline-block;
}
.footerBottomType1 .socialNetworkBlock .socialNetworkList
{
}
.footerBottomType1 .socialNetworkBlock .socialNetworkList li
{
	border-left: 1px solid var(--color_4);
	margin: 0;
	width: 63px;
	height: 63px;
}
.bgColorScheme .footerBottomType1 .socialNetworkBlock .socialNetworkList li,
.bgDark .footerBottomType1 .socialNetworkBlock .socialNetworkList li
{
	border-color: var(--color_4_15);
}
.footerBottomType1 .socialNetworkBlock .socialNetworkList li:last-child
{
	border-right: 1px solid var(--color_4);
}
.bgColorScheme .footerBottomType1 .socialNetworkBlock .socialNetworkList li:last-child,
.bgDark .footerBottomType1 .socialNetworkBlock .socialNetworkList li:last-child
{
	border-color: var(--color_4_15);
}

/******************************/

.addInformationImagesBlock
{
	border-top: 1px solid var(--color_4);
	padding: 30px 0;
}
.bgColorScheme .addInformationImagesBlock,
.bgDark .addInformationImagesBlock
{
	border-color: var(--color_4_15);
}

.addInformationImagesBlock .title
{
	margin-bottom: 15px;
	line-height: 1.4;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	color: var(--color_1);
}
.bgColorScheme .addInformationImagesBlock .title,
.bgDark .addInformationImagesBlock .title
{
	color: var(--color_white);
}

.addInformationImagesBlock .addInformationImagesList
{
	text-align: center;
}
.addInformationImagesBlock .addInformationImagesList .imageListItem
{
	display: inline-block;
	margin: 5px;
	max-height: 100px;
}
.addInformationImagesBlock .addInformationImagesList .imageListItem img
{
	max-width: 100%;
	max-height: inherit;
}

/**********/

@media (max-width: 1200px)
{
	.footerTopType1 .logoCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 991px)
{
	.footerTopType1 .logoCol
	{
		text-align: center;
	}
	.footerTopType1 .logoBlock
	{
		margin: 0 auto;
	}

	.footerTopType1 .cardsBlock .cardsList
	{
		justify-content: center;
	}

	.footerTopType1 .itemCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 15px;
	}

	.footerTopType1 .itemTitle
	{
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid var(--color_4);
		margin-bottom: 15px;
		padding-bottom: 10px;
	}
	.bgColorScheme .footerTopType1 .itemTitle,
	.bgDark .footerTopType1 .itemTitle
	{
		border-bottom: 1px solid var(--color_4_15);
	}
	.footerTopType1 .itemTitle .toggleBtn
	{
		display: inline-block;
	}

	.footerTopType1 .itemContent
	{
		display: none;
	}
	.footerTopType1 .itemContent.open
	{
		display: block;
		margin-bottom: 30px;
	}
	.footerTopType1 .itemContent ul li
	{
		border-bottom: 1px solid var(--color_4);
	}
	.bgColorScheme .footerTopType1 .itemContent ul li,
	.bgDark .footerTopType1 .itemContent ul li
	{
		border-bottom: 1px solid var(--color_4_15);
	}
}

@media (max-width: 767px)
{
	.footerBottomType1 .row
	{
		height: auto;
	}
	.footerBottomType1 .systemCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding-top: 15px;
		padding-bottom: 15px;
		text-align: center;
		order: 2;
	}
	.footerBottomType1 .socialNetworkCol
	{
		text-align: center;
		order: 1;
	}
	.footerBottomType1 .systemBlock .text
	{
		margin: 0 auto;
	}

	.footerBottomType1 .socialNetworkBlock .socialNetworkList li
	{
		border-bottom: 1px solid var(--color_4);
	}
}

/************************************************************************************/
/*** fixedPanel ***/
/*************************************************************************************/

.fixedPanelBlock
{
	height:  0;
	overflow: hidden;
}
.fixedPanelBlock.fixed
{
	height:  57px;
	overflow: unset;
}
.fixedPanel
{
	position: fixed;
	background-color: var(--color_white);
	box-shadow: 0 0 5px var(--color_1_50);
	left: 0;
	bottom: -100%;
	width: 100%;
	height: 57px;
	z-index: 590;
	-webkit-transition: bottom 0.5s ease;
	-moz-transition: bottom 0.5s ease;
	-ms-transition: bottom 0.5s ease;
	-o-transition: bottom 0.5s ease;
	transition: bottom 0.5s ease;
}
.fixedPanelBlock.fixed .fixedPanel
{
	bottom: 0;
}
.fixedPanel.light
{
	background-color: var(--color_white);
}
.fixedPanel.bgGray
{
	background-color: var(--color_gray);
}
.fixedPanel.bgColorScheme
{
	background-color: var(--color_colorScheme);
}
.fixedPanel.bgDark
{
	background-color: var(--color_dark);
}

/***/

.fixedPanel > div
{
	height: 100%;
}
.fixedPanel .row
{
	align-items: center;
	height: 100%;
}

/***/

.fixedPanel .row .item
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
/**/
.fixedPanel .ccBtnCol
{
}
.fixedPanel .ccBtnCol .contactCenterBtn
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	border: none;
	background-color: transparent;

	line-height: 1.9rem;
	font-size: 1.6rem;
	color: var(--color_1);
	cursor: pointer;
}
.fixedPanel.bgColorScheme .ccBtnCol .contactCenterBtn,
.fixedPanel.bgDark .ccBtnCol .contactCenterBtn
{
	color: var(--color_white);
}

.fixedPanel .ccBtnCol .contactCenterBtn span
{
}
.fixedPanel .ccBtnCol .contactCenterBtn:hover span
{
	color: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .ccBtnCol .contactCenterBtn:hover span,
.fixedPanel.bgDark .ccBtnCol .contactCenterBtn:hover span
{
	color: var(--color_white);
	opacity: 0.7;
}

/***/

.fixedPanel .ccBtnCol .contactCenterBtn .ico,
.fixedPanel .toggleWrapper .toggleTitle .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	width: 42px;
	height: 42px;
	cursor: pointer;
}
/**/
.fixedPanel .ccBtnCol .contactCenterBtn .ico.v1 svg,
.fixedPanel .toggleWrapper .toggleTitle .ico.v1 svg
{
	width: 38px;
	height: 39px;
}
.fixedPanel .ccBtnCol .contactCenterBtn .ico.v1 svg path,
.fixedPanel .toggleWrapper .toggleTitle .ico.v1 svg path
{
	stroke: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .ccBtnCol .contactCenterBtn .ico.v1 svg path,
.fixedPanel.bgDark .ccBtnCol .contactCenterBtn .ico.v1 svg path,
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle .ico.v1 svg path,
.fixedPanel.bgDark .toggleWrapper .toggleTitle .ico.v1 svg path
{
	stroke: var(--color_white);
}
/**/
.fixedPanel .ccBtnCol .contactCenterBtn .ico.v2,
.fixedPanel .toggleWrapper .toggleTitle .ico.v2
{
	border-radius: 100%;
	border: 1px solid var(--color_11);
	background-color: transparent;
	padding: 0;
}
.fixedPanel .ccBtnCol .contactCenterBtn .ico.v2:hover,
.fixedPanel .ccBtnCol .contactCenterBtn .ico.v2.active,
.fixedPanel .toggleWrapper .toggleTitle .ico.v2:hover,
.fixedPanel .toggleWrapper .toggleTitle .ico.v2.active
{
	border: 1px solid var(--color_colorScheme);
}
.fixedPanel.bgGray .ccBtnCol .contactCenterBtn .ico.v2,
.fixedPanel.bgGray .toggleWrapper .toggleTitle .ico.v2
{
	border: 1px solid var(--color_2);
}
.fixedPanel.bgGray .ccBtnCol .contactCenterBtn:hover .ico.v2,
.fixedPanel.bgGray .ccBtnCol .contactCenterBtn.active .ico.v2,
.fixedPanel.bgGray .toggleWrapper .toggleTitle:hover .ico.v2,
.fixedPanel.bgGray .toggleWrapper .toggleTitle.active .ico.v2
{
	border: 1px solid var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .ccBtnCol .contactCenterBtn .ico.v2,
.fixedPanel.bgDark .ccBtnCol .contactCenterBtn .ico.v2,
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle .ico.v2,
.fixedPanel.bgDark .toggleWrapper .toggleTitle .ico.v2
{
	border: 1px solid var(--color_11_25);
}
.fixedPanel.bgColorScheme .ccBtnCol .contactCenterBtn:hover .ico.v2,
.fixedPanel.bgColorScheme .ccBtnCol .contactCenterBtn.active .ico.v2,
.fixedPanel.bgDark .ccBtnCol .contactCenterBtn:hover .ico.v2,
.fixedPanel.bgDark .ccBtnCol .contactCenterBtn.active .ico.v2,
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle:hover .ico.v2,
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle.active .ico.v2,
.fixedPanel.bgDark .toggleWrapper .toggleTitle:hover .ico.v2,
.fixedPanel.bgDark .toggleWrapper .toggleTitle.active .ico.v2
{
	border: 1px solid var(--color_white);
}
.fixedPanel .ccBtnCol .contactCenterBtn .ico.v2 svg,
.fixedPanel .toggleWrapper .toggleTitle .ico.v2 svg
{
}
.fixedPanel .ccBtnCol .contactCenterBtn .ico.v2 svg path,
.fixedPanel .toggleWrapper .toggleTitle .ico.v2 svg path
{
	stroke: var(--color_colorScheme);
}
.fixedPanel .ccBtnCol .contactCenterBtn:hover .ico.v2 svg path,
.fixedPanel .toggleWrapper .toggleTitle:hover .ico.v2 svg path
{
	stroke: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .ccBtnCol .contactCenterBtn .ico.v2 svg path,
.fixedPanel.bgDark .ccBtnCol .contactCenterBtn .ico.v2 svg path,
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle .ico.v2 svg path,
.fixedPanel.bgDark .toggleWrapper .toggleTitle .ico.v2 svg path
{
	stroke: var(--color_white);
}

/*****/

.fixedPanel .toggleWrapper
{
	position: relative;
	height: 100%;
}
.fixedPanel .toggleWrapper .toggleTitle
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.fixedPanel .toggleWrapper .toggleTitle .ico
{
	display: none;
}
.fixedPanel .toggleWrapper .toggleTitle a
{
	display: inline-block;
	line-height: 1.9rem;
	font-size: 1.6rem;
	color: var(--color_1);
}
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle a,
.fixedPanel.bgDark .toggleWrapper .toggleTitle a
{
	color: var(--color_white);
}
.fixedPanel .toggleWrapper .toggleTitle a:hover,
.fixedPanel .toggleWrapper .toggleTitle a.active
{
	color: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle a:hover,
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle a.active,
.fixedPanel.bgDark .toggleWrapper .toggleTitle a:hover,
.fixedPanel.bgDark .toggleWrapper .toggleTitle a.active
{
	color: var(--color_white);
	opacity: 0.7;
}

.fixedPanel .toggleWrapper .toggleTitle .toggleBtn
{
	display: inline-block;
	margin-left: 5px;
	color: var(--color_1);
	cursor: pointer;
}
.fixedPanel.bgColorScheme .toggleWrapper .toggleTitle .toggleBtn,
.fixedPanel.bgDark .toggleWrapper .toggleTitle .toggleBtn
{
	color: var(--color_white);
}
.fixedPanel .toggleWrapper .toggleTitle .toggleBtn::before
{
	display: inline-block;
	content: "\f107";
	font-family: "FontAwesome";
}
.fixedPanel .toggleWrapper .toggleTitle .toggleBtn.open::before
{
	content: "\f106";
}
.fixedPanel .toggleWrapper .toggleBlock
{
	display: none;
	position: absolute;
	background-color: var(--color_white);
	bottom: 100%;
	left: -15px;
	padding: 10px 15px;
	min-width: 210px;
	box-shadow: 0 0 3px rgba(0,0,0, 0.3);
	text-align: left;
	z-index: 50;
}
.fixedPanel.bgLight .toggleWrapper .toggleBlock
{
	background-color: var(--color_white);
}
.fixedPanel.bgGray .toggleWrapper .toggleBlock
{
	background-color: var(--color_gray);
}
.fixedPanel.bgColorScheme .toggleWrapper .toggleBlock
{
	background-color: var(--color_colorScheme);
}
.fixedPanel.bgDark .toggleWrapper .toggleBlock
{
	background-color: var(--color_dark);
}
.fixedPanel .toggleWrapper .toggleBlock.open
{
	display: block;
}
.fixedPanel .toggleWrapper .toggleBlock ul
{
	padding: 0;
}
.fixedPanel .toggleWrapper .toggleBlock ul li
{
	display: block;
	margin: 0;
	padding: 0;
	text-align: left;
}
.fixedPanel .toggleWrapper .toggleBlock.phoneToggleBlock ul li.ccLink
{
	display: none;
}
.fixedPanel .toggleWrapper .toggleBlock ul li a,
.fixedPanel .toggleWrapper .toggleBlock ul li span
{
	display: block;
	padding: 5px 0;
	font-family: var(--font-family-1);
	line-height: 1.9rem;
	font-size: 1.6rem;
	color: var(--color_1);
}
.fixedPanel.bgColorScheme .toggleWrapper .toggleBlock ul li a,
.fixedPanel.bgColorScheme .toggleWrapper .toggleBlock ul li span,
.fixedPanel.bgDark .toggleWrapper .toggleBlock ul li a,
.fixedPanel.bgDark .toggleWrapper .toggleBlock ul li span
{
	color: var(--color_white);
}
.fixedPanel .toggleWrapper .toggleBlock ul li a:hover,
.fixedPanel .toggleWrapper .toggleBlock ul li a.active,
.fixedPanel .toggleWrapper .toggleBlock ul li span
{
	color: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .toggleWrapper .toggleBlock ul li a:hover,
.fixedPanel.bgColorScheme .toggleWrapper .toggleBlock ul li a.active,
.fixedPanel.bgColorScheme .toggleWrapper .toggleBlock ul li span,
.fixedPanel.bgDark .toggleWrapper .toggleBlock ul li a:hover,
.fixedPanel.bgDark .toggleWrapper .toggleBlock ul li a.active,
.fixedPanel.bgDark .toggleWrapper .toggleBlock ul li span
{
	color: var(--color_white);
	opacity: 0.7;
}

/*****/

.fixedPanel .row .item.profileBtnCol
{
	display: none;
}
.fixedPanel .profileBtnCol .profileBtn
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	border: none;
	background-color: transparent;

	line-height: 1.9rem;
	font-size: 1.6rem;
	color: var(--color_1);
	cursor: pointer;
}
.fixedPanel.bgColorScheme .profileBtnCol .profileBtn,
.fixedPanel.bgDark .profileBtnCol .profileBtn
{
	color: var(--color_white);
}

.fixedPanel .profileBtnCol .profileBtn .ico
{
	font-size: 3.4rem;
	color: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .profileBtnCol .profileBtn .ico,
.fixedPanel.bgDark .profileBtnCol .profileBtn .ico
{
	color: var(--color_white);
}

.fixedPanel .profileBtnCol .profileBtn span
{
}
.fixedPanel .profileBtnCol .profileBtn:hover span
{
	color: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .profileBtnCol .profileBtn:hover span,
.fixedPanel.bgDark .profileBtnCol .profileBtn:hover span
{
	color: var(--color_white);
	opacity: 0.7;
}

/** btnCol v1 **/

.fixedPanel .btnCol.v1
{
}
.fixedPanel .btnCol.v1.cartBlock
{
}

@media (min-width: 992px)
{
	.fixedPanel .btnCol.v1
	{
		-ms-flex: 0 0 170px;
		flex: 0 0 170px;
		max-width: 170px;
	}
	.fixedPanel .btnCol.v1.cartBlock
	{
		-ms-flex: 0 0 210px;
		flex: 0 0 210px;
		max-width: 210px;
	}
}

.fixedPanel .btnCol.v1 .itemBtn
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.fixedPanel .btnCol.v1 .itemBtn .ico
{
	display: block;
	width: 42px;
	height: 42px;
}
.fixedPanel .btnCol.v1 .itemBtn .ico svg
{
}
.fixedPanel .btnCol.v1 .itemBtn .ico svg path
{
}
/**/
.fixedPanel .btnCol.v1 .itemBtn.wishlistBtn .ico svg path
{
	stroke: var(--color_1_25);
}
.fixedPanel .btnCol.v1 .itemBtn.wishlistBtn.active .ico svg path
{
	stroke: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn.wishlistBtn .ico svg path,
.fixedPanel.bgDark .btnCol.v1 .itemBtn.wishlistBtn .ico svg path
{
	stroke: var(--color_white_50);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn.wishlistBtn.active .ico svg path,
.fixedPanel.bgDark .btnCol.v1 .itemBtn.wishlistBtn.active .ico svg path
{
	stroke: var(--color_white);
}
/**/
.fixedPanel .btnCol.v1 .itemBtn.compareBtn .ico svg path
{
	fill: var(--color_1_25);
}
.fixedPanel .btnCol.v1 .itemBtn.compareBtn.active .ico svg path
{
	fill: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn.compareBtn .ico svg path,
.fixedPanel.bgDark .btnCol.v1 .itemBtn.compareBtn .ico svg path
{
	fill: var(--color_white_50);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn.compareBtn.active .ico svg path,
.fixedPanel.bgDark .btnCol.v1 .itemBtn.compareBtn.active .ico svg path
{
	fill: var(--color_white);
}
/**/
.fixedPanel .btnCol.v1 .itemBtn.cartBtn .ico svg path
{
	fill: var(--color_1_25);
}
.fixedPanel .btnCol.v1 .itemBtn.cartBtn.active .ico svg path
{
	fill: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn.cartBtn .ico svg path,
.fixedPanel.bgDark .btnCol.v1 .itemBtn.cartBtn .ico svg path
{
	fill: var(--color_white_50);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn.cartBtn.active .ico svg path,
.fixedPanel.bgDark .btnCol.v1 .itemBtn.cartBtn.active .ico svg path
{
	fill: var(--color_white);
}
/**/
.fixedPanel .btnCol.v1 .itemBtn .info
{
	padding-left: 10px;
}
.fixedPanel .btnCol.v1 .itemBtn .info .title
{
	position: relative;
	display: block;
	line-height: 1.9rem;
	font-size: 1.6rem;
	color: var(--color_1);
}
.fixedPanel .btnCol.v1 .itemBtn:hover .info .title
{
	color: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn .info .title,
.fixedPanel.bgDark .btnCol.v1 .itemBtn .info .title
{
	color: var(--color_white);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn:hover .info .title,
.fixedPanel.bgDark .btnCol.v1 .itemBtn:hover .info .title
{
	color: var(--color_white);
	opacity: 0.7;
}
.fixedPanel .btnCol.v1.cartBlock .itemBtn .info .title
{
	padding-right: 25px;
}
.fixedPanel .btnCol.v1 .itemBtn .info .title .amount
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	background-color: var(--color_white_50);
	top: 2px;
	right: 0;
	padding: 3px 3px;
	min-width: 18px;
	height: 18px;
	font-size: 1rem;
	color: var(--color_white);
}
.fixedPanel .btnCol.v1 .itemBtn.active .info .title .amount
{
	background-color: var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn.active .info .title .amount
{
	background-color: var(--color_3);
}
.fixedPanel .btnCol.v1 .itemBtn .info .subTitle
{
	display: block;
	line-height: 1.6rem;
	font-size: 1.3rem;
	color: var(--color_1);
}
.fixedPanel.bgDark .btnCol.v1 .itemBtn .info .subTitle,
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn .info .subTitle
{
	color: var(--color_white);
}
.fixedPanel .btnCol.v1 .itemBtn .info .subTitle.noProducts
{
	color: var(--color_1_50);
}
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn .info .subTitle.noProducts,
.fixedPanel.bgDark .btnCol.v1 .itemBtn .info .subTitle.noProducts
{
	color: var(--color_white_50);
}

.fixedPanel .btnCol.v1 .itemBtn.cartBtn .info .amount2
{
	display: none;
	line-height: 1.6rem;
	font-size: 1.3rem;
	color: var(--color_1);
}
.fixedPanel.bgDark .btnCol.v1 .itemBtn .info .amount2,
.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn .info .amount2
{
	color: var(--color_white);
}

/**********/
/**********/

.fixedPanel .btnCol.v2
{
}
.fixedPanel .btnCol.v2.cartBlock
{
}

@media (min-width: 992px)
{
	.fixedPanel .btnCol.v2
	{
		-ms-flex: 0 0 82px;
		flex: 0 0 82px;
		max-width: 82px;
	}
	.fixedPanel .btnCol.v2.cartBlock
	{
		-ms-flex: 0 0 250px;
		flex: 0 0 250px;
		max-width: 250px;
	}
}

.fixedPanel .btnCol.v2 .itemBtn
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid var(--color_11);
	background-color: transparent;
	margin: 0;
	padding: 0;
	width: 42px;
	height: 42px;
	color: var(--color_1);
}
.fixedPanel .btnCol.v2 .itemBtn:hover
{
	border: 1px solid var(--color_colorScheme);
}

.fixedPanel.bgGray .btnCol.v2 .itemBtn
{
	border: 1px solid var(--color_2);
	color: var(--color_1);
}
.fixedPanel.bgGray .btnCol.v2 .itemBtn:hover
{
	border: 1px solid var(--color_colorScheme);
}
.fixedPanel.bgColorScheme .btnCol.v2 .itemBtn,
.fixedPanel.bgDark .btnCol.v2 .itemBtn
{
	border: 1px solid var(--color_11_25);
	color: var(--color_white);
}
.fixedPanel.bgColorScheme .btnCol.v2 .itemBtn:hover,
.fixedPanel.bgDark .btnCol.v2 .itemBtn:hover
{
	border: 1px solid var(--color_white);
}

.fixedPanel .btnCol.v2 .itemBtn.cartBtn
{
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	border-radius: 30px;
	padding: 0 15px;
	width: 100%;
	color: var(--color_white);
}
.fixedPanel.bgColorScheme .btnCol.v2 .itemBtn.cartBtn
{
	border: 1px solid var(--color_11_25);
}
.fixedPanel.bgColorScheme .btnCol.v2 .itemBtn.cartBtn:hover
{
	border: 1px solid var(--color_white);
}

.fixedPanel .btnCol.v2 .itemBtn.cartBtn:hover
{
	position: relative;
	z-index: 1;
}
.fixedPanel .btnCol.v2 .itemBtn.cartBtn:hover::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 30px;
	background-color: var(--color_black_10);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.fixedPanel .btnCol.v2 .itemBtn .ico
{
	position: relative;
	display: inline-block;
}
.fixedPanel .btnCol.v2 .itemBtn .ico svg
{
	width: 24px;
	height: 24px;
	opacity: 0.5;
}
.fixedPanel .btnCol.v2 .itemBtn.active .ico svg,
.fixedPanel .btnCol.v2 .itemBtn:hover .ico svg
{
	opacity: 1;
}
.fixedPanel .btnCol.v2 .itemBtn.cartBtn .ico svg
{
	width: 20px;
	height: 24px;
}
.fixedPanel .btnCol.v2 .itemBtn .ico svg path
{
	stroke: var(--color_2_50);
}
.fixedPanel .btnCol.v2 .itemBtn.active .ico svg path,
.fixedPanel .btnCol.v2 .itemBtn:hover .ico svg path
{
	stroke: var(--color_colorScheme);
}

.fixedPanel .btnCol.v2 .itemBtn.cartBtn .ico svg path
{
	stroke: var(--color_white_50);
}
.fixedPanel .btnCol.v2 .itemBtn.cartBtn.active .ico svg path,
.fixedPanel .btnCol.v2 .itemBtn.cartBtn:hover .ico svg path
{
	stroke: var(--color_white);
}

.fixedPanel.bgColorScheme .btnCol.v2 .itemBtn.wishlistBtn.active .ico svg path,
.fixedPanel.bgColorScheme .btnCol.v2 .itemBtn.wishlistBtn:hover .ico svg path,
.fixedPanel.bgDark .btnCol.v2 .itemBtn.wishlistBtn.active .ico svg path,
.fixedPanel.bgDark .btnCol.v2 .itemBtn.wishlistBtn:hover .ico svg path,
.fixedPanel.bgColorScheme .btnCol.v2 .itemBtn.compareBtn.active .ico svg path,
.fixedPanel.bgColorScheme .btnCol.v2 .itemBtn.compareBtn:hover .ico svg path,
.fixedPanel.bgDark .btnCol.v2 .itemBtn.compareBtn.active .ico svg path,
.fixedPanel.bgDark .btnCol.v2 .itemBtn.compareBtn:hover .ico svg path
{
	stroke: var(--color_white);
}
/**/
.fixedPanel .btnCol.v2 .itemBtn .amount
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: var(--color_2_50);
	top: -3px;
	right: -3px;
	padding: 2px;
	min-width: 16px;
	height: 16px;
	font-size: 1.1rem;
	color: var(--color_white);
}

.fixedPanel .btnCol.v2 .itemBtn.active .amount
{
	background-color: var(--color_1);
	color: var(--color_white);
}

.fixedPanel .btnCol.v2 .itemBtn.cartBtn .amount
{
	border-radius: 100%;
	background-color: var(--color_1);
	top: -3px;
	right: -6px;
	padding: 2px;
	color: var(--color_white);
}
.fixedPanel .btnCol.v2 .itemBtn .info
{
	padding-left: 10px;
	line-height: 1.7rem;
	font-size: 1.4rem;
	color: var(--color_white_50);
}
.fixedPanel .btnCol.v2 .itemBtn.active .info
{
	color: var(--color_white);
}
.fixedPanel .btnCol.v2 .itemBtn .info span
{
	display: inline-block;
}

/**********/

@media (max-width: 1440px)
{
	.fixedPanel .row .item.separator
	{
		display: none;
	}
}
@media (max-width: 1200px)
{
	.fixedPanel .row .item.emailBlock
	{
		display: none;
	}
}
@media (max-width: 991px)
{
	.fixedPanelBlock,
	.fixedPanelBlock.fixed
	{
		height: 51px;
	}
	.fixedPanel
	{
		height: 51px;
	}

	.fixedPanel .row .item
	{
		justify-content: center;
	}

	.fixedPanel .row .item.ccBtnCol
	{
		display: none;
	}
	.fixedPanel .ccBtnCol .contactCenterBtn .title
	{
		display: none;
	}

	.fixedPanel .btnCol.cartBlock
	{
		display: none;
	}

	/***/

	.fixedPanel .toggleWrapper .toggleTitle .ico
	{
		display: -ms-inline-flexbox;
		display: inline-flex;
		align-items: center;
		margin-right: 0;
	}
	.fixedPanel .toggleWrapper .toggleTitle a
	{
		display: none;
	}
	.fixedPanel .toggleWrapper .toggleBlock.phoneToggleBlock ul li.ccLink
	{
		display: block;
	}

	.fixedPanel .row .item.profileBtnCol
	{
		display: -ms-flex;
		display: flex;
	}
	.fixedPanel .profileBtnCol .profileBtn .title
	{
		display: none;
	}

	.fixedPanel .btnCol.v1 .itemBtn .info .title
	{
		display: none;
	}
	.fixedPanel .btnCol.v1 .itemBtn .info .subTitle.noProducts
	{
		display: none;
	}

	.fixedPanel .btnCol.v1 .itemBtn.cartBtn .info .amount2
	{
		display: block;
	}
	.fixedPanel .btnCol.v1 .itemBtn .info .subTitle,
	.fixedPanel .btnCol.v1 .itemBtn.cartBtn .info .amount2
	{
		position: absolute;
		border-radius: 3px;
		background-color: var(--color_colorScheme);
		top: 2px;
		right: 0;
		padding: 3px 3px;
		min-width: 18px;
		height: 18px;
		line-height: 1;
		font-size: 1rem;
		text-align: center;
		color: var(--color_white);
	}
	.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn .info .subTitle,
	.fixedPanel.bgColorScheme .btnCol.v1 .itemBtn.cartBtn .info .amount2
	{
		background-color: var(--color_3);
		color: var(--color_white);
	}
}

@media (max-width: 460px)
{
	.fixedPanel .row .item
	{
		padding-left: 5px;
		padding-right: 5px;
	}
	/*.fixedPanel .row .item:first-child,*/
	.fixedPanel .row .item.phoneBlock
	{
		padding-left: 15px;
	}
	/*.fixedPanel .row .item:last-child,*/
	.fixedPanel .row .item.compareBlock
	{
		padding-right: 15px;
	}

	.fixedPanel .phoneBlock .toggleWrapper .toggleTitle .toggleBtn
	{
		display: none;
	}
}

/*************************************************************************************/

.messengerWidgetFixedBlock
{
	position: fixed;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-ms-flex-align: center;
	align-items: center;
	left: 50px;
	bottom: 125px;
	width: 66px;
	height: 66px;
	z-index: 890;
}

/***/

.messengerWidgetFixedBlock .messengerListBlock
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	left: 50%;
	bottom: 100%;
	transform-origin: center bottom;
	-webkit-transform: translate(-50%, 0) scaley(0);
	-ms-transform: translate(-50%, 0) scaley(0);
	transform: translate(-50%, 0) scaley(0);
	transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-webkit-animation: bottomOpen .3s;
	animation: bottomOpen .3s;
	visibility: hidden;
}
.messengerWidgetFixedBlock .messengerListBlock.open
{
	visibility: visible;
	-webkit-transform: translate(-50%, 0) scaley(1);
	-ms-transform: translate(-50%, 0) scaley(1);
	transform: translate(-50%, 0) scaley(1);
}
/**/
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 100%;
	background-color: var(--color_colorScheme);
	margin: 0 5px 10px 5px;
	width: 44px;
	height: 44px;
	box-shadow: 0 8px 6px -6px rgba(33,33,33,.2);
	transition: box-shadow .17s cubic-bezier(0,0,.2,1);
	cursor: pointer;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem:hover
{
	box-shadow: 0 0 6px rgba(0,0,0,.16), 0 6px 12px rgba(0,0,0,.32);
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon
{
	display: inline-block;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon img,
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon svg
{
	max-width: 30px;
	max-height: 30px;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem.form svg
{
	width: 24px;
	height: 24px;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon svg path[fill]
{
	fill: var(--color_white);
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon svg path[stroke]
{
	stroke: var(--color_white);
}

.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .tooltip
{
	position: absolute;
	display: inline-block;
	border-radius: 10px;
	background: var(--color_gray);
	top: 50%;
	left: -9000px;
	padding: 5px 10px;
	max-width: 360px;
	line-height: 1.4;
	font-size: 1.4rem;
	text-align: center;
	color: var(--color_1);
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	transition: opacity .6s linear;
	opacity: 0;
	overflow: hidden;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem:hover .tooltip
{
	left: auto;
	right: -10px;
	-webkit-transform: translate(100%, -50%);
	-ms-transform: translate(100%, -50%);
	transform: translate(100%, -50%);
	opacity: 1;
}

/*****/

.widgetButtonMainContainer
{
	position: relative;
	display: inline-block;

	transform: scale(.85);
	transition: transform .3s;
}
.buttonSocialFixed.active
{
	transform: scale(0.7);
	transition: transform .3s linear;
}
.widgetButtonMainContainer.beforeOpen
{
	transform: scale(1);
}
/**/
.widgetButtonMainContainer .messengerPre
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	background-color: var(--color_colorScheme);
	-webkit-box-shadow: 0 0 0 8px var(--color_colorScheme_25);
	box-shadow: 0 0 0 8px var(--color_colorScheme_25);

	left: -7px;
	top: -7px;
	padding: 5px;
	width: 80px;
	height: 80px;

	visibility: hidden;
	opacity: 0;
	z-index: 10;
	cursor: pointer;
}
.widgetButtonMainContainer.beforeOpen .messengerPre
{
	visibility: visible;
	opacity: 1;
}

.widgetButtonMainContainer .messengerPre .messengerListItem
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 100%;
	border: 1px solid var(--color_gray);
	margin: 2px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}
.widgetButtonMainContainer .messengerPre .messengerListItem .icon
{
	display: inline-block;
}
.widgetButtonMainContainer .messengerPre .messengerListItem .icon img,
.widgetButtonMainContainer .messengerPre .messengerListItem .icon svg
{
	max-width: 15px;
	max-height: 15px;
}
.widgetButtonMainContainer .messengerPre .messengerListItem.form svg
{
	width: 15px;
	height: 15px;
}
.widgetButtonMainContainer .messengerPre .messengerListItem .icon svg path[fill]
{
	fill: var(--color_white);
}
.widgetButtonMainContainer .messengerPre .messengerListItem .icon svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

.widgetButtonMainContainer .widgetMask
{
	position: absolute;
	border-radius: 100%;
	background-color: var(--color_colorScheme);
	top: -8px;
	left: -8px;
	width: calc(100% + 16px);
	min-width: 66px;
	height: 82px;
	opacity: .2;
}
.widgetButtonMainContainer .widgetMask.active
{
	background: var(--color_gray);
}
.widgetButtonMainContainer.active .widgetMask
{
	opacity: 0;
}

/***/

.widgetButtonMainContainer .widgetButton
{
	border-radius: 100%;
	width: 66px;
	height: 66px;
	overflow: hidden;
	cursor: pointer;
}
.widgetButtonMainContainer .widgetButton .widgetButtonPulse
{
	position:absolute;
	border: 1px solid var(--color_colorScheme);
	border-radius: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.widgetButtonMainContainer.beforeOpen .widgetButton .widgetButtonPulse
{
	border:1px solid var(--color_colorScheme)!important;
}
.widgetButtonMainContainer.active .widgetButton .widgetButtonPulse.widgetButtonPulseAnimate
{
	animation: none;
}

/****/

.widgetButtonMainContainer .widgetButton .widgetButtonBlock
{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 100%;
	background-color: var(--color_colorScheme);
	height: 66px;
}
.widgetButtonMainContainer.active .widgetButton .widgetButtonBlock
{
	background-color: var(--color_gray) !important;
}

.widgetButtonMainContainer .widgetButton .widgetButtonBlock .widgetButtonContainer
{
	position:relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.widgetButtonMainContainer.active .widgetButton .widgetButtonBlock .widgetButtonContainer .widgetButtonIconAnimation
{
	opacity: 0;
	display: none;
}
.widgetButtonMainContainer .widgetButton .widgetButtonBlock .widgetButtonContainer .widgetButtonIconAnimation
{
	opacity: 1;
}

/**/

.widgetButtonMainContainer .widgetButton .widgetButtonItem
{
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 19px;
	transition: opacity .6s ease-out;
	animation: socialRotateBack .4s;

}
.widgetButtonMainContainer .widgetButton .widgetButtonItem svg
{
}
.widgetButtonMainContainer .widgetButton .widgetButtonItem svg path[fill]
{
	fill: var(--color_white);
}
.widgetButtonMainContainer .widgetButton .widgetButtonItem svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

.widgetButtonMainContainer .widgetButton .widgetButtonItem.widgetButtonСlose
{
	display: none;
}
.widgetButtonMainContainer.active .widgetButton .widgetButtonItem.widgetButtonСlose
{
	display: block;
	animation: socialRotate .4s;
	opacity: 1;
}

.widgetButtonMainContainer.beforeOpen .widgetButton .widgetButtonPulse .widgetButtonIcon
{
	opacity: 1;
}

.widgetButton.active .widgetButtonIcon
{
	opacity:.7;
}

/************/

.widgetButtonItem
{
	position:absolute;
	top:0;
	left:0;
	padding:20px 19px;
	-webkit-transition:opacity .6s ease-out;
	transition:opacity .6s ease-out;
	-webkit-animation:socialRotateBack .4s;
	animation:socialRotateBack .4s;
	opacity:0;
}
.widgetButtonIcon {
	-webkit-transition:opacity .3s ease-out;
	transition:opacity .3s ease-out;
	cursor:pointer;
}
.widgetButtonIcon:hover {
	opacity:1;
}
.widgetButtonItem-active .widgetButtonIcon {
	opacity:1;
}

/**/

.widgetButtonСloseItem
{
	width:28px;
	height:28px;
	background-image:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2229%22%20height%3D%2229%22%20viewBox%3D%220%200%2029%2029%22%3E%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%20d%3D%22M18.866%2014.45l9.58-9.582L24.03.448l-9.587%209.58L4.873.447.455%204.866l9.575%209.587-9.583%209.57%204.418%204.42%209.58-9.577%209.58%209.58%204.42-4.42%22/%3E%3C/svg%3E');
	background-repeat:no-repeat;
	background-position:center;
	cursor:pointer;
}

.widgetButtonPulseAnimate
{
	-webkit-animation:widgetPulse infinite 1.5s;
	animation:widgetPulse infinite 1.5s;
}
