:root
{
	--color_1: #101921; /*BLACK*/
	--color_1_30: rgba(16, 25, 33, 0.30); /*BLACK*/
	--color_1_40: rgba(16, 25, 33, 0.40); /*BLACK*/
	--color_2: #63666F; /*DARK GREY*/
	--color_3: #989AA5; /*LIGHT GREY*/
	--color_3_50: rgba(152, 154, 165, 0.50); /*LIGHT GREY*/
	--color_4: #EAEAEA; /*LIGHT*/
	--color_5: #F8F8F8; /*FON*/
	--color_6: #FC4D0F; /*ORANGE*/
	--color_7: #C33305; /*DARK ORANGE*/
	--color_8: #959500; /*GREEN*/
	--color_9: #6B6B00; /*DARK GREEN*/
	--color_10: #407ED4; /*BLUE*/
	--color_11: #274C7F; /*DARK BLUE*/
	--color_12: #0C0707; /*BLACK 2 FON*/
	--color_13: #E5E5E5; /*FON 2*/
	--color_14: #FAFAFA; /*FON 3*/
	--color_15: #0F0F0F; /*FON 4*/
	--color_15_40: rgba(15, 15, 15, 0.40); /*FON 4*/
	--color_16: #C4C4C4;

	--color_black: #000000;
	--color_black_10: rgba(0, 0, 0, 0.10);
	--color_black_20: rgba(0, 0, 0, 0.20);
	--color_black_30: rgba(0, 0, 0, 0.30);
	--color_black_35: rgba(0, 0, 0, 0.35);
	--color_black_50: rgba(0, 0, 0, 0.50);
	--color_black_60: rgba(0, 0, 0, 0.60);
	--color_black_70: rgba(0, 0, 0, 0.70);
	--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_gray: #989AA5;
	--color_gray_15: rgba(152, 154, 165, 0.15);
	--color_dark: #0C0707;
	--color_dark_90: rgba(12, 7, 7, 0.90);

	--font-family-1: 'Roboto Condensed', sans-serif;
	--font-family-2: 'Inter', sans-serif;

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

	--site-width-max-width: 1625px;
	--site-width-2-max-width: 1355px;
	--width-coefficient: calc((100vw - 320px) / (1680 - 320));
}

@media (max-width: 1680px)
{
	:root
	{
		--site-width-max-width: 1525px;
	}
}
@media (max-width: 1540px)
{
	:root
	{
		--site-width-max-width: 1470px;
	}
}
@media (max-width: 1480px)
{
	:root
	{
		--site-width-max-width: 1360px;
		--site-width-2-max-width: 1110px;
	}
}
@media (max-width: 1366px)
{
	:root
	{
		--site-width-max-width: 1140px;
		--site-width-2-max-width: 970px;
	}
}
@media (max-width: 1200px)
{
	:root
	{
		--site-width-max-width: 970px;
		--site-width-2-max-width: 750px;
	}
}
@media (max-width: 991px)
{
	:root
	{
		--site-width-max-width: 750px;
		--site-width-2-max-width: 750px;
	}
}
@media (max-width: 767px)
{
	:root
	{
		--site-width-max-width: 550px;
		--site-width-2-max-width: 550px;
	}
}
@media (max-width: 575px)
{
	:root
	{
		--site-width-max-width: 100%;
		--site-width-2-max-width: 100%;
	}
}

body
{
	background-color: var(--color_5);
	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_2);
}

body.open
{
	overflow: hidden;
}

.hide
{
	display: none !important;
}

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_2);
	-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_6);
}

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

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

/***/

.bgWhite + .bgWhite
{
	padding-top: 0;
}

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

.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;
}

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

.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;
}

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

.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: 2px;
	background-color: var(--color_white);
	border: 1px solid var(--color_2);
	width: 100%;
	padding: 0 15px;
	height: 55px;
	font-family: var(--font-family-1);
	line-height: 1.8rem;
	font-size: 1.5rem;
	color: var(--color_2);
	-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_6);
}
input.error,
select.error,
textarea.error
{
	border-color: var(--color_7);
}
textarea
{
	height: 100px;
	resize: vertical;
	padding-top: 17px;
	padding-bottom: 17px;
}

/*****/

input::placeholder,
select::placeholder,
textarea::placeholder
{
	color: inherit;
	opacity: 1;
}
input.error::placeholder,
select.error::placeholder,
textarea.error::placeholder
{
	color: var(--color_7);
	opacity: 1;
}

button
{
	cursor: pointer;
}

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

.fakeFieldBlock
{
}
.fakeFieldBlock .fakeField
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;

	border-radius: 2px;
	background-color: var(--color_white);
	border: 1px solid var(--color_2);
	width: 100%;
	max-width: 100%;
	padding: 0 15px;
	height: 55px;
	font-family: var(--font-family-1);
	line-height: 1.8rem;
	font-size: 1.5rem;
	color: var(--color_2);
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
}
.fakeField:focus
{
	border-color: var(--color_6);
	box-shadow: none;
	outline: none;
}
.fakeField.fakeSelect::after
{
	position: absolute;
	display: block;
	content: "";
	border-color: var(--color_2) transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	top: 50%;
	right: 6px;
	width: 0;
	height: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

/*****/

@media (max-width: 1680px)
{
	input,
	select,
	textarea
	{
		padding-left: calc(7px + (15 - 7) * var(--width-coefficient));
		padding-right: calc(7px + (15 - 7) * var(--width-coefficient));
		height: calc(38px + (55 - 38) * var(--width-coefficient));
		line-height: calc(15px + (18 - 15) * var(--width-coefficient));
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}
	textarea
	{
		height: calc(70px + (100 - 70) * var(--width-coefficient));
		padding-top: calc(12px + (17 - 12) * var(--width-coefficient));
		padding-bottom: calc(12px + (17 - 12) * var(--width-coefficient));
		line-height: calc(15px + (18 - 15) * var(--width-coefficient));
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}

	.fakeFieldBlock .fakeField
	{
		padding-left: calc(7px + (15 - 7) * var(--width-coefficient));
		padding-right: calc(7px + (15 - 7) * var(--width-coefficient));
		height: calc(38px + (55 - 38) * var(--width-coefficient));
		line-height: calc(15px + (18 - 15) * var(--width-coefficient));
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}
}

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

.input_wrapper
{
	position: relative;
	display: block;
	margin-bottom: 24px;
}
.input_wrapper.hide
{
	display: none !important;
}
.input_wrapper label
{
	display: inline-block;
	margin-bottom: 7px;
	line-height: 1.9rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_2);
}
.input_wrapper label sup
{
	color: var(--color_6);
}
/**/
.input_wrapper .comment
{
	margin-top: 5px;
	line-height: 1.2;
	font-size: 1.2rem;
	color: var(--color_2);
}
.input_wrapper .comment.green
{
	color: var(--color_8);
}
/**/
.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_1);
}

/***/

.input_wrapper.checkbox
{
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.input_wrapper.checkbox input
{
	position: absolute;
	z-index: -2;
	opacity: 0;
}
.input_wrapper.checkbox label
{
	position: relative;
	margin-bottom: 0;
	padding-left: 35px;
	line-height: 2.1rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
	cursor: pointer;
}
.input_wrapper.checkbox input:checked ~ label
{
	color: var(--color_6);
}
.input_wrapper.checkbox input[disabled] ~ label
{
	color: var(--color_3);
}
.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: 2px;
	border: 2px solid var(--color_2);
	background-color: var(--color_white);
	top: -2px;
	left: 0;
	width: 25px;
	height: 25px;
}
.input_wrapper.checkbox input[type="checkbox"]:checked ~ label i,
.input_wrapper.checkbox input[type="radio"]:checked ~ label i
{
	border-color: var(--color_6);
}
.input_wrapper.checkbox input[type="checkbox"] ~ label i
{
	border-radius: 2px;
}
.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: 10px;
	height: 10px;
	-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_6);
}
.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: auto;
	height: auto;
	line-height: 1;
	font-size: 1.4rem;
	color: var(--color_3);
}

/***/

.input_wrapper.file
{
	text-align: center;
}
.input_wrapper.file .fileIco
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;

	margin: 0 auto;
	max-width: 34px;
}
.input_wrapper.file .fileIco svg
{
	max-width: 34px;
}
.input_wrapper.file input
{
	position: absolute;
	z-index: -2;
	opacity: 0;
}
.input_wrapper.file label
{
	margin: 7px auto 0 auto;
	text-decoration: underline;
	text-align: center;
	color: var(--color_1);
	cursor: pointer;
}

/***/

@media (max-width: 1680px)
{
	.input_wrapper
	{
		margin-bottom: calc(8px + (24 - 8) * var(--width-coefficient));
	}

	.input_wrapper label
	{
		margin-bottom: calc(4px + (7 - 4) * var(--width-coefficient));
		line-height: calc(16px + (19 - 16) * var(--width-coefficient));
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}
	.input_wrapper.checkbox label
	{
		padding-left: calc(20px + (35 - 20) * var(--width-coefficient));
		line-height: calc(16px + (21 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	.input_wrapper.checkbox input[type="checkbox"] ~ label i,
	.input_wrapper.checkbox input[type="radio"] ~ label i
	{
		border-width: calc(1px + (2 - 1) * var(--width-coefficient));
		top: calc(0 + (-2 - 0) * var(--width-coefficient));
		width: calc(15px + (25 - 15) * var(--width-coefficient));
		height: calc(15px + (25 - 15) * var(--width-coefficient));
	}
	.input_wrapper.checkbox input[type="checkbox"] ~ label i::before,
	.input_wrapper.checkbox input[type="radio"] ~ label i::before
	{
		width: calc(6px + (10 - 6) * var(--width-coefficient));
		height: calc(6px + (10 - 6) * var(--width-coefficient));
	}

	.input_wrapper.checkbox input[type="checkbox"]:disabled ~ label i::before,
	.input_wrapper.checkbox input[type="radio"]:disabled ~ label i::before
	{
		font-size: calc(12px + (14 - 12) * var(--width-coefficient));
	}

	/*.input_wrapper .comment*/
	/*{*/
	/*	margin-bottom: calc(3px + (5 - 3) * var(--width-coefficient));*/
	/*	font-size: calc(10px + (12 - 10) * var(--width-coefficient));*/
	/*}*/

	.input_wrapper.file .fileIco
	{
		max-width: calc(22px + (34 - 22) * var(--width-coefficient));
	}
	.input_wrapper.file .fileIco svg
	{
		max-width: calc(22px + (34 - 22) * var(--width-coefficient));
	}
}

/*****/

.alert
{
	border: none;
	background: none;
	padding: 0;
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 400;

}
.alert-success
{
	color: var(--color_8);
}
.alert-danger
{
	color: var(--color_7);
}

/*****/

.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: 2px;
	border: 2px solid var(--color_1);
	background-color: var(--color_white);
	padding: 0 30px;
	max-width: 250px;
	width: 100%;
	height: 55px;
	font-family: var(--font-family-2);
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none !important;
	color: var(--color_1);
	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_6);
	background-color: var(--color_white);
	text-decoration: none !important;
	color: var(--color_1);
}
.btn svg,
.staticText .btn svg
{
	margin: 0 5px;
}
.btn svg path[stroke],
.staticText .btn svg path[stroke]
{
	stroke: var(--color_1);
}
.btn svg path[fill],
.staticText .btn svg path[fill]
{
	fill: var(--color_1);
}
.btn:hover svg path[stroke],
.staticText .btn:hover svg path[stroke]
{
	stroke: var(--color_white);
}
.btn:hover svg path[fill],
.staticText .btn:hover svg path[fill]
{
	fill: var(--color_white);
}

/***/

.btn.invert,
.staticText .btn.invert
{
	border: 2px solid var(--color_6);
	background-color: var(--color_6);
	color: var(--color_white);
}
.btn.invert:hover,
.staticText .btn.invert:hover
{
	position: relative;
	border-color: var(--color_1);
	background-color: var(--color_1);
	text-decoration: none !important;
	color: var(--color_white);
}
.btn.invert svg path[stroke],
.staticText .btn.invert svg path[stroke]
{
	stroke: var(--color_white);
}
.btn.invert svg path[fill],
.staticText .btn.invert svg path[fill]
{
	fill: var(--color_white);
}
.btn:hover svg path[stroke],
.staticText .btn:hover svg path[stroke]
{
	stroke: var(--color_white);
}
.btn.invert:hover svg path[fill],
.staticText .btn.invert:hover svg path[fill]
{
	fill: var(--color_white);
}

/*******/

.btn.type2,
.staticText .btn.type2
{
	border-color: var(--color_white);
	background-color: var(--color_1);
	color: var(--color_white);
}
.btn.type2:hover,
.staticText .btn.type2:hover
{
	border-color: var(--color_1);
	background-color: var(--color_white);
	color: var(--color_1);
}
.btn.type2 svg path,
.staticText .btn.type2 svg path
{
	fill: var(--color_1);
	stroke: var(--color_1);
}
.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-color: var(--color_white);
	background-color: var(--color_black_30);
	box-shadow: none;
	color: var(--color_white);
}
.btn.type3:hover,
.staticText .btn.type3:hover
{
	border-color: var(--color_white);
	background-color: var(--color_black_50);
	color: var(--color_white);
}
.btn.type3 svg path[stroke],
.staticText .btn.type3 svg path[stroke]
{
	stroke: var(--color_white);
}
.btn.type3 svg path[fill],
.staticText .btn.type3 svg path[fill]
{
	fill: var(--color_white);
}
.btn.type3:hover svg path[stroke],
.staticText .btn.type3:hover svg path[stroke]
{
	stroke: var(--color_1);
}
.btn.type3:hover svg path[fill],
.staticText .btn.type3:hover svg path[fill]
{
	fill: var(--color_1);
}

/***/

.btn.type4,
.staticText .btn.type4
{
	border-color: var(--color_1);
	background-color: transparent;
	box-shadow: none;
	color: var(--color_1);
}
.btn.type4:hover,
.staticText .btn.type4:hover
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}
.btn.type4 svg path[stroke],
.staticText .btn.type4 svg path[stroke]
{
	stroke: var(--color_1);
}
.btn.type4 svg path[fill],
.staticText .btn.type4 svg path[fill]
{
	fill: var(--color_1);
}
.btn.type4:hover svg path[stroke],
.staticText .btn.type4:hover svg path[stroke]
{
	stroke: var(--color_white);
}
.btn.type4:hover svg path[fill],
.staticText .btn.type4:hover svg path[fill]
{
	fill: var(--color_white);
}

/***/

.btn.type5,
.staticText .btn.type5
{
	border-color: var(--color_3);
	background-color: var(--color_white);
	box-shadow: none;
	color: var(--color_3);
}
.btn.type5:hover,
.staticText .btn.type5:hover
{
	border-color: var(--color_6);
	background-color: var(--color_white);
	color: var(--color_3);
}
.btn.type5 svg path[stroke],
.staticText .btn.type5 svg path[stroke]
{
	stroke: var(--color_3);
}
.btn.type5 svg path[fill],
.staticText .btn.type5 svg path[fill]
{
	fill: var(--color_3);
}
.btn.type5:hover svg path[stroke],
.staticText .btn.type5:hover svg path[stroke]
{
	stroke: var(--color_3);
}
.btn.type5:hover svg path[fill],
.staticText .btn.type5:hover svg path[fill]
{
	fill: var(--color_3);
}

/***/

.btn.disabled,
.btn[disabled],
.staticText .btn.disabled,
.staticText .btn[disabled]
{
	border-color: var(--color_3);
	background-color: var(--color_4);
	color: var(--color_3);
	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_3);
}
.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_3);
}

.btn.type2.disabled,
.btn.type2[disabled],
.staticText .btn.type2.disabled,
.staticText .btn.type2[disabled]
{
	border-color: var(--color_2);
	background-color: var(--color_2);
	color: var(--color_4);
	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_4);
}
.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_4);
}

/***/

.btn.wauto,
.staticText .btn.wauto
{
	max-width: unset;
	width: auto;
}

/***/

.btn.h32,
.staticText .btn.h32
{
	max-width: 200px;
	height: 32px;
	font-size: 1.3rem;
}
.btn.h42,
.staticText .btn.h42
{
	height: 42px;
}

/*******/

@media (max-width: 1680px)
{
	.btn,
	.staticText .btn
	{
		border-width: calc(1px + (2 - 1) * var(--width-coefficient));;
		padding-left: calc(15px + (30 - 15) * var(--width-coefficient));;
		padding-right: calc(15px + (30 - 15) * var(--width-coefficient));;
		/*max-width: calc(200px + (250 - 200) * var(--width-coefficient));;*/
		height: calc(38px + (55 - 38) * var(--width-coefficient));;
		line-height: calc(15px + (18 - 15) * var(--width-coefficient));;
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));;
	}
}
/*@media (max-width: 991px)*/
/*{*/
/*	.btn,*/
/*	.staticText .btn*/
/*	{*/
/*		padding: 0 10px;*/
/*		height: 42px;*/
/*		font-size: 1.2rem;*/
/*	}*/
/*}*/

/***/

.btn.active,
.staticText .btn.active
{
	position: relative;
}
.btn .preloader
{
	display: none;
	position: absolute;
	justify-content: center;
	align-items: center;
	background-color: var(--color_6);
	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: 2px;
	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: 83.33333333333333%;
	height: 2px;
	transform-origin: center;
}
.btnClose::before
{
	transform: translate(-50%, -50%) rotate(-45deg);
}
.btnClose::after
{
	transform: translate(-50%, -50%) rotate(45deg);
}
/**/
.btnClose.wh40
{
	width: 40px;
	height: 40px;
}

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

.fancybox-container
{
}
.fancybox-container .fancybox-bg
{
	background-color: var(--color_black_70);
	opacity: 1;
}

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

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

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

.el_siteCommentBlock_38488457 .slick-slider .slick-list,
.el_siteCommentBlock_38488457 .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-radius: 100%;
	border: 2px solid var(--color_gray);
	background-color: var(--color_black_30);

	width: 90px;
	height: 90px;
	text-align: center;
	color: var(--color_2);
	z-index: 15;
	cursor: pointer;
	opacity: 1;
}
.slick-slider .slick-arrow:hover
{
	border-color: var(--color_black);
	background-color: var(--color_black_50);
}
.slick-slider .slick-arrow.slick-prev
{
	left: 0;
}
.slick-slider .slick-arrow.slick-next
{
	right: 0;
}
.slick-slider .slick-arrow::before
{
	content: "";
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	opacity: 1;
}
.slick-slider .slick-arrow:hover::before
{
}
.slick-slider .slick-arrow.slick-prev::before
{
	background-image: url("../img/arrow-left.svg");
}
.slick-slider .slick-arrow.slick-next::before
{
	background-image: url("../img/arrow-right.svg");
}

@media (max-width: 1680px)
{
	.slick-slider .slick-arrow
	{
		width: calc(38px + (90 - 38) * var(--width-coefficient));
		height: calc(38px + (90 - 38) * var(--width-coefficient));
	}
}

/***/

.slick-slider.btnType3 .slick-arrow
{
	width: 50px;
	height: 50px;
}
.slick-slider.btnType3 .slick-arrow.slick-prev::before
{
	background-image: url("../img/arrow-left.svg");
}
.slick-slider.btnType3 .slick-arrow.slick-next::before
{
	background-image: url("../img/arrow-right.svg");
}

@media (max-width: 1680px)
{
	.slick-slider.btnType3 .slick-arrow
	{
		width: calc(30px + (50 - 30) * var(--width-coefficient));
		height: calc(30px + (50 - 30) * var(--width-coefficient));
	}
}

/*****/

.slick-slider.type2
{
	padding-left: 135px;
	padding-right: 135px;
}
.slick-slider.type2 .slick-arrow
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color_2);
	background-color: transparent;
	box-shadow: none;

	width: 90px;
	height: 90px;
	text-align: center;
	color: var(--color_2);
	z-index: 15;
	cursor: pointer;
	opacity: 1;
}
.slick-slider.type2 .slick-arrow.slick-prev
{
	left: 12px;
}
.slick-slider.type2 .slick-arrow.slick-next
{
	right: 12px;
}
.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");
}

@media (max-width: 1680px)
{
	.slick-slider.type2
	{
		padding-left: calc(45px + (135 - 45) * var(--width-coefficient));
		padding-right: calc(45px + (135 - 45) * var(--width-coefficient));
	}
	.slick-slider.type2 .slick-arrow
	{
		width: calc(38px + (90 - 38) * var(--width-coefficient));
		height: calc(38px + (90 - 38) * var(--width-coefficient));
	}
	.slick-slider.type2 .slick-arrow.slick-prev
	{
		left: calc(4px + (12 - 4) * var(--width-coefficient));
	}
	.slick-slider.type2 .slick-arrow.slick-next
	{
		right: calc(4px + (12 - 4) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.slick-slider.type2
	{
		padding-left: 0;
		padding-right: 0;
	}
	.slick-slider.type2 .slick-arrow.slick-prev
	{
		left: 0;
	}
	.slick-slider.type2 .slick-arrow.slick-next
	{
		right: 0;
	}
}

/*****/

.slick-slider.type3
{
	padding-left: 135px;
	padding-right: 135px;
}
.slick-slider.type3 .slick-arrow
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color_2);
	background-color: transparent;
	box-shadow: none;

	width: 50px;
	height: 50px;
	text-align: center;
	color: var(--color_2);
	z-index: 15;
	cursor: pointer;
	opacity: 1;
}
.slick-slider.type3 .slick-arrow:hover
{
	border: 1px solid var(--color_1);
}
.slick-slider.type3 .slick-arrow.slick-prev
{
	left: 0;
}
.slick-slider.type3 .slick-arrow.slick-next
{
	right: 0;
}
.slick-slider.type3 .slick-arrow::before
{
	content: "";
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 14px;
	height: 31px;
	opacity: 0.5;
}
.slick-slider.type3 .slick-arrow:hover::before
{
	opacity: 1;
}
.slick-slider.type3 .slick-arrow.slick-prev::before
{
	background-image: url("../img/arrow-left-dark.svg");
}
.slick-slider.type3 .slick-arrow.slick-next::before
{
	background-image: url("../img/arrow-right-dark.svg");
}

@media (max-width: 1680px)
{
	.slick-slider.type3 .slick-arrow
	{
		width: calc(20px + (50 - 20) * var(--width-coefficient));
		height: calc(20px + (50 - 20) * var(--width-coefficient));
	}
	.slick-slider.type3 .slick-arrow::before
	{
		width: calc(7px + (14 - 7) * var(--width-coefficient));
		height: calc(15px + (31 - 15) * var(--width-coefficient));
	}
}

/*****/

.slick-slider.centerMode .slick-list
{
}

/*****/

.sliderBtnBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sliderBtnBlock .slick-arrow
{
	position: static;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 2px solid var(--color_2);
	background-color: transparent;
	box-shadow: none;

	width: 70px;
	height: 70px;
	text-align: center;
	color: var(--color_2);
	z-index: 15;
	cursor: pointer;
	opacity: 1;

	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.sliderBtnBlock .slick-arrow:hover
{
	border-color: var(--color_1);
	color: var(--color_1);
}
.sliderBtnBlock .slick-arrow::before
{
	display: none;
}
.sliderBtnBlock .slick-arrow svg
{
	width: 12px;
	height: 22px;
}
.sliderBtnBlock .slick-arrow svg path[fill]
{
	fill: var(--color_2);
}
.sliderBtnBlock .slick-arrow svg path[stroke]
{
	stroke: var(--color_2);
}
.sliderBtnBlock .slick-arrow:hover svg path[fill]
{
	fill: var(--color_1);
}
.sliderBtnBlock .slick-arrow:hover svg path[stroke]
{
	stroke: var(--color_1);
}

@media (max-width: 1680px)
{
	.sliderBtnBlock .slick-arrow
	{
		width: calc(28px + (70 - 28) * var(--width-coefficient));
		height: calc(28px + (70 - 28) * var(--width-coefficient));
	}
	.sliderBtnBlock .slick-arrow svg
	{
		width: calc(7px + (12 - 7) * var(--width-coefficient));
		height: calc(10px + (22 - 10) * var(--width-coefficient));
	}
}

@media (max-width: 1200px)
{
	.el_offerSliderBlock_38488457.action .sliderBtnBlock .slick-arrow
	{
		border-color: var(--color_white);
		color: var(--color_white);
	}
	.el_offerSliderBlock_38488457.action .sliderBtnBlock .slick-arrow:hover
	{
		border-color: var(--color_6);
		background-color: var(--color_6);
		color: var(--color_white);
	}
	.el_offerSliderBlock_38488457.action .sliderBtnBlock .slick-arrow svg path[fill]
	{
		fill: var(--color_white);
	}
	.el_offerSliderBlock_38488457.action .sliderBtnBlock .slick-arrow svg path[stroke]
	{
		stroke: var(--color_white);
	}
}
@media (max-width: 991px)
{
	.sliderBtnBlock .slick-arrow
	{
		border-width: 1px;
	}
}
@media (max-width: 480px)
{
	.sliderBtnBlock .nextBtn .slick-next.slick-arrow svg
	{
		position: relative;
		left: 1px;
	}
}

/*****/

.slick-slider .slick-dots
{
	position: static;
	margin-top: 10px;
}

/***/

.indexTopBanner .slick-slider .slick-dots
{
	position: absolute;
	bottom: 45px;
}

/***/

.slick-slider .slick-dots
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.slick-slider .slick-dots li
{
	margin: 0;
	width: 22px;
	height: 22px;
}
.el_offerListItem_38488457 .slick-slider .slick-dots li
{
	width: 12px;
	height: 12px;
}
.slick-slider .slick-dots li button
{
	border-radius: 100%;
	border: 2px solid var(--color_white);
	background-color: var(--color_black_30);
	padding: 0;
	width: 22px;
	height: 22px;
}
.el_offerListItem_38488457 .slick-slider .slick-dots li button
{
	width: 12px;
	height: 12px;
}
.slick-slider .slick-dots li.slick-active button
{
	background-color: var(--color_6);
}
.slick-slider .slick-dots li button::before
{
	display: none;
}

@media (max-width: 1680px)
{
	.indexTopBanner .slick-slider .slick-dots
	{
		bottom: calc(10px + (45 - 10) * var(--width-coefficient));
	}
	.slick-slider .slick-dots
	{
		gap: calc(5px + (10 - 5) * var(--width-coefficient));
	}
	.slick-slider .slick-dots li
	{
		width: calc(10px + (22 - 10) * var(--width-coefficient));
		height: calc(10px + (22 - 10) * var(--width-coefficient));
	}
	.slick-slider .slick-dots li button
	{
		border-width: calc(1px + (2 - 1) * var(--width-coefficient));
		width: calc(10px + (22 - 10) * var(--width-coefficient));
		height: calc(10px + (22 - 10) * var(--width-coefficient));
	}
}

/*@media (max-width: 480px)*/
/*{*/
/*	.indexTopBanner .slick-slider .slick-dots*/
/*	{*/
/*		position: static;*/
/*		margin-top: 0;*/
/*	}*/
/*}*/

/*****/

.slick-slider.type2 .slick-dots
{
	position: static;
	margin-top: 55px;
}
.slick-slider.type2 .slick-dots li
{
	margin: 0 10px;
	width: 22px;
	height: 22px;
}
.slick-slider.type2 .slick-dots li button
{
	border-radius: 100%;
	border: 2px solid var(--color_1);
	background-color: transparent;
	padding: 0;
	width: 22px;
	height: 22px;
}
.slick-slider.type2 .slick-dots li.slick-active button
{
	border-color: var(--color_6);
	background-color: var(--color_6);
}
.slick-slider.type2 .slick-dots li button::before
{
	display: none;
}

@media (max-width: 1680px)
{
	.slick-slider.type2 .slick-dots
	{
		margin-top: calc(25px + (55 - 25) * var(--width-coefficient));
	}
	.slick-slider.type2 .slick-dots li
	{
		border-width: calc(1px + (2 - 1) * var(--width-coefficient));
		margin-left: calc(7px + (10 - 7) * var(--width-coefficient));
		margin-right: calc(7px + (10 - 7) * var(--width-coefficient));
		width: calc(10px + (22 - 10) * var(--width-coefficient));
		height: calc(10px + (22 - 10) * var(--width-coefficient));
	}
	.slick-slider.type2 .slick-dots li button
	{
		width: calc(10px + (22 - 10) * var(--width-coefficient));
		height: calc(10px + (22 - 10) * var(--width-coefficient));
	}
}

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

.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_1);
	background-color: var(--color_4);
	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;
}

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

.toggleWrapper
{
	position: relative;
	height: 100%;
}
.toggleWrapper .toggleTitle
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.toggleWrapper.right .toggleTitle
{
	justify-content: flex-end;
}
.toggleWrapper .toggleTitle a
{
	position: relative;
	display: block;
	line-height: 1.8rem;
	font-size: 1.5rem;
	color: var(--color_2);
}
.toggleWrapper .toggleTitle a:hover,
.toggleWrapper .toggleTitle a.active
{
	color: var(--color_1);
}
.toggleWrapper .toggleTitle .toggleBtn
{
	display: -ms-inline-grid;
	display: inline-grid;
	grid-template-columns: auto auto;
	align-items: center;
	justify-content: center;
	gap: 3px;
	margin-left: 5px;
	cursor: pointer;
}
.toggleWrapper .toggleTitle .toggleBtn::after
{
	display: inline-block;
	content: "\f107";
	font-family: "FontAwesome";
	font-size: 1.8rem;
}
.toggleWrapper .toggleTitle .open .toggleBtn::after,
.toggleWrapper .toggleTitle .toggleBtn.open::after
{
	content: "\f106";
}
.toggleWrapper .toggleBlock
{
	display: none;
	position: absolute;
	border: 1px solid var(--color_1);
	background-color: var(--color_white);
	top: 100%;
	left: -20px;
	padding: 10px 20px 10px 20px;
	max-width: 280px;
	min-width: 220px;
	height: auto !important;
	box-shadow: 0 0 3px rgba(0,0,0, 0.3);
	z-index: 50;
}
.toggleWrapper.left .toggleBlock
{
	left: -20px;
}
.toggleWrapper.right .toggleBlock
{
	left: auto;
	right: -20px;
}
.toggleWrapper .toggleBlock.open
{
	display: block;
}
.toggleWrapper .toggleBlock ul
{
	padding: 0;
}
.toggleWrapper .toggleBlock ul li
{
	display: block;
	margin: 0;
	padding: 0;
	text-align: left;
}
.toggleWrapper .toggleBlock ul li a,
.toggleWrapper .toggleBlock ul li span
{
	display: block;
	padding: 5px 0;
	font-family: var(--font-family-1);
	line-height: 1.8rem;
	font-size: 1.5rem;
	color: var(--color_2);
}
.toggleWrapper .toggleBlock ul li a.sn
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 20px auto;
	gap: 5px;
}
.toggleWrapper .toggleBlock ul li a:hover,
.toggleWrapper .toggleBlock ul li a.active,
.toggleWrapper .toggleBlock ul li span
{
	color: var(--color_1);
}

/******/

@media (max-width:1680px)
{
	.toggleWrapper .toggleTitle .toggleBtn::after
	{
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
}

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

.el_titleBlock_38488457
{
	position: relative;
	margin-bottom: 50px;

	font-family: var(--font-family-2);
	line-height: 3.6rem;
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_1);
}
.el_titleBlock_38488457.text-left
{
	text-align: left;
}
.el_titleBlock_38488457.text-right
{
	text-align: right;
}
.el_titleBlock_38488457 a
{
	color: var(--color_1);
}
.el_titleBlock_38488457 a:hover
{
	color: var(--color_6);
}
.el_titleBlock_38488457 span
{
}

/***/

.el_titleBlock_38488457.type2
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
.el_titleBlock_38488457.type2 .clearBlock,
.el_titleBlock_38488457.type2 .sliderBtnBlock
{
	-ms-flex: 0 0 164px;
	flex: 0 0 164px;
	max-width: 164px;
}
.el_titleBlock_38488457.type2 .titleBlock
{
	-ms-flex: 0 0 calc(100% - 328px);
	flex: 0 0 calc(100% - 328px);
	max-width: calc(100% - 328px);
}

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

		line-height: calc(20px + (36 - 20) * var(--width-coefficient));
		font-size: calc(18px + (30 - 18) * var(--width-coefficient));
	}
	.el_titleBlock_38488457.type2
	{
		margin-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
	}

	.el_titleBlock_38488457.type2 .clearBlock,
	.el_titleBlock_38488457.type2 .sliderBtnBlock
	{
		-ms-flex: 0 0 calc(80px + (164 - 80) * var(--width-coefficient));
		flex: 0 0 calc(80px + (164 - 80) * var(--width-coefficient));
		max-width: calc(80px + (164 - 80) * var(--width-coefficient));
	}
	.el_titleBlock_38488457.type2 .titleBlock
	{
		-ms-flex: 0 0 calc(100% - calc(80px + (164 - 80) * var(--width-coefficient)) * 2);
		flex: 0 0 calc(100% - calc(80px + (164 - 80) * var(--width-coefficient)) * 2);
		max-width: calc(100% - calc(80px + (164 - 80) * var(--width-coefficient)) * 2);
	}
}

@media (max-width: 1200px)
{
	.el_offerSliderBlock_38488457.action .el_titleBlock_38488457.type2 .titleBlock
	{
		color: var(--color_white);
	}
}

@media (max-width: 767px)
{
	.el_titleBlock_38488457.type2 .titleBlock
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_titleBlock_38488457.type2 .sliderBtnBlock
	{
		margin-top: 10px;
	}
}

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

.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
{
	padding-top: 65px;
	padding-bottom: 65px;
}

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

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

section.pb-0,
.pb-0
{
	padding-bottom: 0;
}
section.pb-40,
.pb-40
{
	padding-bottom: 40px;
}
section.pb-120,
.pb-120
{
	padding-bottom: 120px;
}

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

	section.pb-0,
	.pb-0
	{
		padding-bottom: 0;
	}
	section.pb-40,
	.pb-40
	{
		padding-bottom: calc(30px + (40 - 30) * var(--width-coefficient));
	}
	section.pb-120,
	.pb-120
	{
		padding-bottom: calc(60px + (120 - 60) * 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: -12px;
	margin-left: -12px;
}
.col
{
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 12px;
	padding-right: 12px;
}
/**/
.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: 0;
	margin-left: 0;
}
.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;
}

@media (max-width: 1680px)
{
	.row
	{
		margin-right: calc((4px + (12 - 4) * var(--width-coefficient)) * -1);
		margin-left: calc((4px + (12 - 4) * var(--width-coefficient)) * -1);
	}
	.col
	{
		padding-left: calc(4px + (12 - 4) * var(--width-coefficient));
		padding-right: calc(4px + (12 - 4) * var(--width-coefficient));
	}
}

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

.siteWidth
{
	margin: 0 auto;
	max-width: var(--site-width-max-width);
}
.siteWidth2
{
	margin: 0 auto;
	max-width: var(--site-width-2-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 #left_side
{
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
	margin-bottom: 24px;
}
main #right_side
{
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
	margin-bottom: 24px;
}

@media (max-width: 1366px)
{
	main #left_side
	{
		-ms-flex: 0 0 300px;
		flex: 0 0 300px;
		max-width: 300px;
	}
	main #right_side
	{
		-ms-flex: 0 0 300px;
		flex: 0 0 300px;
		max-width: 300px;
	}
}
@media (max-width: 991px)
{
	main #left_side
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	main #left_side.fakeBlock
	{
		margin-bottom: 0;
	}
	main #right_side
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	main #right_side.fakeBlock
	{
		margin-bottom: 0;
	}
}

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

.el_topHeaderTickerBlock_38488457
{
	background-color: var(--color_1);
}
.el_topHeaderTickerBlock_38488457 .tickerList
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;

	height: 30px;
	overflow: hidden;
}
.el_topHeaderTickerBlock_38488457.ticker .tickerList::before,
.el_topHeaderTickerBlock_38488457.ticker .tickerList::after
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: 0;
	width: 10%;
	height: 100%;
	z-index: 5;
}
.el_topHeaderTickerBlock_38488457.ticker .tickerList::before
{
	background: -moz-linear-gradient(left, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-linear-gradient(left, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: -o-linear-gradient(left, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: -ms-linear-gradient(left, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(to right, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	left: 0;
}
.el_topHeaderTickerBlock_38488457.ticker .tickerList::after
{
	background: -moz-linear-gradient(right, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-linear-gradient(right, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: -o-linear-gradient(right, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: -ms-linear-gradient(right, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(to left, rgba(16, 25, 33, 1) 0%, rgba(255, 255, 255, 0) 100%);
	right: 0;
}
.el_topHeaderTickerBlock_38488457 .tickerList .marquee
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.el_topHeaderTickerBlock_38488457 .tickerList .tickerListItem
{
	position: relative;
	padding: 0;
	line-height: 1.6rem;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_white);
}
.el_topHeaderTickerBlock_38488457 .tickerList .tickerListItem span
{
	display: inline-block;
}
.el_topHeaderTickerBlock_38488457 .tickerList .tickerListItem a
{
	display: inline-block;
	color: var(--color_white);
}
.el_topHeaderTickerBlock_38488457 .tickerList .tickerListItem a:hover
{
	color: var(--color_6);
}
.el_topHeaderTickerBlock_38488457.ticker .tickerList .tickerListItem
{
	float: left;
	position: relative;
	padding: 0 30px;
}
.el_topHeaderTickerBlock_38488457.ticker .tickerList .tickerListItem::before,
.el_topHeaderTickerBlock_38488457.ticker .tickerList .tickerListItem::after
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background-color: var(--color_white);
	top: 50%;
	width: 6px;
	height: 6px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.el_topHeaderTickerBlock_38488457.ticker .tickerList .tickerListItem::before
{
	left: -3px;
}
.el_topHeaderTickerBlock_38488457.ticker .tickerList .tickerListItem::after
{
	right: -3px;
}

@media (max-width: 1680px)
{
	.el_topHeaderTickerBlock_38488457 .tickerList .tickerListItem
	{
		line-height: calc(12px + (16 - 12) * var(--width-coefficient));
		font-size: calc(10px + (14 - 10) * var(--width-coefficient));
	}
}

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

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

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

header.headerCD .el_topHeader_38488457
{
	background-color: var(--color_4);
}
header.headerCD .el_topHeader_38488457 .row
{
	align-items: center;
	height: 38px;
}

/***/

header.headerCD .el_topHeader_38488457 .delCol
{
}
header.headerCD .el_topHeader_38488457 .delCol.d1
{
	display: none;
	/*-ms-flex: 0 0 110px;*/
	/*flex: 0 0 110px;*/
	/*max-width: 110px;*/
}
header.headerCD .el_topHeader_38488457 .delCol.d2
{
	-ms-flex: 0 0 288px;
	flex: 0 0 288px;
	max-width: 288px;
}
header.headerCD .el_topHeader_38488457 .delCol.d3
{
	-ms-flex: 0 0 406px;
	flex: 0 0 406px;
	max-width: 406px;
}

/***/

header.headerCD .el_topHeader_38488457 .navCol
{
	height: 100%;
}
header.headerCD .el_topHeader_38488457 .navCol nav,
header.headerCD .el_topHeader_38488457 .navCol nav ul,
header.headerCD .el_topHeader_38488457 .navCol nav ul > li
{
	height: 100%;
}
header.headerCD .el_topHeader_38488457 .navCol nav
{
}
header.headerCD .el_topHeader_38488457 .navCol nav > ul
{
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	/*opacity: 0;*/
}
header.headerCD .el_topHeader_38488457 .navCol nav ul
{
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li
{
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	white-space: nowrap;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: unset;
	vertical-align: top;
	padding: 0 15px;
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li:first-child
{
	padding-left: 0;
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li:last-child
{
	padding-right: 0;
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li a
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	line-height: 1.8rem;
	font-size: 1.5rem;
	color: var(--color_2);
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li a:hover,
header.headerCD .el_topHeader_38488457 .navCol nav ul li a.active
{
	color: var(--color_1);
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li a::after
{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color_1);
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li a:hover::after,
header.headerCD .el_topHeader_38488457 .navCol nav ul li a.active::after
{
	height: 1px;
	opacity: 1;
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	transform: translateY(-1px);
}

/**/
/*
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer
{
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .burgerBtn
{
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .burgerBtn .burger
{
	width: 20px;
	height: 20px;
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .burgerBtn .burger span,
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .burgerBtn .burger span::before,
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .burgerBtn .burger span::after
{
	background-color: var(--color_2);
	height: 1px;
}

header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .burgerBtn.open .burger span
{
	background-color: transparent;
}

header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .burgerBtn .burger span::before
{
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .burgerBtn .burger span::after
{
	-webkit-transform: translateY(5px);
	-moz-transform: translateY(5px);
	-ms-transform: translateY(5px);
	-o-transform: translateY(5px);
	transform: translateY(5px);
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .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);
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li.hiddenItemsContainer .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);
}
*/

/**/
header.headerCD .el_topHeader_38488457 .navCol nav ul li ul
{
	display: none;
	position: absolute;
	background-color: var(--color_white);
	top: 100%;
	left: 0;
	padding: 10px 15px;
	max-width: 280px;
	min-width: 220px;
	height: auto !important;
	box-shadow: 0 0 3px rgba(0,0,0, 0.3);
	z-index: 50;
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li.open ul,
header.headerCD .el_topHeader_38488457 .navCol nav ul li:hover ul
{
	display: block;
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li ul li
{
	display: block;
	padding: 0;
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li ul li a
{
	display: block;
	padding: 5px 0;
	white-space: normal;
	text-align: left;
}
header.headerCD .el_topHeader_38488457 .navCol nav ul li ul li a::after
{
	display: none;
}

/***/

header.headerCD .el_topHeader_38488457 .phoneCol
{
	-ms-flex: 0 0 200px;
	flex: 0 0 200px;
	max-width: 200px;
	height: 100%;
}
header.headerCD .el_topHeader_38488457 .phoneCol .phoneBlock
{
	display: inline-block;
	margin: 0 auto;
}

/***/

header.headerCD .el_topHeader_38488457 .socialNetworkCol
{
	-ms-flex: 0 0 200px;
	flex: 0 0 200px;
	max-width: 200px;
	text-align: right;
}

/***/

header.headerCD .el_topHeader_38488457 .currencyCol,
header.headerCD .el_topHeader_38488457 .langCol
{
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: unset;
}

header.headerCD .el_topHeader_38488457 .currencyCol .currencyList,
header.headerCD .el_topHeader_38488457 .langCol .langList
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
header.headerCD .el_topHeader_38488457 .currencyCol .currencyList li,
header.headerCD .el_topHeader_38488457 .langCol .langList li
{
}
header.headerCD .el_topHeader_38488457 .currencyCol .currencyList li.delimeter,
header.headerCD .el_topHeader_38488457 .langCol .langList li.delimeter
{
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	background-color: var(--color_1);
	margin: 0 6px;
	width: 1px;
	height: 18px;
}
header.headerCD .el_topHeader_38488457 .currencyCol .currencyList li.delimeter:last-child,
header.headerCD .el_topHeader_38488457 .langCol .langList li.delimeter:last-child
{
	display: none;
}
header.headerCD .el_topHeader_38488457 .currencyCol .currencyList li.delimeter::before,
header.headerCD .el_topHeader_38488457 .langCol .langList li.delimeter::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	height: 100%;
}

header.headerCD .el_topHeader_38488457 .currencyCol .currencyList li a,
header.headerCD .el_topHeader_38488457 .currencyCol .currencyList li span,
header.headerCD .el_topHeader_38488457 .langCol .langList li a,
header.headerCD .el_topHeader_38488457 .langCol .langList li span
{
	letter-spacing: 0.2em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_2);
}
header.headerCD .el_topHeader_38488457 .currencyCol .currencyList li a:hover,
header.headerCD .el_topHeader_38488457 .currencyCol .currencyList li span,
header.headerCD .el_topHeader_38488457 .langCol .langList li a:hover,
header.headerCD .el_topHeader_38488457 .langCol .langList li span
{
	color: var(--color_1);
}

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

header.headerCD .el_bottomHeader_38488457
{
	position: relative;
	border-bottom: 1px solid var(--color_1);
	height: 91px;
}
header.headerCD .el_bottomHeader_38488457 .fixedHeader
{
	background-color: var(--color_white);
	height: 90px;
}
header.headerCD .el_bottomHeader_38488457 .fixedHeader.fixed
{
	position: fixed;
	box-shadow: 0 0 3px rgba(0,0,0, 0.3);
	top: 0;
	left: 0;
	width: 100%;
}
header.headerCD .el_bottomHeader_38488457 .fixedHeaderRow
{
	align-items: center;
	height: 90px;
}

/***/

header.headerCD .el_bottomHeader_38488457 .delCol
{
}
header.headerCD .el_bottomHeader_38488457 .delCol.d0
{
	display: none;
	padding: 0;
}
header.headerCD .el_bottomHeader_38488457 .delCol.d1
{
	-ms-flex: 0 0 110px;
	flex: 0 0 110px;
	max-width: 110px;
}

/***/

header.headerCD .el_bottomHeader_38488457 .burgerBtnCol
{
	display: none;
	-ms-flex: 0 0 70px;
	flex: 0 0 70px;
	max-width: 70px;
}
header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .burgerBtn .burger span,
header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .burgerBtn .burger span::before,
header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .burgerBtn .burger span::after
{
	background-color: var(--color_6);
}
header.headerCD .el_bottomHeader_38488457 .burgerBtnCol  .burgerBtn.open .burger span
{
	background-color: transparent;
}

/***/

header.headerCD .el_bottomHeader_38488457 .logoCol
{
	-ms-flex: 0 0 200px;
	flex: 0 0 200px;
	max-width: 200px;
}
header.headerCD .el_bottomHeader_38488457 .logoCol .logo
{
	display: inline-block;
	max-width: 100%;
	max-height: 60px;
}
header.headerCD .el_bottomHeader_38488457 .logoCol .logo img
{
	max-width: 100%;
	max-height: inherit;
}

/***/

header.headerCD .el_bottomHeader_38488457 .linkCol
{
	-ms-flex: 0 0 500px;
	flex: 0 0 500px;
	max-width: 500px;
	height: 100%;
}
header.headerCD .el_bottomHeader_38488457 .linkCol nav
{
	height: 100%;
}
header.headerCD .el_bottomHeader_38488457 .linkCol nav ul
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 100%;
}
header.headerCD .el_bottomHeader_38488457 .linkCol nav ul li
{
	height: 100%;
}
header.headerCD .el_bottomHeader_38488457 .linkCol nav ul li a
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-family: var(--font-family-2);
	line-height: 1.6rem;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .el_bottomHeader_38488457 .linkCol nav ul li a:hover,
header.headerCD .el_bottomHeader_38488457 .linkCol nav ul li a.active
{
	color: var(--color_6);
}
header.headerCD .el_bottomHeader_38488457 .linkCol nav ul li a::after
{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color_1);
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}
header.headerCD .el_bottomHeader_38488457 .linkCol nav ul li a:hover::after,
header.headerCD .el_bottomHeader_38488457 .linkCol nav ul li a.active::after
{
	height: 3px;
	opacity: 1;
	-webkit-transform: translateY(-3px);
	-moz-transform: translateY(-3px);
	transform: translateY(-3px);
}

/***/

header.headerCD .el_bottomHeader_38488457 .searchCol
{
	-ms-flex: 0 0 410px;
	flex: 0 0 410px;
	max-width: 410px;
}
/**/
header.headerCD .el_bottomHeader_38488457 .searchCol .openSearchBtn
{
	display: none;
	position: relative;
	border: none;
	background-color: transparent;
	margin: 0;
	padding: 0;
	width: 100%;
	color: var(--color_1);
}
header.headerCD .el_bottomHeader_38488457 .searchCol .openSearchBtn svg
{
	width: 31px;
	height: 31px;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .openSearchBtn svg path[stroke]
{
	stroke: var(--color_1);
}
header.headerCD .el_bottomHeader_38488457 .searchCol .openSearchBtn:hover svg path[stroke]
{
	stroke: var(--color_6);
}
header.headerCD .el_bottomHeader_38488457 .searchCol .openSearchBtn svg path[fill]
{
	fill: var(--color_1);
}
header.headerCD .el_bottomHeader_38488457 .searchCol .openSearchBtn:hover svg path[fill]
{
	fill: var(--color_6);
}
/**/
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock
{
	margin: 0 auto;
	max-width: 380px;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock.open
{
	position: absolute;
	background-color: var(--color_white);
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	max-width: 100%;
	z-index: 5;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .container-fluid
{
	padding-left: 0;
	padding-right: 0;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock.open .container-fluid
{
	padding-left: 15px;
	padding-right: 15px;
}

header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .searchWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock.open .searchWrapper
{
	height: 90px;
}
/**/
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .searchWrapper form
{
	position: relative;
	display: block;
	width: 100%;
	z-index: 5;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .searchWrapper form input
{
	padding: 0 50px 0 15px;
	width: 100%;
	height: 50px;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock form button
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	border: none;
	background-color: transparent;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
	cursor: pointer;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock form button svg
{
	width: 31px;
	height: 31px;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock form button svg path[stroke]
{
	stroke: var(--color_2);
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock form button svg path[fill]
{
	fill: var(--color_2);
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock form button:hover svg path[stroke]
{
	stroke: var(--color_1);
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock form button:hover svg path[fill]
{
	fill: var(--color_1);
}

/**/

header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .closeSearch
{
	display: none;
	-ms-flex: 0 0 70px;
	flex: 0 0 70px;
	max-width: 70px;
	text-align: right;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock.open .closeSearch
{
	display: block;
}
header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .closeSearch .closeSearchBtn
{
	position: relative;
	display: inline-block;
	z-index: 5;
}

/*****/

@media (max-width: 991px)
{
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock.open .searchWrapper
	{
		height: calc(42px + (60 - 42) * var(--width-coefficient));
	}
}

/*****/

.suggestSearchBlock
{
	position: relative;
	display: none;
	border-radius: 0;
	background-color: var(--color_white);
	width: 100%;
	height: auto;
	max-height: calc(100vh - 100px);
	z-index: 10;
	overflow: auto;
}
.searchBlock.open .suggestSearchBlock
{
	display: block;
}

.suggestSearchBlock:not(:empty)
{
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

/***/

.suggestSearchBlock .suggestSearchEmptyWrapper
{
	padding: 15px;
	text-align: center;
}
.suggestSearchBlock .suggestSearchWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 30px;
	padding: 15px;
}
.suggestSearchBlock .suggestSearchWrapper > div
{
	display: -ms-grid;
	display: grid;
	align-content: start;
	gap: 30px;
}

/***/

.suggestSearchBlock ul
{
}
.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;
}

/**/

.suggestSearchBlock .suggestSearchWrapper .offerList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 30px;
	row-gap: 15px;
}
.suggestSearchBlock .suggestSearchWrapper .offerList .title
{
	grid-column-start: 1;
	grid-column-end: 3;
}

/*****/

@media (max-width: 1200px)
{
	.suggestSearchBlock .suggestSearchWrapper
	{
		grid-template-columns: 1fr 2fr;
	}
}
@media (max-width: 991px)
{
	.suggestSearchBlock
	{
		max-height: calc(100vh - (42px + (60 - 42) * var(--width-coefficient)));
	}

	.suggestSearchBlock .suggestSearchWrapper
	{
		grid-template-columns: 1fr 1fr;
	}

	.suggestSearchBlock .suggestSearchWrapper .offerList
	{
		grid-template-columns: 1fr;
	}
	.suggestSearchBlock .suggestSearchWrapper .offerList .title
	{
		grid-column-start: 1;
		grid-column-end: 2;
	}
}
@media (max-width: 575px)
{
	.suggestSearchBlock .suggestSearchWrapper
	{
		grid-template-columns: 1fr;
	}
}

/*****/

@media (min-width: 992px)
{
	header.headerCD .el_bottomHeader_38488457 .btnCol.phoneCol,
	header.headerCD .el_bottomHeader_38488457 .btnCol.socialNetworkCol
	{
		display: none;
	}
}

/***/

header.headerCD .el_bottomHeader_38488457 .btnCol
{
	-ms-flex: 0 0 90px;
	flex: 0 0 90px;
	max-width: 90px;
}
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: transparent;
	margin: 0 auto;
	padding: 0;
	color: var(--color_1);
}
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn:hover,
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn.active
{
	color: var(--color_1);
}
/**/

header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .ico
{
	position: relative;
	display: inline-block;
	width: 31px;
}
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .ico svg
{
	width: 31px;
	height: 31px;
}
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn.active .ico svg,
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn:hover .ico svg
{
}
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .ico svg path[stroke]
{
	stroke: var(--color_1);
}
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .ico svg path[fill]
{
	fill: var(--color_1);
}
/*header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn.active .ico svg path[stroke],*/
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn:hover .ico svg path[stroke]
{
	stroke: var(--color_6);
}
/*header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn.active .ico svg path[fill],*/
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn:hover .ico svg path[fill]
{
	fill: var(--color_6);
}
/**/
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .amount
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: var(--color_6);
	top: -10px;
	right: 2px;
	padding: 2px;
	min-width: 26px;
	height: 26px;
	font-size: 1.4rem;
	color: var(--color_white);
}
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .amount.empty
{
	opacity: 0;
}
header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn:hover .amount
{
	background-color: var(--color_1);
	opacity: 1;
}

/*****/

header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock
{
	height: 100%;
}
header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock .cartBtnWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock .cartBtnWrapper .itemBtn
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock .cartBtnWrapper .el_cartInfoBlock_38488457
{
	position: absolute;
	display: none;
	background-color: var(--color_15_40);
	top: 100%;
	left: 0;
	right: 0;
	width: 100%;
	/*height: calc(100vh - 90px);*/
	height: 100vh;
	z-index: 5;
}
header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock .cartBtnWrapper.open .el_cartInfoBlock_38488457
{
	display: block;
}
header.headerCD .el_cartInfoBlock_38488457 .closeDiv
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .wrapper
{
	position: relative;
	border-top: 1px solid var(--color_1);
	background-color: var(--color_5);
	margin: 0 38px 0 auto;
	padding: 22px 38px 38px 48px;
	max-width: 600px;
	width: 100%;
	/*max-height: 100%;*/
	max-height: calc(100% - 90px);
	overflow-y: auto;
	z-index: 5;
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .wrapper .closeBtn
{
	position: absolute;
	display: block;
	border: none;
	background: none;
	top: 25px;
	right: 25px;
}
header.headerCD .el_cartInfoBlock_38488457 .wrapper .closeBtn svg
{
	width: 20px;
	height: 20px;
}
header.headerCD .el_cartInfoBlock_38488457 .wrapper .closeBtn svg path[fill]
{
	fill: var(--color_2);
}
header.headerCD .el_cartInfoBlock_38488457 .wrapper .closeBtn svg path[stroke]
{
	stroke: var(--color_2);
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .titleBlock
{
	margin-bottom: 15px;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	color: var(--color_1);
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .line
{
	background-color: var(--color_1);
	margin-right: 35px;
	height: 1px;
}

header.headerCD .el_cartInfoBlock_38488457 .offerBlock
{
	position: relative;
	padding-right: 18px;
	max-height: 385px;
	overflow: auto;
}

header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem
{
	display: -ms-flex;
	display: flex;
	border-bottom: 1px solid var(--color_1);
	padding: 20px 0;
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem:last-child
{
	border-bottom: none;
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .imageBlock
{
	-ms-flex: 0 0 100px;
	flex: 0 0 100px;
	max-width: 100px;
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .imageBlock .el
{
	background-color: var(--color_white);
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock
{
	-ms-flex: 0 0 calc(100% - 100px);
	flex: 0 0 calc(100% - 100px);
	max-width: calc(100% - 100px);
	padding-left: 15px;
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock p
{
	margin-top: 5px;
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_2);
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock p:first-child
{
	margin-top: 0;
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .title a
{
	display: inline-block;
	line-height: 2.7rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color_1);
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .title a:hover
{
	color: var(--color_6);
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .priceLine
{
	text-align: right;
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .priceLine .oldPrice
{
	display: block;
	margin-right: 10px;
	font-family: var(--font-family-2);
	line-height: 1.2;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: line-through;
	color: var(--color_2);
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .priceLine .oldPrice.hide
{
	display: none;
}
header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .priceLine .price
{
	display: block;
	font-family: var(--font-family-2);
	line-height: 2.7rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color_1);
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .empty
{
	border-bottom: 1px solid var(--color_1);
	margin: 0px 20px;
	padding: 20px 0;
	line-height: 1.4;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--color_1);
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .totalBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 30px 0 20px 0;
	margin-right: 35px;
	line-height: 2rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color_1);
}
header.headerCD .el_cartInfoBlock_38488457 .totalBlock .title
{
}
header.headerCD .el_cartInfoBlock_38488457 .totalBlock .sum
{
	font-size: 2rem;
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .textBlock
{
}
header.headerCD .el_cartInfoBlock_38488457 .textBlock .text
{
	margin-top: 7px;
	line-height: 2.5rem;
	font-size: 1.8rem;
	color: var(--color_6);
}
/**/
header.headerCD .el_cartInfoBlock_38488457 .buttonBlock
{
	margin: 0px 20px;
	padding: 20px 0;
}
header.headerCD .el_cartInfoBlock_38488457 .buttonBlock a
{
	width: 100%;
}

/***/

header.headerCD .el_cartInfoBlock_38488457 .buttonBlock
{
	margin-top: 20px;
	margin-right: 35px;
}
header.headerCD .el_cartInfoBlock_38488457 .buttonBlock .btn
{
	width: 100%;
	max-width: 100%;
}
header.headerCD .el_cartInfoBlock_38488457 .buttonBlock .link
{
	display: inline-block;
	margin-top: 25px;
	line-height: 2rem;
	font-size: 1.8rem;
	text-decoration: underline;
	color: var(--color_10);
	text-align: center;
}
header.headerCD .el_cartInfoBlock_38488457 .buttonBlock .link:hover
{
	color: var(--color_6);
}

/*****/

@media (max-width: 1680px)
{
	header.headerCD .el_cartInfoBlock_38488457 .wrapper
	{
		margin-right: calc(0px + (38 - 0) * var(--width-coefficient));
		padding-top: calc(20px + (22 - 20) * var(--width-coefficient));
		padding-right: calc(10px + (38 - 10) * var(--width-coefficient));
		/*padding-bottom: calc(30px + (38 - 30) * var(--width-coefficient));*/
		padding-left: calc(15px + (48 - 15) * var(--width-coefficient));
	}
	header.headerCD .el_cartInfoBlock_38488457 .wrapper .closeBtn
	{
		top: calc(17px + (30 - 17) * var(--width-coefficient));
		right: calc(20px + (25 - 20) * var(--width-coefficient));
	}

	/**/
	header.headerCD .el_cartInfoBlock_38488457 .titleBlock
	{
		line-height: calc(14px + (29 - 14) * var(--width-coefficient));
		font-size: calc(12px + (24 - 12) * var(--width-coefficient));
	}
	/**/
	header.headerCD .el_cartInfoBlock_38488457 .line
	{
		margin-right: calc(10px + (35 - 10) * var(--width-coefficient));
	}

	header.headerCD .el_cartInfoBlock_38488457 .offerBlock
	{
		max-height: 385px;
	}

	/**/
	header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .imageBlock
	{
		-ms-flex: 0 0 calc(65px + (100 - 65) * var(--width-coefficient));
		flex: 0 0 calc(65px + (100 - 65) * var(--width-coefficient));
		max-width: calc(65px + (100 - 65) * var(--width-coefficient));
	}
	/**/
	header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock
	{
		-ms-flex: 0 0 calc(100% - calc(65px + (100 - 65) * var(--width-coefficient)));
		flex: 0 0 calc(100% - calc(65px + (100 - 65) * var(--width-coefficient)));
		max-width: calc(100% - calc(65px + (100 - 65) * var(--width-coefficient)));
	}
	header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock p
	{
		line-height: calc(11px + (20 - 11) * var(--width-coefficient));
		font-size: calc(9px + (15 - 9) * var(--width-coefficient));
	}
	header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .title a
	{
		line-height: calc(15px + (27 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}
	header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .priceLine .oldPrice
	{
		font-size: calc(9px + (15 - 9) * var(--width-coefficient));
	}
	header.headerCD .el_cartInfoBlock_38488457 .offerBlock .offerItem .infoBlock .priceLine .price
	{
		line-height: calc(15px + (27 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}
	/**/
	header.headerCD .el_cartInfoBlock_38488457 .totalBlock
	{
		margin-right: calc(10px + (35 - 10) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
	header.headerCD .el_cartInfoBlock_38488457 .totalBlock .sum
	{
		font-size: calc(12px + (20 - 12) * var(--width-coefficient));
	}
	/**/
	header.headerCD .el_cartInfoBlock_38488457 .textBlock .text
	{
		line-height: calc(15px + (25 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}

	/***/

	header.headerCD .el_cartInfoBlock_38488457 .buttonBlock
	{
		margin-right: calc(10px + (35 - 10) * var(--width-coefficient));
	}
	header.headerCD .el_cartInfoBlock_38488457 .buttonBlock .link
	{
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
}

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

header.headerCD .catalogMenuBlock
{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100vh;
	/*height: calc(100vh - 128px);*/
}
header.headerCD .catalogMenuBlock.open
{
	display: block;
}
header.headerCD .catalogMenuBlock .innerWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: calc(((100% - var(--site-width-max-width)) / 2) + 15px) 150px 1fr 500px;
	background-color: var(--color_white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	max-height: 100vh;
	overflow: auto;
}
/**/
header.headerCD .catalogMenuBlock .clearCol
{
}
/**/
header.headerCD .catalogMenuBlock .wobblerCol
{
	padding: 30px 0;
}
header.headerCD .catalogMenuBlock .wobblerCol ul
{
	max-width: 110px;
}
header.headerCD .catalogMenuBlock .wobblerCol ul li
{
	margin-top: 20px;
}
header.headerCD .catalogMenuBlock .wobblerCol ul li:first-child
{
	margin-top: 0;
}
header.headerCD .catalogMenuBlock .wobblerCol ul li a
{
	display: block;
	padding: 5px 10px;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
}
header.headerCD .catalogMenuBlock .wobblerCol ul li a.SOFTSHELL
{
	background-color: #3D7CC9;
	color: var(--color_white);
}
/**/
header.headerCD .catalogMenuBlock .listBlock
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 300px 1fr;
	border-left: 1px solid var(--color_2);
	padding: 30px 0;
}
header.headerCD .catalogMenuBlock .listBlock ul.mainUL
{
	position: relative;
	/*max-width: 300px;*/
	/*width: 100%;*/
}
header.headerCD .catalogMenuBlock .listBlock ul.mainUL li
{
}
header.headerCD .catalogMenuBlock .listBlock ul.mainUL li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 30px;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .catalogMenuBlock .listBlock ul.mainUL li a:hover,
header.headerCD .catalogMenuBlock .listBlock ul.mainUL li a.active
{
	color: var(--color_6);
}
header.headerCD .catalogMenuBlock .listBlock ul.mainUL li a .ico
{
	display: block;
	width: 24px;
	height: 24px;
}

/***/
header.headerCD .catalogMenuBlock .listBlock .subBlock
{
	display: none;
	padding: 0 15px;
}
header.headerCD .catalogMenuBlock .listBlock .subBlock.open
{
	display: block;
}
header.headerCD .catalogMenuBlock .listBlock .subBlock ul
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 30px;
	row-gap: 15px;
}
header.headerCD .catalogMenuBlock .listBlock .subBlock ul li
{
}
header.headerCD .catalogMenuBlock .listBlock .subBlock ul li a
{
	line-height: 1;
	font-size: 1.6rem;
	font-weight: 400;
	text-transform: none;
	color: var(--color_2);
}
header.headerCD .catalogMenuBlock .listBlock .subBlock ul li a:hover,
header.headerCD .catalogMenuBlock .listBlock .subBlock ul li a.active
{
	color: var(--color_6);
}
/**/
header.headerCD .catalogMenuBlock .aboutCol
{
	padding: 0;
}
header.headerCD .catalogMenuBlock .aboutCol .abountBlock
{
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	/*padding-bottom: 151.844262295082%;*/
}
header.headerCD .catalogMenuBlock .aboutCol .abountBlock a
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;

	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px;
	width: 100%;
	height: 100%;
}
header.headerCD .catalogMenuBlock .aboutCol .abountBlock a .infoBlock
{
	display: block;
	width: 100%;
	text-align: center;
}
header.headerCD .catalogMenuBlock .aboutCol .abountBlock a .title
{
	display: block;
	line-height: 2.9rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color_white);
}
header.headerCD .catalogMenuBlock .aboutCol .abountBlock a:hover .title
{
	/*color: var(--color_6);*/
}
header.headerCD .catalogMenuBlock .aboutCol .abountBlock a .btn
{
	margin-top: 20px;
}

/*****/

@media (max-width: 1680px)
{
	header.headerCD .catalogMenuBlock .innerWrapper
	{
		grid-template-columns: calc(((100% - var(--site-width-max-width)) / 2) + 15px) 150px 1fr calc(150px + (500 - 150) * var(--width-coefficient));
	}

	header.headerCD .catalogMenuBlock .listBlock
	{
		grid-template-columns: calc(160px + (300 - 160) * var(--width-coefficient)) 1fr;
	}
	header.headerCD .catalogMenuBlock .listBlock .subBlock ul li a
	{
		font-size: calc(12px + (16 - 12) * var(--width-coefficient));
	}
	header.headerCD .catalogMenuBlock .aboutCol .abountBlock a .title
	{
		line-height: calc(22px + (29 - 22) * var(--width-coefficient));
		font-size: calc(18px + (25 - 18) * var(--width-coefficient));
	}
}
@media (max-width: 1480px)
{
	header.headerCD .catalogMenuBlock .innerWrapper
	{
		grid-template-columns: calc(((100% - var(--site-width-max-width)) / 2) + 15px) calc(120px + (150 - 120) * var(--width-coefficient)) 1fr calc(0px + (400 - 0) * var(--width-coefficient));
	}
	header.headerCD .catalogMenuBlock .listBlock .subBlock ul
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 991px)
{
	header.headerCD .catalogMenuBlock.open
	{
		display: none;
	}
}

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

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 .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 .itemBtn.openSearchBtn .ico svg path
{
	stroke: var(--color_1);
}
/**/
header.headerCD .headerMobileCD .itemBtn.catalogBtn .ico svg rect
{
	fill: var(--color_1);
}
/**/
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_6);
	top: -3px;
	right: -3px;
	padding: 2px;
	min-width: 16px;
	height: 16px;
	font-size: 1.1rem;
	color: var(--color_1);
}
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 .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_1);
}

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_1);
}

/***/

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%;
	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%;
}
header.headerCD .headerMobileCD .searchCol .searchBlock .searchWrapper form input
{
	border-radius: 2px;
	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_1);
}
/**/
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 .burgerBtnCol .burgerBtn.open .burger span
{
	background-color: transparent;
}

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

@media (max-width: 1680px)
{
	header.headerCD .el_topHeader_38488457 .delCol.d3
	{
		-ms-flex: 0 0 305px;
		flex: 0 0 305px;
		max-width: 305px;
	}
}
@media (max-width: 1540px)
{
	header.headerCD .el_topHeader_38488457 .delCol.d1
	{
		display: none;
	}
	header.headerCD .el_topHeader_38488457 .delCol.d2
	{
		-ms-flex: 0 0 179px;
		flex: 0 0 179px;
		max-width: 179px;
	}

	header.headerCD .el_bottomHeader_38488457 .delCol.d1
	{
		-ms-flex: 0 0 60px;
		flex: 0 0 60px;
		max-width: 60px;
	}
}
@media (max-width: 1480px)
{
	header.headerCD .el_topHeader_38488457 .delCol.d2
	{
		-ms-flex: 0 0 149px;
		flex: 0 0 149px;
		max-width: 149px;
	}
	header.headerCD .el_topHeader_38488457 .delCol.d3
	{
		-ms-flex: 0 0 268px;
		flex: 0 0 268px;
		max-width: 268px;
	}

	header.headerCD .el_bottomHeader_38488457 .linkCol
	{
		-ms-flex: 0 0 480px;
		flex: 0 0 480px;
		max-width: 480px;
	}
	header.headerCD .el_bottomHeader_38488457 .delCol.d1
	{
		display: none;
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol
	{
		-ms-flex: 0 0 80px;
		flex: 0 0 80px;
		max-width: 80px;
	}
}
@media (max-width: 1366px)
{
	header.headerCD .el_topHeader_38488457 .socialNetworkCol
	{
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		max-width: unset;
	}
	header.headerCD .el_topHeader_38488457 .delCol.d2
	{
		-ms-flex: 0 0 95px;
		flex: 0 0 95px;
		max-width: 95px;
	}
	header.headerCD .el_topHeader_38488457 .delCol.d3
	{
		-ms-flex: 0 0 209px;
		flex: 0 0 209px;
		max-width: 209px;
	}

	header.headerCD .el_bottomHeader_38488457 .linkCol
	{
		-ms-flex: 0 0 420px;
		flex: 0 0 420px;
		max-width: 420px;
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol
	{
		-ms-flex: 0 0 300px;
		flex: 0 0 300px;
		max-width: 300px;
	}

	header.headerCD .el_bottomHeader_38488457 .btnCol
	{
		-ms-flex: 0 0 60px;
		flex: 0 0 60px;
		max-width: 60px;
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .amount
	{
		right: -10px;
	}
}
@media (max-width: 1200px)
{
	header.headerCD .el_topHeader_38488457 .navCol nav ul li
	{
		padding: 0 10px;
	}
	header.headerCD .el_topHeader_38488457 .delCol.d2
	{
		display: none;
	}
	header.headerCD .el_topHeader_38488457 .delCol.d3
	{
		-ms-flex: 0 0 100px;
		flex: 0 0 100px;
		max-width: 100px;
	}

	header.headerCD .el_bottomHeader_38488457 .logoCol
	{
		-ms-flex: 0 0 calc(90px + (200 - 90) * var(--width-coefficient));
		flex: 0 0 calc(90px + (200 - 90) * var(--width-coefficient));
		max-width: calc(90px + (200 - 90) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .linkCol
	{
		-ms-flex: 0 0 360px;
		flex: 0 0 360px;
		max-width: 360px;
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol
	{
		-ms-flex: 0 0 260px;
		flex: 0 0 260px;
		max-width: 260px;
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol
	{
		-ms-flex: 0 0 58px;
		flex: 0 0 58px;
		max-width: 58px;
	}
	header.headerCD .el_bottomHeader_38488457 .delCol
	{
		display: none;
	}
}
@media (max-width: 991px)
{
	header.headerCD .el_topHeader_38488457
	{
		display: none;
	}

	header.headerCD .el_bottomHeader_38488457
	{
		height: calc(43px + (61 - 43) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .fixedHeader
	{
		height: calc(42px + (60 - 42) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .fixedHeaderRow
	{
		height: calc(42px + (60 - 42) * var(--width-coefficient));
	}

	header.headerCD .el_bottomHeader_38488457 .burgerBtnCol
	{
		display: block;
		-ms-flex: 0 0 calc(100px + (190 - 100) * var(--width-coefficient));
		flex: 0 0 calc(100px + (190 - 100) * var(--width-coefficient));
		max-width: calc(100px + (190 - 100) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .burgerBtn
	{
		width: calc(20px + (30 - 20) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .burgerBtn .burger
	{
		width: 100%;
		height: calc(14px + (40 - 14) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .burgerBtn .burger span::before
	{
		-webkit-transform: translateY(calc((5px + (10 - 5) * var(--width-coefficient)) * -1));
		-moz-transform: translateY(calc((5px + (10 - 5) * var(--width-coefficient)) * -1));
		-ms-transform: translateY(calc((5px + (10 - 5) * var(--width-coefficient)) * -1));
		-o-transform: translateY(calc((5px + (10 - 5) * var(--width-coefficient)) * -1));
		transform: translateY(calc((5px + (10 - 5) * var(--width-coefficient)) * -1));
	}
	header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .burgerBtn .burger span::after
	{
		-webkit-transform: translateY(calc(5px + (10 - 5) * var(--width-coefficient)));
		-moz-transform: translateY(calc(5px + (10 - 5) * var(--width-coefficient)));
		-ms-transform: translateY(calc(5px + (10 - 5) * var(--width-coefficient)));
		-o-transform: translateY(calc(5px + (10 - 5) * var(--width-coefficient)));
		transform: translateY(calc(5px + (10 - 5) * var(--width-coefficient)));
	}
	header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .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);
	}
	header.headerCD .el_bottomHeader_38488457 .burgerBtnCol .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);
	}

	header.headerCD .el_bottomHeader_38488457 .logoCol .logo
	{
		position: relative;
		top: 2px;
	}

	header.headerCD .el_bottomHeader_38488457 .delCol.d0
	{
		display: block;
	}

	header.headerCD .el_bottomHeader_38488457 .linkCol
	{
		display: none;
	}

	header.headerCD .el_bottomHeader_38488457 .searchCol
	{
		-ms-flex: 0 0 calc(25px + (60 - 25) * var(--width-coefficient));
		flex: 0 0 calc(25px + (60 - 25) * var(--width-coefficient));
		max-width: calc(25px + (60 - 25) * var(--width-coefficient));
	}

	header.headerCD .el_bottomHeader_38488457 .searchCol .openSearchBtn
	{
		display: block;
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .openSearchBtn svg
	{
		width: calc(15px + (31 - 15) * var(--width-coefficient));
		height: calc(15px + (31 - 15) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock
	{
		display: none;
		position: absolute;
		background-color: var(--color_white);
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		height: 100%;
		z-index: -5;
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock.open
	{
		display: block;
		z-index: 5;
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .container-fluid
	{
		height: 100%;
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .closeSearch
	{
		display: block;
		-ms-flex: 0 0 calc(40px + (70 - 40) * var(--width-coefficient));
		flex: 0 0 calc(40px + (70 - 40) * var(--width-coefficient));
		max-width: calc(40px + (70 - 40) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .closeSearch .closeSearchBtn
	{
		width: calc(25px + (40 - 25) * var(--width-coefficient));
		height: calc(25px + (40 - 25) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .searchWrapper form input
	{
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock .searchWrapper form input
	{
		padding-right: calc(30px + (50 - 30) * var(--width-coefficient));
		padding-left: calc(10px + (15 - 10) * var(--width-coefficient));
		height: calc(30px + (40 - 30) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock form button
	{
		width: calc(30px + (40 - 30) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .searchCol .searchBlock form button svg
	{
		width: calc(20px + (31 - 20) * var(--width-coefficient));
		height: calc(20px + (31 - 20) * var(--width-coefficient));
	}

	header.headerCD .el_bottomHeader_38488457 .btnCol
	{
		-ms-flex: 0 0 calc(24px + (50 - 24) * var(--width-coefficient));
		flex: 0 0 calc(24px + (50 - 24) * var(--width-coefficient));
		max-width: calc(24px + (50 - 24) * var(--width-coefficient));
		z-index: 2;
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol.socialNetworkCol
	{
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		max-width: unset;
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .ico
	{
		width: calc(15px + (31 - 15) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .ico svg
	{
		width: calc(15px + (31 - 15) * var(--width-coefficient));
		height: calc(15px + (31 - 15) * var(--width-coefficient));
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .amount
	{
		top: calc((5px + (-10 - 5) * var(--width-coefficient)) * -1);
		right: calc((3px + (2 - 3) * var(--width-coefficient)) * -1);
		min-width: calc(13px + (20 - 13) * var(--width-coefficient));
		height: calc(13px + (20 - 13) * var(--width-coefficient));
		font-size: calc(10px + (14 - 10) * var(--width-coefficient));
	}

	header.headerCD .el_bottomHeader_38488457 .btnCol.loginCol,
	header.headerCD .el_bottomHeader_38488457 .btnCol.wishListBlock
	{
		display: none;
	}

	header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock
	{
		padding-right: 0;
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock .itemBtn
	{
		justify-content: flex-end;
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock .cartBtnWrapper .itemBtn .ico svg path[stroke]
	{
		stroke: var(--color_white)
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol.cartBlock .cartBtnWrapper .itemBtn .ico svg path[fill]
	{
		fill: var(--color_white)
	}

	header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn .amount
	{
		background-color: var(--color_white);
		color: var(--color_1);
	}
	header.headerCD .el_bottomHeader_38488457 .btnCol .itemBtn:hover .amount
	{
		background-color: var(--color_1);
		color: var(--color_white);
	}

	header.headerCD .el_bottomHeader_38488457 .bgCol
	{
		position: relative;
		height: 100%;
		z-index: 1;
	}
	header.headerCD .el_bottomHeader_38488457 .bgCol > div
	{
		position: absolute;
		background-color: var(--color_6);
		top: 0;
		left: calc((24px + (50 - 24) * var(--width-coefficient)) * -1);
		bottom: 0;
		width: calc(24px + (50 - 24) * var(--width-coefficient));
		height: 100%;
	}
	header.headerCD .el_bottomHeader_38488457 .bgCol > div::before
	{
		position: absolute;
		display: block;
		content: "";
		left: -8px;
		bottom: 0;
		width: 0;
		height: 0;

		border: 16px solid transparent;
		border-bottom-color: var(--color_6);
	}
	header.headerCD .el_bottomHeader_38488457 .bgCol > div::after
	{
		position: absolute;
		display: block;
		content: "";
		top: 0;
		right: -15px;
		bottom: 0;
		width: 15px;
		height: 100%;

		background-color: var(--color_6);
	}
}

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

header.headerCD #showMenuButton,
header.headerCD #closeMenuButton
{
	cursor: pointer;
}
header.headerCD #closeMenuButton
{
	background-color: transparent;
	border: none;
	width: 100%;
	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: 255px;
	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: 12px;
	border-bottom: 1px solid var(--color_3);
}
/**/
header.headerCD .mobileMenuBlock .itemTitle
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1.6rem;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .itemTitle .toggleBtn
{
	position: relative;
	display: block;
	margin-left: 10px;
	width: 15px;
	height: 15px;
	font-size: 1.4rem;
	border: none;
	cursor: pointer;
}
header.headerCD .mobileMenuBlock .itemTitle .toggleBtn::before
{
	position: absolute;
	display: block;
	content: "\f107";
	font-family: FontAwesome;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
header.headerCD .mobileMenuBlock .itemTitle .toggleBtn.open:before
{
	content: "\f106";
}
/**/
header.headerCD .mobileMenuBlock .itemContent
{
	display: none;
	margin-top: 10px;
}
header.headerCD .mobileMenuBlock .itemContent.open
{
	display: block;
}

/**/

header.headerCD .mobileMenuBlock .itemBlock.logoBlock,
header.headerCD .mobileMenuBlock .itemBlock.profileBlock
{
	border-bottom: none;
}
header.headerCD .mobileMenuBlock .itemBlock.profileBlock
{
	border-bottom: none;
}

/***/

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

/***/

header.headerCD .mobileMenuBlock .topBlock .logoCol
{
}
header.headerCD .mobileMenuBlock .topBlock .logoCol .logo
{
	display: block;
	max-width: 140px;
	max-height: 30px;
}
header.headerCD .mobileMenuBlock .topBlock .logoCol .logo img
{
	max-width: 100%;
	max-height: inherit;
}

/***/

header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol
{
	-ms-flex: 0 0 50px;
	flex: 0 0 50px;
	max-width: 50px;
}
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_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
{
}
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;
	font-family: var(--font-family-2);
	letter-spacing: 0.15em;
	line-height: 1.2rem;
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li.separator
{
	display: inline-block;
	background-color: var(--color_white);
	margin: 0 7px;
	width: 2px;
	height: 10px;
}

header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li a
{
	color: var(--color_white);
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li a:hover
{
	color: var(--color_6);
}

/***/

header.headerCD .mobileMenuBlock .mainLinkBlock
{
	border-bottom: none;
	padding: 0;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul
{
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li
{
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li:first-child
{
	margin-top: 0;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--color_3);
	padding: 12px;
	font-family: var(--font-family-2);
	letter-spacing: 0.15em;
	font-weight: 600;
	line-height: 1.5rem;
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li a.catalog
{
	gap: 5px;
	font-size: 1.4rem;
	font-weight: bold;
}
/**/
header.headerCD .mobileMenuBlock .mainLinkBlock ul li.wobblerMobile
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--color_3);
	padding: 12px;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li.wobblerMobile a
{
	display: inline-block;
	border: none;
	padding: 0;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li.wobblerMobile a span.wobbler
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	padding: 2px 6px;
	width: auto;
	line-height: 1.2rem;
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li.wobblerMobile a span.SOFTSHELL
{
	background-color: #3D7CC9;
	color: var(--color_white);
}
/**/
header.headerCD .mobileMenuBlock .mainLinkBlock ul li a:hover,
header.headerCD .mobileMenuBlock .mainLinkBlock ul li a.active
{
	color: var(--color_6);
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li.sub > a
{
	justify-content: space-between;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li a .toggleBtn
{
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li a .toggleBtn::before
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin-left: 5px;
	content: "\f107";
	font-family: "FontAwesome";
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li a.open .toggleBtn::before
{
	content: "\f106";
}

header.headerCD .mobileMenuBlock .mainLinkBlock ul li ul
{
	display: none;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li ul.open
{
	display: block;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li ul li
{
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li ul li a
{
	padding: 12px 12px 12px 20px;
	text-transform: none;
}

/***/

header.headerCD .mobileMenuBlock .currencyAmdLangBlock
{
	border-bottom: none;
	padding-bottom: 0;
}
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;
	margin: 5px 15px 0 0;
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li:last-child
{
	margin-right: 0;
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li span,
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	border: 1px solid var(--color_3);
	min-width: 20px;
	height: 20px;
	/*letter-spacing: 0.2em;*/
	letter-spacing: 0.05rem;
	line-height: 1.2rem;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_3);
}
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li span,
header.headerCD .mobileMenuBlock .currencyAmdLangBlock ul li a:hover
{
	border: 1px solid var(--color_1);
	color: var(--color_1);
}

/***/

header.headerCD .mobileMenuBlock .contactsBlock
{
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul
{
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li
{
	margin-top: 5px;
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li:first-child
{
	margin-top: 0;
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a
{
	line-height: 1.6rem;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_2);
}
header.headerCD .mobileMenuBlock .contactsBlock ul li a:hover,
header.headerCD .mobileMenuBlock .contactsBlock ul li a.active
{
	color: var(--color_6);
}
/***/
header.headerCD .mobileMenuBlock .otherLinkBlock ul
{
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li
{
	margin-top: 10px;
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li:first-child
{
	margin-top: 0;
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a
{
	line-height: 1.6rem;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_2);
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a:hover,
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a.active
{
	color: var(--color_6);
}

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

@media (max-width: 991px)
{
	header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol
	{
		-ms-flex: 0 0 calc(28px + (50 - 28) * var(--width-coefficient));
		flex: 0 0 calc(28px + (50 - 28) * var(--width-coefficient));
		max-width: calc(28px + (50 - 28) * var(--width-coefficient));
	}
	header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol .burgerBtn .burger
	{
		width: 100%;
		height: calc(14px + (40 - 14) * var(--width-coefficient));
	}
	header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol .burgerBtn .burger span::before
	{
		-webkit-transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
		-moz-transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
		-ms-transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
		-o-transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
		transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
	}
	header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol .burgerBtn .burger span::after
	{
		-webkit-transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
		-moz-transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
		-ms-transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
		-o-transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
		transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
	}
	header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol .burgerBtn .burger span::before
	{
		-webkit-transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
		-moz-transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
		-ms-transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
		-o-transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
		transform: translateY(calc((4px + (10 - 4) * var(--width-coefficient)) * -1));
	}
	header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol .burgerBtn .burger span::after
	{
		-webkit-transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
		-moz-transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
		-ms-transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
		-o-transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
		transform: translateY(calc(4px + (10 - 4) * var(--width-coefficient)));
	}
	header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol .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);
	}
	header.headerCD .mobileMenuBlock .topBlock .burgerBtnCol .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);
	}
}
@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;
	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_3);
	padding: 12px;
}
header.headerCD .mobileCatalogBlock .titleBlock .title
{
	font-family: var(--font-family-2);
	letter-spacing: 0.15em;
	line-height: 1.5rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color_1);
}
header.headerCD .mobileCatalogBlock .titleBlock .title .arrow
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	margin-right: 15px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
header.headerCD .mobileCatalogBlock .titleBlock button.btnClose
{
	border: none;
	background-color: transparent;
	width: 20px;
	height: 20px;
}
header.headerCD .mobileCatalogBlock .titleBlock button.btnClose::before,
header.headerCD .mobileCatalogBlock .titleBlock button.btnClose::after
{
	width: 20px;
}

/***/
header.headerCD .mobileCatalogBlock .mobileContent .wobblerMobileBlock
{

}
header.headerCD .mobileCatalogBlock .mobileContent .wobblerMobileBlock li
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color_3);
	padding: 10px 12px;
}
header.headerCD .mobileCatalogBlock .mobileContent .wobblerMobileBlock li a.wobbler
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	padding: 2px 6px;
	width: auto;
	line-height: 1.2rem;
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
}

/***/

header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock
{
}
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock li
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color_3);
}
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock li a
{
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	width: 100%;
	letter-spacing: 0.04em;
	line-height: 1.4rem;
	font-size: 1.2rem;
	font-weight: 700; /*font-weight: 500;*/
	text-transform: uppercase;
	text-align: left;
	color: var(--color_1);
}
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock li a .ico
{
	display: block;
	width: 24px;
	height: 24px;
}

/*header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock li a.active,*/
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock li a:hover
{
	color: var(--color_6);
}
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock 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 .catalogsBlock .backBtn
{
	padding: 12px;
}
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock .backBtn a
{
	line-height: 1.5;
	font-size: 1.4rem;
}
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock .backBtn a i
{
	margin-right: 10px;
}
/**/
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock li .toggleBtn:hover
{
	color: var(--color_1);
}
header.headerCD .mobileCatalogBlock .mobileContent .catalogsBlock li .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 .catalogsBlock li .subCatalogBlock.open
{
	display: block;
}

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

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

@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_38488457
{
	position: relative;
}
.el_pageTitle_38488457 h1
{
	padding: 40px 0 40px 0;
	font-family: var(--font-family-2);
	letter-spacing: 0.15em;
	line-height: 3.6rem;
	font-size: 3rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_1);
}
.el_pageTitle_38488457.image
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	/*box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);*/
	padding-bottom: 26.04166666666667%;
}
.el_pageTitle_38488457.image.big
{
	padding-bottom: 39.0625%;
}
.el_pageTitle_38488457.image::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_black_35);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.el_pageTitle_38488457.image .innerWrapper
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;

	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.el_pageTitle_38488457.image h1
{
	padding: 10px 0 10px 0;
	line-height: 4.8rem;
	font-size: 4rem;
	color: var(--color_white);
}
.el_pageTitle_38488457.image .description
{
	line-height: 2.9rem;
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_white);
}
.el_pageTitle_38488457 .btnLine
{
	margin-top: 30px;
}

@media (max-width: 1680px)
{
	.el_pageTitle_38488457 h1
	{
		padding-top: calc(30px + (40 - 30) * var(--width-coefficient));
		padding-bottom: calc(15px + (40 - 15) * var(--width-coefficient));

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

	/*.el_pageTitle_38488457.image.big*/
	/*{*/
	/*	padding-bottom: calc(34.0625% + (39.0625 - 34.0625) * var(--width-coefficient));*/
	/*}*/
	.el_pageTitle_38488457.image h1
	{
		padding: 10px 0 10px 0;
		line-height: calc(22px + (48 - 22) * var(--width-coefficient));
		font-size: calc(20px + (40 - 20) * var(--width-coefficient));
	}
	.el_pageTitle_38488457.image .description
	{
		line-height: calc(16px + (29 - 16) * var(--width-coefficient));
		font-size: calc(14px + (25 - 14) * var(--width-coefficient));
	}
}
@media (max-width: 767px)
{
	.el_pageTitle_38488457.wholesaleCustomers.image
	{
		padding-bottom: 40%;
	}

	.el_pageTitle_38488457.image.big
	{
		padding-bottom: 58.643%;
	}
}
@media (max-width: 480px)
{
	.el_pageTitle_38488457.wholesaleCustomers.image
	{
		padding-bottom: 60%;
	}

	.el_pageTitle_38488457.image.big
	{
		padding-bottom: 75.375%;
	}
}

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

.asideBlockCD
{
}
.asideBlockCD .asideMainContent
{
	position: relative;
}
.asideBlockCD .asideMainContent .closeButton
{
	display: none;
	height: 50px;
	padding: 10px;
	text-align: center;
}
.asideBlockCD .asideMainContent .closeButton .title
{
	line-height: 2rem;
	font-size: 1.8rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}
.asideBlockCD .asideMainContent .closeButton .btnClose
{
	-ms-flex: 0 0 25px;
	flex: 0 0 25px;
	max-width: 25px;
	height: 25px;
}

/****/

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

.asideBlockCD .asideMenuButtonsBlock
{
	display: none;
	position: relative;
	height: 60px;
}
.asideBlockCD .asideMenuButtonsBlock.offerList > div
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-around;
	top: 0;
	left: 0;
	padding: 14px 0;
	width: 100%;
	-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_black_50);
	z-index: 100;
}
.asideBlockCD .asideMenuButtonsBlock.scroll.fixed > div
{
	top: 60px;
}

.asideBlockCD .asideMenuButtonsBlock button
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 0;
	border-color: var(--color_3);
	width: 50%;
	height: 32px;
	font-family: var(--font-family-1);
	letter-spacing: unset;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: none;
	color: var(--color_3);
	cursor: pointer;
}
.asideBlockCD .asideMenuButtonsBlock button::after
{
	content: "\f107";
	font-family: FontAwesome;
}

/****/

.asideBlockCD .asideWidget
{
	margin-bottom: 25px;
	border-radius: 2px;
	border: 1px solid var(--color_2);
	background-color: var(--color_white);
}

/***/

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

	padding: 10px 25px 10px 15px;
	line-height: 2.6rem;
	font-size: 2.2rem;
	font-weight: 400;
	color: var(--color_1);
	cursor: pointer;
}
.asideBlockCD .asideTitle.open
{
}
.asideBlockCD .asideTitle::after
{
	position: absolute;
	display: block;
	content: "\f107";
	font-family: FontAwesome;
	top: 50%;
	right: 10px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.asideBlockCD .asideTitle.open::after
{
	content: "\f106";
}

/**/

.asideBlockCD .asideContent
{
	display: none;
	padding: 20px 20px 40px 40px;
}
.asideBlockCD .asideContent.open
{
	display: block;
}

/***/

.asideBlockCD .asideContent ul
{
}
.asideBlockCD .asideContent ul li
{
	position: relative;
	display: block;
	margin-top: 30px;
}
.asideBlockCD .asideContent ul li:first-child
{
	margin-top: 0;
}
.asideBlockCD .asideContent ul li a
{
	display: inline-block;
	line-height: 1.2;
	font-size: 2.2rem;
	font-weight: 400;
	color: var(--color_2);
}
.asideBlockCD .asideContent ul li a:hover,
.asideBlockCD .asideContent ul li a.active
{
	color: var(--color_6);
}
.asideBlockCD .asideContent ul li .toggleBtn
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	border: none;
	background: transparent;
	top: 3px;
	right: 0;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.asideBlockCD .asideContent ul li .toggleBtn::before,
.asideBlockCD .asideContent 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 .asideContent ul li .toggleBtn.open::before,
.asideBlockCD .asideContent ul li .toggleBtn.open::after
{
	background-color: var(--color_black);
}
.asideBlockCD .asideContent ul li .toggleBtn::before
{
	width: 83.33333333333333%;
	height: 2px;
}
.asideBlockCD .asideContent ul li .toggleBtn::after
{
	width: 2px;
	height: 83.33333333333333%;
}
.asideBlockCD .asideContent ul li .toggleBtn.open::after
{
	display: none;
}
.asideBlockCD .asideContent ul li ul
{
	display: none;
	padding-left: 15px;
	margin-top: 20px;
}
.asideBlockCD .asideContent ul li ul.open
{
	display: block;
}
.asideBlockCD .asideContent ul li ul li
{
	margin-top: 20px;
}
.asideBlockCD .asideContent ul li ul li a
{
	font-size: 2rem;
}

/******/

.asideBlockCD .showAndHideParameter
{
	margin-top: 30px;
}
.asideBlockCD .showAndHideParameter a
{
	position: relative;
	display: inline-block;
	padding-right: 20px;
	line-height: 1.2;
	font-size: 1.8rem;
	color: var(--color_10);
	cursor: pointer;
}
.asideBlockCD .showAndHideParameter a:hover
{
	color: var(--color_6);
}
.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-bottom: 30px;
}
.asideBlockCD .quickSearchBlock input
{
	padding: 0 15px;
	width: 100%;
	height: 50px;
	font-size: 1.8rem;
}

/***/

.asideMenuParameterBlock .parameterListBlock
{
	position: relative;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock
{
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul
{
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li
{
}
.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: inline-block;
	padding: 0 0 0 25px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.checked
{
	color: var(--color_6);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled
{
	opacity: 0.7;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled:hover
{
	color: var(--color_3);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a i
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	border: 1px solid var(--color_2);
	background-color: var(--color_white);
	top: 4px;
	left: 0;
	width: 18px;
	height: 18px;
}
/*.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a i::before*/
/*{*/
/*	position: absolute;*/
/*	display: block;*/
/*	content: "";*/
/*	background-image: url("../img/ico-check.svg");*/
/*	background-position: center center;*/
/*	background-repeat: no-repeat;*/
/*	top: 50%;*/
/*	left: 50%;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	-webkit-transform: translate(-50%, -50%);*/
/*	-ms-transform: translate(-50%, -50%);*/
/*	transform: translate(-50%, -50%);*/
/*}*/
.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_6);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled i::before
{
	content: "\f05e";
	font-family: "FontAwesome";
	background-image: none;
	background-color: transparent;
	width: 9px;
	height: 10px;
	line-height: 1;
	font-size: 1rem;
	color: var(--color_2);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a .offerAmount
{
	font-size: 1.8rem;
}

/*****/

.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL
{
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li
{
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a
{
	padding: 2px 0 2px 45px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a i
{
	border-radius: 30px;
	top: 0;
	width: 30px;
	height: 30px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a i::before
{
	border-radius: 30px;
	border: 1px solid transparent;
	background: none;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a:hover i::before
{
	border-color: var(--color_2);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a.checked i::before
{
	border-color: var(--color_6);
}

/***/

.asideMenuParameterBlock .parameterListBlock #parameterPreloader
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	content: "";
	background-color: var(--color_black_20);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;

	font-size: 1.6rem;
	color: var(--color_white);
}


/*****/

.asideBlockCD .asideProfileBlock
{
}
.asideBlockCD .asideProfileBlock ul
{
}
.asideBlockCD .asideProfileBlock ul li
{
}
.asideBlockCD .asideProfileBlock ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;

	background-color: var(--color_white);
	border-top: 1px solid var(--color_16);
	padding: 20px 37px;
}
.asideBlockCD .asideProfileBlock ul li:first-child a
{
	border-top: none;
}
.asideBlockCD .asideProfileBlock ul li a .ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid var(--color_1);
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
}
.asideBlockCD .asideProfileBlock ul li.exit a .ico
{
	border: none;
}
.asideBlockCD .asideProfileBlock ul li a:hover .ico,
.asideBlockCD .asideProfileBlock ul li a.active .ico
{
	border-color: var(--color_6);
}
.el_profileContent_38488457 .profileList .profileItem.exit a .ico
{
	border: none;
}
.asideBlockCD .asideProfileBlock ul li a .ico svg
{
	width: 26px;
	height: 26px;
}
.asideBlockCD .asideProfileBlock ul li a .ico svg path[fill]
{
	fill: var(--color_1);
}
.asideBlockCD .asideProfileBlock ul li a .ico svg path[stroke]
{
	stroke: var(--color_1);
}
.asideBlockCD .asideProfileBlock ul li a:hover .ico svg path[fill],
.asideBlockCD .asideProfileBlock ul li a.active .ico svg path[fill]
{
	fill: var(--color_6);
}
.asideBlockCD .asideProfileBlock ul li a:hover .ico svg path[stroke],
.asideBlockCD .asideProfileBlock ul li a.active .ico svg path[stroke]
{
	stroke: var(--color_6);
}
.asideBlockCD .asideProfileBlock ul li a .title
{
	padding-left: 10px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	stroke: var(--color_1);
}
.asideBlockCD .asideProfileBlock ul li a:hover .title,
.asideBlockCD .asideProfileBlock ul li a.active .title
{
	color: var(--color_6);
}

/*****/

@media (max-width: 1680px)
{
	.asideBlockCD .asideContent
	{
		display: none;
		padding: 20px 20px calc(20px + (40 - 20) * var(--width-coefficient)) calc(20px + (40 - 20) * var(--width-coefficient));
	}

	.asideBlockCD .asideTitle
	{
		line-height: calc(35px + (26 - 35) * var(--width-coefficient));
		font-size: calc(18px + (22 - 18) * var(--width-coefficient));
	}

	.asideBlockCD .asideContent ul li
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.asideBlockCD .asideContent ul li a
	{
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}
	.asideBlockCD .asideContent ul li .toggleBtn
	{
		top: calc(5px + (3 - 5) * var(--width-coefficient));
		width: calc(10px + (20 - 10) * var(--width-coefficient));
		height: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.asideBlockCD .asideContent ul li ul
	{
		margin-top: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-left: calc(5px + (15 - 5) * var(--width-coefficient));
	}
	.asideBlockCD .asideContent ul li ul li
	{
		margin-top: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.asideBlockCD .asideContent ul li ul li a
	{
		font-size: calc(10px + (20 - 10) * var(--width-coefficient));
	}

	.asideBlockCD .quickSearchBlock
	{
		margin-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.asideBlockCD .quickSearchBlock input
	{
		padding-left: calc(5px + (15 - 5) * var(--width-coefficient));
		padding-right: calc(5px + (15 - 5) * var(--width-coefficient));
		height: calc(32px + (50 - 32) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}

	.asideBlockCD .showAndHideParameter
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	.asideBlockCD .showAndHideParameter a
	{
		padding-right: calc(12px + (20 - 12) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a
	{
		padding-left: calc(18px + (25 - 18) * var(--width-coefficient));
	}
	.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a i
	{
		top: calc(2px + (4 - 2) * var(--width-coefficient));
		width: calc(14px + (18 - 14) * var(--width-coefficient));
		height: calc(14px + (18 - 14) * var(--width-coefficient));
	}
	.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a i::before
	{
		width: calc(4px + (8 - 4) * var(--width-coefficient));
		height: calc(4px + (8 - 4) * var(--width-coefficient));
	}
	.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled i::before
	{
		width: calc(7px + (9 - 7) * var(--width-coefficient));
		height: calc(8px + (10 - 8) * var(--width-coefficient));
		font-size: calc(8px + (10 - 8) * var(--width-coefficient));
	}
	.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a
	{
		padding-left: calc(35px + (45 - 35) * var(--width-coefficient));
	}
	.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a i
	{
		top: calc(2px + (0 - 2) * var(--width-coefficient));
		/*width: calc(16px + (30 - 16) * var(--width-coefficient));*/
		height: calc(16px + (30 - 16) * var(--width-coefficient));
	}
	.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a i::before
	{
		width: calc(100% + calc(6px + (10 - 6) * var(--width-coefficient)));
		height: calc(100% + calc(6px + (10 - 6) * var(--width-coefficient)));
	}

	.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a .offerAmount
	{
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	/*****/

	.asideBlockCD .asideProfileBlock ul li a
	{
		padding-top: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-right: calc(15px + (37 - 15) * var(--width-coefficient));
		padding-bottom: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-left: calc(15px + (37 - 15) * var(--width-coefficient));
	}
	.asideBlockCD .asideProfileBlock ul li a .ico
	{
		-ms-flex: 0 0 calc(30px + (40 - 30) * var(--width-coefficient));
		flex: 0 0 calc(30px + (40 - 30) * var(--width-coefficient));
		max-width: calc(30px + (40 - 30) * var(--width-coefficient));
		height: calc(30px + (40 - 30) * var(--width-coefficient));
	}
	.asideBlockCD .asideProfileBlock ul li a .ico svg
	{
		width: calc(16px + (26 - 16) * var(--width-coefficient));
		height: calc(16px + (26 - 16) * var(--width-coefficient));
	}
	.asideBlockCD .asideProfileBlock ul li a .title
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}

}
@media (max-width: 991px)
{
	.asideBlockCD .asideMenuButtonsBlock
	{
		display: block;
		height: calc(42px + (60 - 42) * var(--width-coefficient));
	}
	.asideBlockCD .asideMenuButtonsBlock.scroll.fixed > div
	{
		top: calc(42px + (60 - 42) * var(--width-coefficient));
	}

	.asideBlockCD .asideMainContent
	{
		position: fixed !important;
		background-color: var(--color_5);
		top: 0;
		left: -100%;
		padding: 0;
		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 .asideMainContent.open
	{
		left: 0;
		opacity: 1;
	}
	.asideBlockCD .asideMainContent.open .closeButton
	{
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.asideBlockCD .asideWidget
	{
		margin-bottom: 0;
		border-radius: 0;
		border: none;
		border-top: 1px solid var(--color_2);
		background-color: transparent;
	}
	.asideBlockCD .asideWidget:last-child
	{
		border-bottom: 1px solid var(--color_2);
	}

	.asideBlockCD .asideTitle
	{
		padding-left: 40px;
		padding-right: 40px;
	}
	.asideBlockCD .asideTitle::after
	{
		right: 30px;
	}

	.asideBlockCD .asideContent
	{
		padding: 0 40px 20px 40px;
	}

	/*****/

	.asideBlockCD .asideProfileBlock
	{
		display: none;
	}
}

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

/***** 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 .tabs li:hover,
.tabsBlock .tabs li.active
{
	border-color: var(--color_1);
	color: var(--color_1);
}
.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: 1680px)
{
	.tabsBlock .tabsContentBlock
	{
		margin-top: calc(15px + (40 - 15) * var(--width-coefficient));
	}
}

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

.moreItem
{
}
.moreItem .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 100px;
}
.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 > span
{
	display: block;
}
.moreItem .innerWrapper a .ico
{
	display: inline-block;
	margin: 0 auto;
}
.moreItem .innerWrapper a .ico svg
{
	width: 37px;
	height: 30px;
}
.moreItem .innerWrapper a .ico svg path[stroke]
{
	stroke: var(--color_2);
}
.moreItem .innerWrapper a:hover .ico svg path[stroke]
{
	stroke: var(--color_6);
}
.moreItem .innerWrapper a .ico svg path[fill]
{
	fill: var(--color_2);
}
.moreItem .innerWrapper a:hover .ico svg path[fill]
{
	fill: var(--color_6);
}
.moreItem .innerWrapper a .showMore
{
	display: block;
	margin-top: 5px;
	line-height: 1.9rem;
	font-size: 1.6rem;
	color: var(--color_1);
}
.moreItem .innerWrapper a:hover .showMore
{
	color: var(--color_6);
}
.moreItem .innerWrapper a .showing
{
	display: block;
	margin-top: 5px;
	line-height: 1.6rem;
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--color_2);
}

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

@media (max-width: 1680px)
{
	.moreItem .innerWrapper a .showMore
	{
		line-height: calc(18px + (19 - 18) * var(--width-coefficient));
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}

}
@media (max-width: 767px)
{
	.moreItem .innerWrapper a .ico svg
	{
		width: 27px;
		height: 20px;
	}
}

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

.indexTopBanner
{
}
.indexTopBanner .initBanner
{
	position: relative;
	margin-bottom: 0;
	width: 100%;
	max-height: 740px;
	overflow: hidden;
}
.indexTopBanner .initBanner .item
{
	display: none;
	position: relative;
	width: 100%;
	/*height: 100%;*/
	/*min-height: 740px;*/

}
.indexTopBanner .initBanner .item:first-child,
.indexTopBanner .initBanner.slick-slider .item
{
	display: block;
}
.indexTopBanner .initBanner .item::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1_40);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.indexTopBanner .initBanner .item > div
{
	position: relative;
	padding-bottom: 38.54166666666667%;
	width: 100%;
}

.indexTopBanner .initBanner .item .imageBlock
{
	position: absolute;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.indexTopBanner .initBanner .item .imageBlock picture
{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.indexTopBanner .initBanner .item .imageBlock picture img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.indexTopBanner .initBanner .item .infoBlock
{
	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;
	z-index: 3;
}
.indexTopBanner .initBanner .item .infoBlock .title
{
	font-family: var(--font-family-2);
	letter-spacing: 0.15em;
	line-height: 4.8rem;
	font-size: 4rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_white);
}
.indexTopBanner .initBanner .item .infoBlock .title2
{
	margin-top: 10px;
	line-height: 2.9rem;
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_white);
}
.indexTopBanner .initBanner .item .infoBlock .btnLine
{
	margin-top: 30px;
	text-align: center;
}

.indexTopBanner .initBanner.slick-slider .slick-arrow
{
	border-color: var(--color_white);
}
.indexTopBanner .initBanner.slick-slider .slick-arrow:hover
{
	border-color: var(--color_white);
}
.indexTopBanner .initBanner.slick-slider .slick-prev
{
	left: calc(50% - ((var(--site-width-max-width) / 2)  - 15px));
}
.indexTopBanner .initBanner.slick-slider .slick-next
{
	right: calc(50% - ((var(--site-width-max-width) / 2)  - 15px));
}

@media (max-width: 1680px)
{
	/*.indexTopBanner .initBanner*/
	/*{*/
	/*	max-height: calc(145px + (740 - 145) * var(--width-coefficient));*/
	/*}*/
	/*.indexTopBanner .initBanner .item*/
	/*{*/
	/*	min-height: calc(145px + (740 - 145) * var(--width-coefficient));*/
	/*}*/
	.indexTopBanner .initBanner .item .infoBlock .title
	{
		line-height: calc(18px + (48 - 18) * var(--width-coefficient));
		font-size: calc(14px + (40 - 14) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item .infoBlock .title2
	{
		margin-top: calc(5px + (10 - 5) * var(--width-coefficient));
		line-height: calc(14px + (29 - 14) * var(--width-coefficient));
		font-size: calc(10px + (25 - 10) * var(--width-coefficient));
	}

	.indexTopBanner .initBanner .item .infoBlock .btnLine
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item .infoBlock .btnLine .btn
	{
		height: calc(32px + (55 - 32) * var(--width-coefficient))
	}

}
/*
@media (max-width: 1540px)
{
	.indexTopBanner .initBanner
	{
		max-height: calc(200px + (594 - 200) * calc((100vw - 320px) / (1540 - 320)));
	}
	.indexTopBanner .initBanner .item
	{
		max-height: calc(200px + (594 - 200) * calc((100vw - 320px) / (1540 - 320)));
	}
}

@media (max-width: 1480px)
{
	.indexTopBanner .initBanner
	{
		max-height: calc(200px + (571 - 200) * calc((100vw - 320px) / (1480 - 320)));
	}
	.indexTopBanner .initBanner .item
	{
		max-height: calc(200px + (571 - 200) * calc((100vw - 320px) / (1480 - 320)));
	}
}

@media (max-width: 1366px)
{
	.indexTopBanner .initBanner
	{
		max-height: calc(200px + (527 - 200) * calc((100vw - 320px) / (1366 - 320)));
	}
	.indexTopBanner .initBanner .item
	{
		min-height: calc(200px + (527 - 200) * calc((100vw - 320px) / (1366 - 320)));
	}
}

@media (max-width: 1200px)
{
	.indexTopBanner .initBanner
	{
		max-height: calc(200px + (700 - 200) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item
	{
		min-height: calc(200px + (700 - 200) * var(--width-coefficient));
	}
}

@media (max-width: 991px)
{
	.indexTopBanner .initBanner
	{
		max-height: calc(200px + (540 - 200) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item
	{
		min-height: calc(200px + (540 - 200) * var(--width-coefficient));
	}
}
*/
@media (max-width: 480px)
{
	.indexTopBanner .initBanner .item > div
	{
		padding-bottom: 50%;
	}
}

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

.el_categoriesBlock_38488457
{
}
.el_categoriesBlock_38488457 .catalogList
{
}
.el_categoriesBlock_38488457 .catalogList.slick-slider
{
	margin-left: 0;
	margin-right: 0;
}

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

.el_informationBlock_38488457
{
}
.el_informationBlock_38488457 .informationList
{
}
.el_informationBlock_38488457 .informationList .el_informationListItem_38488457
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

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

.el_informationListItem_38488457
{
}
.el_informationListItem_38488457 .innerWrapper
{
	position: relative;
	display: block;
	height: 100%;
}

/**/
.el_informationListItem_38488457 .innerWrapper .img_wrap
{
	padding-bottom: 100%;
}
.el_informationListItem_38488457 .innerWrapper .img_wrap::before
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;

	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#800C0707',GradientType=0 ); /* IE6-9 */
}
.el_informationListItem_38488457 .innerWrapper:hover .img_wrap::before
{
	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#0C0707',GradientType=0 ); /* IE6-9 */
}
.el_informationListItem_38488457 .innerWrapper .img_wrap .el
{
	overflow: hidden;
}
.el_informationListItem_38488457 .innerWrapper .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.el_informationListItem_38488457 .innerWrapper .infoBlock
{
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	padding: 32px 57px 70px 57px;
	width: 100%;
	z-index: 5;
	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_informationListItem_38488457 .innerWrapper:hover .infoBlock
{
	left: 0;
	bottom: 30%;
	-webkit-transform: translate(0, 50%);
	-ms-transform: translate(0, 50%);
	transform: translate(0, 50%);
}
.el_informationListItem_38488457 .innerWrapper .infoBlock .title
{
	display: block;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_white);
}
/*.el_informationListItem_38488457 .innerWrapper:hover .infoBlock .title*/
/*{*/
/*	color: var(--color_6);*/
/*}*/
.el_informationListItem_38488457 .innerWrapper .infoBlock .description
{
	display: block;
	margin-top: 5px;
	max-height: 80px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_white);
	overflow: hidden;
}
.el_informationListItem_38488457 .innerWrapper .infoBlock .btn
{
	margin-top: 27px;
}
.el_informationListItem_38488457 .innerWrapper:hover .infoBlock .btn
{
	border-color: var(--color_white);
	background-color: var(--color_black_50);
	color: var(--color_white);
}

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

@media (max-width: 1680px)
{
	.el_informationListItem_38488457 .innerWrapper .infoBlock
	{
		padding-top: calc(15px + (32 - 15) * var(--width-coefficient));
		padding-right: calc(15px + (57 - 15) * var(--width-coefficient));
		padding-bottom: calc(15px + (70 - 15) * var(--width-coefficient));
		padding-left: calc(15px + (57 - 15) * var(--width-coefficient));
	}
	.el_articleSliderBlock_38488457 .el_informationListItem_38488457 .innerWrapper .infoBlock
	{
		padding-top: calc(28px + (32 - 28) * var(--width-coefficient));
		padding-right: calc(14px + (57 - 14) * var(--width-coefficient));
		padding-bottom: calc(28px + (32 - 28) * var(--width-coefficient));
		padding-left: calc(14px + (57 - 14) * var(--width-coefficient));
	}
	.el_informationListItem_38488457 .innerWrapper .infoBlock .title
	{
		line-height: calc(16px + (29 - 16) * var(--width-coefficient));
		font-size: calc(14px + (24 - 14) * var(--width-coefficient));
	}
	.el_informationListItem_38488457 .innerWrapper .infoBlock .description
	{
		margin-top: calc(3px + (5 - 3) * var(--width-coefficient));
		max-height: calc(40px + (80 - 40) * var(--width-coefficient));
		line-height: calc(14px + (28 - 14) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
	.el_informationListItem_38488457 .innerWrapper .infoBlock .btn
	{
		margin-top: calc(5px + (27 - 5) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
		max-width: calc(200px + (250 - 200) * var(--width-coefficient));
		height: calc(22px + (55 - 22) * var(--width-coefficient));
		line-height: calc(12px + (18 - 12) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 480px)
{
	.el_informationListItem_38488457 .innerWrapper .infoBlock .title
	{
		font-weight: 700;
	}
	.el_informationListItem_38488457 .innerWrapper .infoBlock .description
	{
		font-weight: 400;
	}
}

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

.el_offerSliderBlock_38488457
{
}

/***/

.el_offerSliderBlock_38488457 .offerListBlock
{
}
/**/
.el_offerSliderBlock_38488457 .offerListBlock .imageCol
{
	-ms-flex: 0 0 29.375%;
	flex: 0 0 29.375%;
	max-width: 29.375%;
	padding-left: 0;
}
.el_offerSliderBlock_38488457 .offerListBlock.left .imageCol
{
	padding-left: 0;
}
.el_offerSliderBlock_38488457 .offerListBlock.right .imageCol
{
	padding-right: 0;
	order: 3;
}
.el_offerSliderBlock_38488457 .offerListBlock .imageCol .imageBlock
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}
/**/
.el_offerSliderBlock_38488457 .offerListBlock .offerListCol
{
}
.el_offerSliderBlock_38488457 .offerListBlock.right .offerListCol
{
	order: 2;
}
/**/
.el_offerSliderBlock_38488457 .offerListBlock .clearCol
{
	-ms-flex: 0 0 calc((100% - var(--site-width-max-width)) / 2);
	flex: 0 0 calc((100% - var(--site-width-max-width)) / 2);
	max-width: calc((100% - var(--site-width-max-width)) / 2);
}
.el_offerSliderBlock_38488457 .offerListBlock.right .clearCol
{
	order: 1;
}

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

@media (max-width: 1200px)
{
	.el_offerSliderBlock_38488457 .offerListBlock .imageCol
	{
		display: none;
	}
	.el_offerSliderBlock_38488457 .offerListBlock .clearCol
	{
		display: none;
	}

	.el_offerSliderBlock_38488457.action
	{
		background-color: var(--color_3);
	}
}

@media (max-width: 575px)
{
	.el_offerSliderBlock_38488457.action
	{
		padding-bottom: 70px;
	}
}

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

.el_articleSliderBlock_38488457
{
}

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

.catalogListBlock
{
}

.brandListBlock
{
}

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

.el_catalogListBlock_38488457
{
}
.el_catalogListBlock_38488457 .catalogList
{
}
.el_catalogListBlock_38488457 .catalogList ul
{
	display: -ms-flex;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.el_catalogListBlock_38488457 .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_38488457 .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_38488457 .catalogList ul li a:hover
{
	color: var(--color_1);
}
.el_catalogListBlock_38488457 .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_38488457 .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_38488457 .catalogList ul li
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.typeContentBlock1.inRow3 .el_catalogListItem_38488457
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 24px;
}

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

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

.typeContentBlock1.inRow10 .el_catalogListItem2_38488457
{
	-ms-flex: 0 0 calc(100% / 10);
	flex: 0 0 calc(100% / 10);
	max-width: calc(100% / 10);
	margin-bottom: 24px;
}

@media (max-width: 1480px)
{
	.typeContentBlock1.inRow10 .el_catalogListItem2_38488457
	{
		-ms-flex: 0 0 calc(100% / 8);
		flex: 0 0 calc(100% / 8);
		max-width: calc(100% / 8);
	}
}
@media (max-width: 1366px)
{
	.typeContentBlock1.inRow10 .el_catalogListItem2_38488457
	{
		-ms-flex: 0 0 calc(100% / 7);
		flex: 0 0 calc(100% / 7);
		max-width: calc(100% / 7);
	}
}
@media (max-width: 1200px)
{
	.typeContentBlock1.inRow10 .el_catalogListItem2_38488457
	{
		-ms-flex: 0 0 calc(100% / 6);
		flex: 0 0 calc(100% / 6);
		max-width: calc(100% / 6);
	}
}
@media (max-width: 991px)
{
	.typeContentBlock1.inRow10 .el_catalogListItem2_38488457
	{
		-ms-flex: 0 0 calc(100% / 5);
		flex: 0 0 calc(100% / 5);
		max-width: calc(100% / 5);
	}
}
@media (max-width: 767px)
{
	.typeContentBlock1.inRow10 .el_catalogListItem2_38488457
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 480px)
{
	.typeContentBlock1.inRow10 .el_catalogListItem2_38488457
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
/*@media (max-width: 360px)*/
/*{*/
/*	.typeContentBlock1.inRow10 .el_catalogListItem2_38488457*/
/*	{*/
/*		-ms-flex: 0 0 calc(100% / 2);*/
/*		flex: 0 0 calc(100% / 2);*/
/*		max-width: calc(100% / 2);*/
/*	}*/
/*}*/

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

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

.typeContentBlock1.inRow4 .el_catalogListItem3_38488457
{
	-ms-flex: 0 0 calc(100% / 4);
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	margin-bottom: 24px;
}

@media (max-width: 1680px)
{
	.typeContentBlock1.inRow4 .el_catalogListItem3_38488457
	{
		margin-bottom: calc(12px + (24 - 12) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.typeContentBlock1.inRow4 .el_catalogListItem3_38488457
	{
		-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_catalogListItem3_38488457
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.el_subCatalogListBlock_38488457
{
	/*overflow: auto;*/
	margin-bottom: 20px;
}
.el_subCatalogListBlock_38488457 .catalogListBlock
{
	justify-content: center;
	/*flex-wrap: nowrap;*/
}

.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem.hidden.h0
{
	display: none;
}

@media (min-width: 1481px)
{
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.hidden.h1920,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem.hidden.mh1920
	{
		display: none;
	}

	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showMore.mh1920,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showing.mh1920
	{
		display: block;
	}
}
@media (max-width: 1480px) and (min-width: 1367px)
{
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.hidden.h1480,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem.hidden.mh1480
	{
		display: none;
	}

	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showMore.mh1480,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showing.mh1480
	{
		display: block;
	}
}
@media (max-width: 1366px) and (min-width: 1201px)
{
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.hidden.h1366,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem.hidden.mh1366
	{
		display: none;
	}

	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showMore.mh1366,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showing.mh1366
	{
		display: block;
	}
}
@media (max-width: 1200px) and (min-width: 992px)
{
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.hidden.h1200,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem.hidden.mh1200
	{
		display: none;
	}

	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showMore.mh1200,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showing.mh1200
	{
		display: block;
	}
}
@media (max-width: 991px) and (min-width: 768px)
{
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.hidden.h991,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem.hidden.mh991
	{
		display: none;
	}

	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showMore.mh991,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showing.mh991
	{
		display: block;
	}
}
@media (max-width: 767px) and (min-width: 481px)
{
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.hidden.h767,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem.hidden.mh767
	{
		display: none;
	}

	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showMore.mh767,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showing.mh767
	{
		display: block;
	}
}
@media (max-width: 480px)
{
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.hidden.h480,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem.hidden.mh480
	{
		display: none;
	}

	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showMore.mh480,
	.el_subCatalogListBlock_38488457 .catalogListBlock .el_catalogListItem2_38488457.moreItem .innerWrapper a .showing.mh480
	{
		display: block;
	}
}

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

.el_catalogListItem_38488457
{
}
.el_catalogListItem_38488457 .innerWrapper
{
	position: relative;
	display: block;
}
.el_catalogListItem_38488457 .innerWrapper .img_wrap
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 115.3846153846154%;
}
.el_catalogListItem_38488457 .innerWrapper .img_wrap::before
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;

	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 0.8) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 0.8) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#800C0707',GradientType=0 ); /* IE6-9 */
}
.el_catalogListItem_38488457 .innerWrapper:hover .img_wrap::before
{
	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#0C0707',GradientType=0 ); /* IE6-9 */
}
.el_catalogListItem_38488457 .innerWrapper .img_wrap .el
{
}
.el_catalogListItem_38488457 .innerWrapper .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.el_catalogListItem_38488457 .innerWrapper:hover .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.el_catalogListItem_38488457 .innerWrapper .infoBlock
{
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	padding: 32px 57px 70px 57px;
	width: 100%;
	z-index: 5;
	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_38488457 .innerWrapper:hover .infoBlock
{
	left: 0;
	bottom: 30%;
	-webkit-transform: translate(0, 50%);
	-ms-transform: translate(0, 50%);
	transform: translate(0, 50%);
}
.el_catalogListItem_38488457 .innerWrapper .infoBlock .title
{
	display: block;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_white);
}
/*.el_catalogListItem_38488457 .innerWrapper:hover .infoBlock .title*/
/*{*/
/*	color: var(--color_6);*/
/*}*/
.el_catalogListItem_38488457 .innerWrapper .infoBlock .btn
{
	margin-top: 27px;
}
.el_catalogListItem_38488457 .innerWrapper:hover .infoBlock .btn
{
	border-color: var(--color_white);
	background-color: var(--color_1);
	color: var(--color_white);
}

@media (max-width: 1680px)
{
	.el_catalogListItem_38488457 .innerWrapper .infoBlock
	{
		padding-top: calc(9px + (32 - 9) * var(--width-coefficient));
		padding-right: calc(11px + (57 - 11) * var(--width-coefficient));
		padding-bottom: calc(27px + (70 - 27) * var(--width-coefficient));
		padding-left: calc(11px + (57 - 11) * var(--width-coefficient));
	}
	.el_catalogListItem_38488457 .innerWrapper .infoBlock .title
	{
		line-height: calc(16px + (29 - 16) * var(--width-coefficient));
		font-size: calc(14px + (24 - 14) * var(--width-coefficient));
	}
	.el_catalogListItem_38488457 .innerWrapper .infoBlock .btn
	{
		margin-top: calc(5px + (27 - 5) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
		max-width: calc(150px + (250 - 150) * var(--width-coefficient));
		height: calc(22px + (55 - 22) * var(--width-coefficient));
		line-height: calc(16px + (18 - 16) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}
}

@media (max-width: 480px)
{
	.el_catalogListItem_38488457 .innerWrapper .infoBlock .title
	{
		font-weight: 700;
	}
	.el_catalogListItem_38488457 .innerWrapper .infoBlock .btn
	{
		font-weight: 700;
	}
}

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

.el_catalogListItem2_38488457
{
}
.el_catalogListItem2_38488457.hidden
{
}
.el_catalogListItem2_38488457 .innerWrapper
{
	position: relative;
	display: block;
}
.el_catalogListItem2_38488457 .innerWrapper .img_wrap
{
	/*padding-bottom: 115.3846153846154%;*/
}
.el_catalogListItem2_38488457 .innerWrapper .img_wrap .el
{
}
.el_catalogListItem2_38488457 .innerWrapper .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.el_catalogListItem2_38488457 .innerWrapper:hover .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.el_catalogListItem2_38488457 .innerWrapper .title
{
	display: block;
	margin-top: 15px;
	line-height: 2.6rem;
	font-size: 2.2rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_1);
}
.el_catalogListItem2_38488457 .innerWrapper:hover .title
{
	color: var(--color_6);
}

@media (max-width: 1680px)
{
	.el_catalogListItem2_38488457 .innerWrapper .title
	{
		line-height: calc(16px + (26 - 16) * var(--width-coefficient));
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}
}

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

.el_catalogListItem3_38488457
{
}
.el_catalogListItem3_38488457 .content
{
	border: 1px solid var(--color_white);
	background-color: var(--color_white);
	padding: 20px;
	height: 100%;
}
.el_catalogListItem3_38488457 .content:hover
{
	border: 1px solid var(--color_1);
}

.el_catalogListItem3_38488457 .content .title
{
}
.el_catalogListItem3_38488457 .content .title a
{
	display: -ms-flex;
	display: flex;
	gap: 15px;
	line-height: 1.4;
	font-size: 1.8rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color_1);
}
.el_catalogListItem3_38488457 .content .title a:hover
{
	color: var(--color_6);
}
.el_catalogListItem3_38488457 .content .title a .imgIco
{
	display: inline-block;
	width: 30px;
	height: 30px;
	overflow: hidden;
}
.el_catalogListItem3_38488457 .content .title a .imgIco img
{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
	transition: all 0.3s ease 0s;
}
.el_catalogListItem3_38488457 .content .title a:hover .imgIco img,
.el_catalogListItem3_38488457 .content .title a.active .imgIco img
{
	transform: scale(1.1, 1.1);
}

.el_catalogListItem3_38488457 .content .subCatalogList
{
	margin-top: 15px;
}
.el_catalogListItem3_38488457 .content .subCatalogList li
{
	margin-top: 8px;
}
.el_catalogListItem3_38488457 .content .subCatalogList li:first-child
{
	margin-top: 0;
}
.el_catalogListItem3_38488457 .content .subCatalogList li a
{
	display: block;
	line-height: 1.4;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_catalogListItem3_38488457 .content .subCatalogList li a:hover,
.el_catalogListItem3_38488457 .content .subCatalogList li a.active
{
	color: var(--color_6);
}

.el_catalogListItem3_38488457 .content .subCatalogList li.seeMore > span
{
	position: relative;
	display: inline-block;
	line-height: 1.2;
	font-size: 1.8rem;
	color: var(--color_10);
	cursor: pointer;
}
.el_catalogListItem3_38488457 .content .subCatalogList li.seeMore > span:hover
{
	color: var(--color_6);
}

/*****/

@media (max-width: 1680px)
{
	.el_catalogListItem3_38488457 .content .title a
	{
		font-size: calc(16px + (18 - 16) * var(--width-coefficient));
	}
	.el_catalogListItem3_38488457 .content .title a .imgIco
	{
		width: calc(20px + (30 - 20) * var(--width-coefficient));
		height: calc(20px + (30 - 20) * var(--width-coefficient));
	}

	.el_catalogListItem3_38488457 .content .subCatalogList li a
	{
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	.el_catalogListItem3_38488457 .content .subCatalogList li.seeMore > span
	{
		line-height: 1.2;
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
}

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

.typeContentBlock1.inRow5 .el_brandListItem_38488457
{
	-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_38488457
	{
		-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_38488457
	{
		-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_38488457
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

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

.el_brandListItem_38488457
{
}
.el_brandListItem_38488457.moreItem
{
	min-height: 100px;
}
.el_brandListItem_38488457.hidden
{
	display: none;
}
.el_brandListItem_38488457 .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_38488457 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_4);
	top: -1px;
	left: 0;
	width: 100%;
	height: 1px;
}
/**/
.el_brandListItem_38488457 .innerWrapper .imageBlock
{
}
.el_brandListItem_38488457 .innerWrapper .imageBlock .img_wrap
{
	padding-bottom: 36.10108303249097%; /*277 X 100*/
}
.el_brandListItem_38488457 .innerWrapper .imageBlock .img_wrap .el
{
}
.el_brandListItem_38488457 .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_38488457 .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);
}

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

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

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

/***** smartFilterListImageBlock *****/

.smartFilterListImageBlock
{
	margin-bottom: 24px;
}
.smartFilterListImageBlock .smartFilterList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

@media (max-width: 1680px)
{
	.smartFilterListImageBlock .smartFilterList
	{
		gap: calc(12px + (24 - 12) * var(--width-coefficient));
	}
}

@media (max-width: 1200px)
{
	.smartFilterListImageBlock .smartFilterList
	{
		grid-template-columns: repeat(4, 1fr);
	}
	.smartFilterListImageBlock .smartFilterList .el_smartFilterListItem_38488457:nth-child(5)
	{
		display: none;
	}
}
@media (max-width: 480px)
{
	.smartFilterListImageBlock .smartFilterList
	{
		grid-template-columns: repeat(3, 1fr);
	}
	.smartFilterListImageBlock .smartFilterList .el_smartFilterListItem_38488457:nth-child(4),
	.smartFilterListImageBlock .smartFilterList .el_smartFilterListItem_38488457:nth-child(5)
	{
		display: none;
	}
}

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

.el_smartFilterListItem_38488457
{
}
.el_smartFilterListItem_38488457.hidden
{
}
.el_smartFilterListItem_38488457 .innerWrapper
{
	position: relative;
	display: block;
}
.el_smartFilterListItem_38488457 .innerWrapper .img_wrap
{
	/*padding-bottom: 115.3846153846154%;*/
}
.el_smartFilterListItem_38488457 .innerWrapper .img_wrap .el
{
}
.el_smartFilterListItem_38488457 .innerWrapper .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.el_smartFilterListItem_38488457 .innerWrapper:hover .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.el_smartFilterListItem_38488457 .innerWrapper .title
{
	display: block;
	margin-top: 15px;
	line-height: 2.6rem;
	font-size: 2.2rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_1);
}
.el_smartFilterListItem_38488457 .innerWrapper:hover .title
{
	color: var(--color_6);
}

@media (max-width: 1680px)
{
	.el_smartFilterListItem_38488457 .innerWrapper .title
	{
		line-height: calc(16px + (26 - 16) * var(--width-coefficient));
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}
}


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

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

.smartFilterListBlock
{
	margin-top: 50px;
	margin-bottom: 25px;
}
.smartFilterListBlock .smartFilterList
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	max-height: 95px;
	overflow: hidden;
}
.smartFilterListBlock .smartFilterList.open
{
	max-height: unset;
	overflow: unset;
}
.smartFilterListBlock .smartFilterList li
{
	display: inline-block;
}
.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: 2px;
	border: 2px solid var(--color_1);
	background-color: var(--color_white);
	padding: 0 15px;
	width: auto;
	height: 40px;
	font-family: var(--font-family-2);
	letter-spacing: 0.15em;
	line-height: 1.8rem;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none !important;
	color: var(--color_1);
	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;
}
.smartFilterListBlock .smartFilterList li a:hover,
.smartFilterListBlock .smartFilterList li a.active
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}

/*****/

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

.smartFilterListBlock .smartFilterList li.showAllLink a,
.smartFilterListBlock .smartFilterList li.hideLink a
{
	border-color: var(--color_10);
	background-color: transparent;
	color: var(--color_10);
}
.smartFilterListBlock .smartFilterList li.showAllLink a:hover,
.smartFilterListBlock .smartFilterList li.showAllLink a.active,
.smartFilterListBlock .smartFilterList li.hideLink a:hover,
.smartFilterListBlock .smartFilterList li.hideLink a.active
{
	border-color: var(--color_6);
	background-color: transparent;
	color: var(--color_6);
}

/***/

.smartFilterListBlock .linkLine
{
	margin-top: 15px;
	text-align: center;
}
.smartFilterListBlock .linkLine a
{
	color: var(--color_10);
}
.smartFilterListBlock .linkLine a:hover,
.smartFilterListBlock .linkLine a.open
{
	color: var(--color_6);
}

/*****/

@media (max-width: 1680px)
{
	.smartFilterListBlock .smartFilterList
	{
		max-height: calc(75px + (95 - 75) * var(--width-coefficient));
	}
	.smartFilterListBlock .smartFilterList li a
	{
		height: calc(30px + (40 - 30) * var(--width-coefficient));
		font-size: calc(10px + (12 - 10) * var(--width-coefficient));
	}
}

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

.filterOrderBlock
{
	margin-bottom: 24px;
}
.filterOrderBlock .filterCol
{
}
.filterOrderBlock .orderCol
{
	-ms-flex: 0 0 330px;
	flex: 0 0 330px;
	max-width: 330px;
}

@media (max-width: 991px)
{
	.filterOrderBlock
	{
		margin-bottom: 0;
	}
	.filterOrderBlock .orderCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.offerOrderBlockCD
{
}

/***/

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

/***/

.offerOrderBlockCD .innerWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
/**/
.offerOrderBlockCD .innerWrapper .title
{
	margin-right: 15px;
	font-size: 1.8rem;
	color: var(--color_1);
}
.offerOrderBlockCD .innerWrapper select
{
	width: auto;
	min-width: 180px;
	height: 50px;
	font-size: 2.2rem;
	color: var(--color_2);
}

@media (max-width: 1680px)
{
	.offerOrderBlockCD .innerWrapper .title
	{
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
	.offerOrderBlockCD .innerWrapper select
	{
		height: calc(32px + (50 - 32) * var(--width-coefficient));
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.offerOrderBlockCD
	{
		position: fixed;
		background-color: var(--color_5);
		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
	{
		flex-wrap: wrap;
		justify-content: flex-start;
		padding-left: 40px;
		padding-right: 40px;
	}
	.offerOrderBlockCD .innerWrapper .title
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
		text-align: left;
	}
	.offerOrderBlockCD .innerWrapper select
	{
		min-width: 100%;
	}
}

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

.el_activeFilterBlock_38488457
{
	margin-bottom: 20px;
}
.el_activeFilterBlock_38488457 .innerWrapper
{
	margin-top: 15px;
}
.el_activeFilterBlock_38488457 a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 3px;
	margin-right: 15px;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_2);
}
.el_activeFilterBlock_38488457 a.cleanFilter
{
	color: var(--color_6);
	text-decoration: underline;
}
.el_activeFilterBlock_38488457 a:hover
{
	color: var(--color_red);
}
.el_activeFilterBlock_38488457 a svg
{
	margin-left: 2px;
	width: 12px;
	height: 12px;
}
.el_activeFilterBlock_38488457 a svg path[stroke]
{
	stroke: var(--color_2);
}
.el_activeFilterBlock_38488457 a:hover svg path[stroke]
{
	stroke: var(--color_red);
}
.el_activeFilterBlock_38488457 a svg path[fill]
{
	fill: var(--color_2);
}
.el_activeFilterBlock_38488457 a:hover svg path[fill]
{
	fill: var(--color_red);
}

/*****/

@media (max-width: 1680px)
{
	.el_activeFilterBlock_38488457 a
	{
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}
}

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

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

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

@media (max-width: 1200px)
{
	.typeContentBlock1.inRow4 .el_offerListItem_38488457
	{
		-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_offerListItem_38488457
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

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

.typeContentBlock1_1.inRow3 .el_offerListItem_38488457
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 24px;
}
.typeContentBlock1_1.inRow3.slick-slider .el_offerListItem_38488457
{
	margin-bottom: 0;
}

@media (max-width: 1366px)
{
	.typeContentBlock1_1.inRow3 .el_offerListItem_38488457
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 1200px)
{
	.typeContentBlock1_1.inRow3 .el_offerListItem_38488457
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
@media (max-width: 767px)
{
	.typeContentBlock1_1.inRow3 .el_offerListItem_38488457
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.typeContentBlock2.inRow3 .el_offerListItem_38488457
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 24px;
}
.typeContentBlock2.inRow3.slick-slider .el_offerListItem_38488457
{
	margin-bottom: 0;
}

@media (max-width: 767px)
{
	.typeContentBlock2.inRow3 .el_offerListItem_38488457
	{
		-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;
	border-color: var(--color_1);
	background-color: var(--color_2);
	padding: 0 10px;
	width: auto;
	min-height: 28px;
	font-family: var(--font-family-2);
	letter-spacing: 0.15em;
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_white);
}
.wobbler.text::after
{
	position: absolute;
	display: block;
	content: "";
	top: 100%;
	left: 0;
	border-top: 14px solid;
	border-top-color: inherit;
	border-left: 10px solid transparent;
	width: 0;
	height: 0;
}

.offerInfoModal .wobbler.text
{
	padding-left: 7px;
	padding-right: 7px;
	min-height: 17px;
	font-size: 10px;
}
.offerInfoModal .wobbler.text::after
{
	border-top-width: 7px;
	border-right-width: 5px;
}

/*.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::after
{
	display: none;
}
.wobbler.text.discount.hidden
{
	display: none;
}

/*** wobbler 2 ***/

.wobblerBlock
{
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	max-width: 80%;
}
.el_offerPage_38488457 .wobblerBlock
{
	top: 30px;
	pointer-events: none;
}
.wobblerBlock li
{
	position: relative;
	display: table;
	margin-bottom: 17px;
	text-align: left;
	z-index: 8;
}
.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: 1680px)
{
	.el_offerPage_38488457 .wobblerBlock
	{
		top: calc(5px + (30 - 5) * var(--width-coefficient));
	}

	.wobblerBlock li
	{
		margin-bottom: calc(5px + (17 - 5) * var(--width-coefficient));
	}
	.wobblerBlock li .wobbler.text
	{
		padding-left: calc(5px + (10 - 5) * var(--width-coefficient));
		padding-right: calc(5px + (10 - 5) * var(--width-coefficient));
		min-height: calc(12px + (28 - 12) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}
	.wobblerBlock li .wobbler.text::after
	{
		border-top-width: calc(7px + (14 - 7) * var(--width-coefficient));
		border-right-width: calc(5px + (10 - 5) * var(--width-coefficient));
	}
}

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

.offerListBlock
{
}
.offerListBlock.emptyList
{
}

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

.el_offerListItem_38488457
{
}
.el_offerListItem_38488457.hide
{
	display: none;
}
.el_offerListItem_38488457 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--color_white);
	background-color: var(--color_white);
	padding-top: 20px;
	height: 100%;
}
.el_offerListItem_38488457 .innerWrapper:hover
{
	border: 1px solid var(--color_1);
}
.el_offerListItem_38488457.notAvailable .innerWrapper
{
	opacity: 0.5;
}
/**/
.el_offerListItem_38488457 .innerWrapper .imageBlock
{
	position: relative;
	max-height: 380px;
	overflow: hidden;
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .item
{
	display: none;
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .item:first-child,
.el_offerListItem_38488457 .innerWrapper .imageBlock .item.slick-slide
{
	display: block;
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .img_wrap
{
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .img_wrap .el
{
	z-index: 5;
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .img_wrap .el img
{
	/*position: absolute;*/
	/*transition: all 0.3s ease 0s;*/
}
/*.el_offerListItem_38488457 .innerWrapper .imageBlock .first,*/
/*.el_offerListItem_38488457 .innerWrapper:hover .imageBlock .second*/
/*{*/
/*	position: static;*/
/*	opacity: 1;*/
/*	z-index: 2;*/
/*}*/
/*.el_offerListItem_38488457 .innerWrapper:hover .imageBlock .first,*/
/*.el_offerListItem_38488457 .innerWrapper .imageBlock .second*/
/*{*/
/*	position: absolute;*/
/*	opacity: 0;*/
/*	z-index: -1;*/
/*}*/
/**/
.el_offerListItem_38488457 .innerWrapper .imageBlock .slick-dots
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5px;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 25;
}
/**/
.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock
{
	position: absolute;
	top: 0;
	right: 30px;
	width: 30px;
	z-index: 8;
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock .otherBtn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	width: 30px;
	height: 30px;
	color: var(--color_1);
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock .otherBtn svg
{
	width: 30px;
	height: 30px;
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock .otherBtn svg path
{
	stroke: var(--color_1);
}
.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock .otherBtn:hover svg path,
.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock .otherBtn.active svg path
{
	fill: var(--color_1);
}
/**/
.el_offerListItem_38488457 .innerWrapper .infoBlock
{
	display: -ms-flex;
	display: flex;
	flex: 1 1 auto;
	justify-content: center;
	padding: 15px 30px 45px 30px;
}
.el_offerListItem_38488457 .innerWrapper .infoBlock > div
{
	position: relative;
	display: -ms-flex;
	display: flex;
	flex: 1 1 auto;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}
/**/
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications
{
	margin-top: 8px;
	/*position: absolute;*/
	/*display: none;*/
	/*left: 0;*/
	/*bottom: calc(100% + 15px);*/
	/*width: 100%;*/
	/*z-index: 15;*/
}
/*.el_offerListItem_38488457 .innerWrapper:hover .infoBlock .modifications*/
/*{*/
/*	display: block;*/
/*}*/
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul
{
	text-align: center;
}
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li
{
	display: inline-block;
	margin: 10px 5px 0 5px;
}
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li.hidden
{
	display: none;
}
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 1px solid var(--color_1);
	background-color: var(--color_white);
	padding: 6px 8px 5px 8px;
	min-width: 30px;
	height: 30px;

	font-family: var(--font-family-2);
	line-height: 1;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_1);
}
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li a:hover,
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li a.active
{
	border-color: var(--color_6);
	color: var(--color_6);
}
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li a.disabled
{
	border-color: var(--color_3);
	color: var(--color_3);
}
.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li span
{
	cursor: pointer;
}

/**/
.el_offerListItem_38488457 .innerWrapper .title
{
	width: 100%;
	height: 60px;
	text-align: center;
	overflow: hidden;
}
.el_offerListItem_38488457 .innerWrapper .title a
{
	display: inline-block;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}
.el_offerListItem_38488457 .innerWrapper .title a:hover
{
	color: var(--color_6);
}
/**/
.el_offerListItem_38488457 .innerWrapper .description
{
	display: -ms-flex;
	display: flex;
	flex: 1 1 auto;
	justify-content: center;

	padding-top: 7px;
	letter-spacing: 0.03em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_2);
}
/**/
.el_offerListItem_38488457 .innerWrapper .priceLine
{
	width: 100%;
	margin-top: 18px;
	text-align: center;
}
.el_offerListItem_38488457 .innerWrapper .priceLine .oldPrice
{
	display: inline-block;
	margin-right: 10px;
	font-family: var(--font-family-2);
	line-height: 1.2;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: line-through;
	color: var(--color_2);
}
.el_offerListItem_38488457 .innerWrapper .priceLine .oldPrice.hide
{
	display: none;
}
.el_offerListItem_38488457 .innerWrapper .priceLine .price
{
	display: inline-block;
	font-family: var(--font-family-2);
	line-height: 2.4rem;
	font-size: 2rem;
	font-weight: 500;
	color: var(--color_1);
}
/**/
.el_offerListItem_38488457 .innerWrapper .btnLine
{
	display: -ms-grid;
	display: grid;
	align-items: center;
	justify-content: space-between;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 28px;
}
.el_offerListItem_38488457 .innerWrapper .btnLine .btn
{
	flex-wrap: wrap;
	padding: 0 5px !important;
	height: 45px;
}
.el_offerListItem_38488457 .innerWrapper .btnLine .btn span
{
	display: inline-block;
	text-wrap: wrap;
}
/**/
.el_offerListItem_38488457 .innerWrapper .openBlock
{
	position: absolute;
	display: none;
	border: 1px solid var(--color_1);
	border-top: none;
	background-color: var(--color_white);
	top: calc(100% - 45px);
	left: -1px;
	padding: 10px 30px 35px 30px;
	width: calc(100% + 2px);
	z-index: 10;
}
.el_offerListItem_38488457 .innerWrapper:hover .openBlock
{
	display: block;
}
.el_offerListItem_38488457.slick-slide .innerWrapper:hover .openBlock
{
	display: none;
}
.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}
.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock .commentAmount
{
	margin-left: 5px;
	line-height: 1.5rem;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--color_2);
}

/*****/

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

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

@media (max-width: 1680px)
{
	.el_offerListItem_38488457 .innerWrapper
	{
		padding-top: calc(7px + (20 - 7) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock
	{
		right: calc(5px + (30 - 5) * var(--width-coefficient));
		width: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock .otherBtn
	{
		width: calc(15px + (30 - 15) * var(--width-coefficient));
		height: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .imageBlock .otherBtnBlock .otherBtn svg
	{
		width: calc(15px + (30 - 15) * var(--width-coefficient));
		height: calc(15px + (30 - 15) * var(--width-coefficient));
	}

	.el_offerListItem_38488457 .innerWrapper .infoBlock
	{
		padding-top: calc(7px + (15 - 7) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-bottom: calc(15px + (45 - 15) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
	}

	/*.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications*/
	/*{*/
	/*	bottom: calc(100% + calc(5px + (15 - 5) * var(--width-coefficient)));*/
	/*}*/
	.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li
	{
		margin-top: calc(5px + (10 - 5) * var(--width-coefficient));
		margin-right: calc(1px + (5 - 1) * var(--width-coefficient));
		margin-left: calc(1px + (5 - 1) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications ul li a
	{
		border-radius: calc(7px + (30 - 7) * var(--width-coefficient));
		padding-top: calc(2px + (6 - 2) * var(--width-coefficient));
		padding-right: calc(2px + (8 - 2) * var(--width-coefficient));
		padding-bottom: calc(1px + (5 - 1) * var(--width-coefficient));
		padding-left: calc(2px + (8 - 2) * var(--width-coefficient));
		min-width: calc(15px + (30 - 15) * var(--width-coefficient));
		height: calc(15px + (30 - 15) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}

	.el_offerListItem_38488457 .innerWrapper .title
	{
		height: calc(28px + (60 - 28) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .title a
	{
		line-height: calc(16px + (29 - 16) * var(--width-coefficient));
		font-size: calc(14px + (24 - 14) * var(--width-coefficient));
	}

	.el_offerListItem_38488457 .innerWrapper .description
	{
		/*padding-top: calc(5px + (7 - 5) * var(--width-coefficient));*/
		line-height: calc(14px + (18 - 14) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}

	.el_offerListItem_38488457 .innerWrapper .priceLine
	{
		margin-top: calc(11px + (18 - 11) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .priceLine .oldPrice
	{
		margin-top: calc(13px + (10 - 13) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .priceLine .oldPrice.hide
	{
		display: none;
	}
	.el_offerListItem_38488457 .innerWrapper .priceLine .price
	{
		line-height: calc(16px + (24 - 16) * var(--width-coefficient));
		font-size: calc(14px + (20 - 14) * var(--width-coefficient));
	}
	/**/
	.el_offerListItem_38488457 .innerWrapper .btnLine
	{
		margin-top: calc(10px + (28 - 10) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .btnLine .btn
	{
		max-width: calc(150px + (250 - 150) * var(--width-coefficient));
		height: calc(30px + (45 - 30) * var(--width-coefficient));
		line-height: calc(12px + (18 - 12) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	.el_offerListItem_38488457 .innerWrapper .openBlock
	{
		top: calc(100% - calc(15px + (45 - 15) * var(--width-coefficient)));
		padding-top: calc(7px + (10 - 7) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-bottom: calc(15px + (35 - 15) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
	}


	.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock
	{
		margin-top: calc(10px + (25 - 10) * var(--width-coefficient));
	}
	/*.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock .rateStar.smallStar,*/
	/*.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock .rateStar.smallStar > div > div*/
	/*{*/
	/*	width: calc(50px + (70 - 50) * var(--width-coefficient));*/
	/*}*/
	/*.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock .rateStar.smallStar > div*/
	/*{*/
	/*	width: calc(50px + (70 - 50) * var(--width-coefficient));*/
	/*}*/
	/*.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock .rateStar.smallStar > .starsPassive*/
	/*{*/
	/*	width: calc(50px + (70 - 50) * var(--width-coefficient));*/
	/*}*/
	/*.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock .rateStar.smallStar > div svg*/
	/*{*/
	/*	width: calc(10px + (14 - 10) * var(--width-coefficient));*/
	/*	height: calc(10px + (14 - 10) * var(--width-coefficient));*/
	/*}*/
	.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock .commentAmount
	{
		margin-left: 5px;
		/*line-height: calc(12px + (15 - 12) * var(--width-coefficient));*/
		/*font-size: calc(10px + (12 - 10) * var(--width-coefficient));*/
	}
}

@media (max-width: 1480px)
{
	.el_offerListItem_38488457 .innerWrapper .btnLine
	{
		gap: 5px;
	}
	.el_offerListItem_38488457 .innerWrapper .btnLine .btn
	{
		line-height: calc(12px + (18 - 12) * var(--width-coefficient));
		font-size: calc(10px + (13 - 10) * var(--width-coefficient));
	}
	.el_offerListItem_38488457 .innerWrapper .btnLine .btn.orderInClickBtn
	{
		line-height: calc(12px + (17 - 12) * var(--width-coefficient));
		font-size: calc(10px + (12 - 10) * var(--width-coefficient));
	}
}

@media (max-width: 1366px)
{
	.el_offerListItem_38488457 .innerWrapper .btnLine .btn
	{
		line-height: 12px;
		font-size: 9px;
	}
	.el_offerListItem_38488457 .innerWrapper .btnLine .btn.orderInClickBtn
	{
		line-height: 11px;
		font-size: 8px;
	}
}

@media (max-width: 1200px)
{
	.el_offerListItem_38488457 .innerWrapper .btnLine
	{
		justify-content: center;
		grid-template-columns: 1fr;
	}
	.el_offerListItem_38488457 .innerWrapper .btnLine .btn
	{
		line-height: 12px;
		font-size: 10px;
		max-width: 100%;
	}
}

@media (max-width: 991px)
{
	/*.el_offerListItem_38488457 .innerWrapper .infoBlock .modifications*/
	/*{*/
	/*	display: block;*/
	/*}*/
}

@media (max-width: 480px)
{
	.el_offerListItem_38488457 .innerWrapper .title a
	{
		font-weight: 700;
	}
	.el_offerListItem_38488457 .innerWrapper .openBlock .reviewBlock
	{
		flex-wrap: wrap;
	}
}

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

.el_offerListItem2_38488457
{
}
.el_offerListItem2_38488457.hide
{
	display: none;
}
.el_offerListItem2_38488457 .innerWrapper
{
	position: relative;
	border: 1px solid var(--color_white);
	background-color: var(--color_white);
	padding: 10px 10px;
	height: 100%;
}
.el_offerListItem2_38488457 .innerWrapper:hover
{
	border: 1px solid var(--color_1);
}
.el_offerListItem2_38488457.notAvailable .innerWrapper
{
	opacity: 0.5;
}
/**/
.el_offerListItem2_38488457 .innerWrapper .imageBlock
{
	position: relative;
	-ms-flex: 0 0 114px;
	flex: 0 0 114px;
	max-width: 114px;
}
.el_offerListItem2_38488457 .innerWrapper .imageBlock .img_wrap
{
}
.el_offerListItem2_38488457 .innerWrapper .imageBlock .img_wrap .el
{
	z-index: 5;
}
.el_offerListItem2_38488457 .innerWrapper .imageBlock .img_wrap .el img
{
	position: absolute;
	transition: all 0.3s ease 0s;
}
.el_offerListItem2_38488457 .innerWrapper .imageBlock .first,
.el_offerListItem2_38488457 .innerWrapper:hover .imageBlock .second
{
	position: static;
	opacity: 1;
	z-index: 2;
}
.el_offerListItem2_38488457 .innerWrapper:hover .imageBlock .first,
.el_offerListItem2_38488457 .innerWrapper .imageBlock .second
{
	position: absolute;
	opacity: 0;
	z-index: -1;
}
/**/
.el_offerListItem2_38488457 .innerWrapper .infoBlock
{
}
/**/
.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications
{
}
.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul
{
}
.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul li
{
	display: inline-block;
	margin: 10px 5px 0 5px;
}
.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 1px solid var(--color_1);
	background-color: var(--color_white);
	padding: 6px 8px 5px 8px;
	min-width: 30px;
	height: 30px;

	font-family: var(--font-family-2);
	line-height: 1;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_1);
}
.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul li a:hover,
.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul li a.active
{
	border-color: var(--color_6);
	color: var(--color_6);
}
.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul li a.disabled
{
	border-color: var(--color_3);
	color: var(--color_3);
}
.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul li span
{
	cursor: pointer;
}

/**/
.el_offerListItem2_38488457 .innerWrapper .title
{
}
.el_offerListItem2_38488457 .innerWrapper .title a
{
	display: inline-block;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}
.el_offerListItem2_38488457 .innerWrapper .title a:hover
{
	color: var(--color_6);
}
/**/
.el_offerListItem2_38488457 .innerWrapper .offerModStatus
{
	margin-top: 10px;
}
/**/
.el_offerListItem2_38488457 .innerWrapper .priceBlock
{
}
.el_offerListItem2_38488457 .innerWrapper .priceLine
{
	width: 100%;
	margin-top: 18px;
}
.el_offerListItem2_38488457 .innerWrapper .priceLine .oldPrice
{
	display: inline-block;
	margin-right: 10px;
	font-family: var(--font-family-2);
	line-height: 1.2;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: line-through;
	color: var(--color_2);
}
.el_offerListItem2_38488457 .innerWrapper .priceLine .oldPrice.hide
{
	display: none;
}
.el_offerListItem2_38488457 .innerWrapper .priceLine .price
{
	display: inline-block;
	font-family: var(--font-family-2);
	line-height: 2.4rem;
	font-size: 2rem;
	font-weight: 500;
	color: var(--color_1);
}
/**/
.el_offerListItem2_38488457 .innerWrapper .description
{
	margin-top: 18px;
	letter-spacing: 0.03em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_2);
}

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

@media (max-width: 1680px)
{
	.el_offerListItem2_38488457 .innerWrapper
	{
	}
	.el_offerListItem2_38488457 .innerWrapper .imageBlock
	{
		-ms-flex: 0 0 calc(65px + (114 - 65) * var(--width-coefficient));
		flex: 0 0 calc(65px + (114 - 65) * var(--width-coefficient));
		max-width: calc(65px + (114 - 65) * var(--width-coefficient));
	}

	.el_offerListItem2_38488457 .innerWrapper .infoBlock
	{
	}

	.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul li
	{
		margin-top: calc(5px + (10 - 5) * var(--width-coefficient));
		margin-right: calc(1px + (5 - 1) * var(--width-coefficient));
		margin-left: calc(1px + (5 - 1) * var(--width-coefficient));
	}
	.el_offerListItem2_38488457 .innerWrapper .infoBlock .modifications ul li a
	{
		border-radius: calc(7px + (30 - 7) * var(--width-coefficient));
		padding-top: calc(3px + (6 - 3) * var(--width-coefficient));
		padding-right: calc(4px + (8 - 4) * var(--width-coefficient));
		padding-bottom: calc(2px + (5 - 2) * var(--width-coefficient));
		padding-left: calc(4px + (8 - 4) * var(--width-coefficient));
		min-width: calc(15px + (30 - 15) * var(--width-coefficient));
		height: calc(20px + (30 - 20) * var(--width-coefficient));
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}

	.el_offerListItem2_38488457 .innerWrapper .title a
	{
		line-height: calc(16px + (29 - 16) * var(--width-coefficient));
		font-size: calc(14px + (24 - 14) * var(--width-coefficient));
	}

	.el_offerListItem2_38488457 .innerWrapper .description
	{
		padding-top: calc(5px + (7 - 5) * var(--width-coefficient));
		line-height: calc(14px + (18 - 14) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}

	.el_offerListItem2_38488457 .innerWrapper .priceLine
	{
		margin-top: calc(11px + (18 - 11) * var(--width-coefficient));
	}
	.el_offerListItem2_38488457 .innerWrapper .priceLine .oldPrice
	{
		margin-top: calc(7px + (10 - 7) * var(--width-coefficient));
		font-size: calc(7px + (10 - 7) * var(--width-coefficient));
	}
	.el_offerListItem2_38488457 .innerWrapper .priceLine .oldPrice.hide
	{
		display: none;
	}
	.el_offerListItem2_38488457 .innerWrapper .priceLine .price
	{
		line-height: calc(7px + (24 - 7) * var(--width-coefficient));
		font-size: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}

@media (max-width: 480px)
{
	.el_offerListItem_38488457 .innerWrapper .title a
	{
		font-weight: 700;
	}
}

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

.priceRangeList
{
	margin-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.4rem;
	font-size: 1.2rem;
	color: var(--color_2);
	z-index: 2;
}
.priceRangeList .valueCol
{
}
.priceRangeList .valueCol span
{
	display: inline-block;
	font-family: var(--font-family-2);
	line-height: 1.4rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color_1);
}

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

.orderQuantity
{
}
.orderQuantity .innerWrapper
{
	display: inline-block;
	border-radius: 2px;
	background-color: var(--color_4);
	margin-top: 15px;
	padding: 2px 8px 2px 8px;
	line-height: 1.4rem;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--color_2);
}
.orderQuantity .innerWrapper .fa
{
	color: var(--color_1);
}

/***********************************************************************/
/*****                 layeredDressingSystem                       *****/
/***********************************************************************/

.el_layeredDressingSystemContent_38488457
{
}
.el_layeredDressingSystemContent_38488457 .layeredDressingSystemList
{
	margin-bottom: 130px;
}

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

.el_layeredDressingSystemListItem_38488457
{
	padding-top: 130px;
}
.el_layeredDressingSystemListItem_38488457 .rowBlock
{
	margin-top: 65px;
	background-color: var(--color_white);
}
/**/
.el_layeredDressingSystemListItem_38488457 .clearCol
{
	-ms-flex: 0 0 calc((100% - var(--site-width-max-width)) / 2);
	flex: 0 0 calc((100% - var(--site-width-max-width)) / 2);
	max-width: calc((100% - var(--site-width-max-width)) / 2);
}
.el_layeredDressingSystemListItem_38488457:nth-child(even) .clearCol
{
	order: 3;
}
/**/
.el_layeredDressingSystemListItem_38488457 .infoCol
{
}
.el_layeredDressingSystemListItem_38488457:nth-child(even) .infoCol
{
	order: 2;
}
.el_layeredDressingSystemListItem_38488457 .infoCol .infoBlock
{
	padding: 105px 140px 105px 0;
	height: 100%;
}
.el_layeredDressingSystemListItem_38488457:nth-child(even) .infoCol .infoBlock
{
	padding: 105px 0 105px 140px;
}
.el_layeredDressingSystemListItem_38488457 .infoCol .infoBlock .btnLine
{
	margin-top: 50px;
}
.el_layeredDressingSystemListItem_38488457 .infoCol .infoBlock .btnLine .btn
{
	max-width: 380px;
}
/**/
.el_layeredDressingSystemListItem_38488457 .imageCol
{
	position: relative;
	-ms-flex: 0 0 44.089%;
	flex: 0 0 44.089%;
	max-width: 44.089%;
}
.el_layeredDressingSystemListItem_38488457:nth-child(even) .imageCol
{
	order: 1;
}
.el_layeredDressingSystemListItem_38488457 .imageCol .img_wrap
{
	padding-bottom: 96.3855421686747%;
}
.el_layeredDressingSystemListItem_38488457 .imageCol .img_wrap .el
{
}
.el_layeredDressingSystemListItem_38488457 .imageCol .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.el_layeredDressingSystemListItem_38488457 .imageCol .imageBlock
{
	position: absolute;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

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

@media (max-width: 1680px)
{
	.el_layeredDressingSystemContent_38488457 .layeredDressingSystemList
	{
		margin-bottom: calc(40px + (130 - 40) * var(--width-coefficient));
	}
	.el_layeredDressingSystemListItem_38488457
	{
		padding-top: calc(40px + (130 - 40) * var(--width-coefficient));
	}
	.el_layeredDressingSystemListItem_38488457 .rowBlock
	{
		margin-top: calc(15px + (65 - 15) * var(--width-coefficient));
	}

	.el_layeredDressingSystemListItem_38488457 .infoCol .infoBlock
	{
		padding-top: calc(30px + (105 - 30) * var(--width-coefficient));
		padding-right: calc(30px + (140 - 30) * var(--width-coefficient));
		padding-bottom: calc(30px + (105 - 30) * var(--width-coefficient));
		padding-left: 0;
	}
	.el_layeredDressingSystemListItem_38488457:nth-child(even) .infoCol .infoBlock
	{
		padding-top: calc(30px + (105 - 30) * var(--width-coefficient));
		padding-right: 0;
		padding-bottom: calc(30px + (105 - 30) * var(--width-coefficient));
		padding-left: calc(30px + (140 - 30) * var(--width-coefficient));
	}
	.el_layeredDressingSystemListItem_38488457 .infoCol .infoBlock .btnLine
	{
		margin-top: calc(20px + (50 - 20) * var(--width-coefficient));
	}
	.el_layeredDressingSystemListItem_38488457 .infoCol .infoBlock .btnLine .btn
	{
		max-width: calc(170px + (380 - 170) * var(--width-coefficient));
	}
}

@media (max-width: 767px)
{
	.el_layeredDressingSystemListItem_38488457 .imageCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
	}
	.el_layeredDressingSystemListItem_38488457:nth-child(even) .imageCol
	{
		order: 1;
	}

	.el_layeredDressingSystemListItem_38488457 .infoCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
	}
	.el_layeredDressingSystemListItem_38488457 .infoCol .infoBlock
	{
		padding-left: calc(30px + (140 - 30) * var(--width-coefficient));
	}
	.el_layeredDressingSystemListItem_38488457:nth-child(even) .infoCol .infoBlock
	{
		padding-right: calc(30px + (140 - 30) * var(--width-coefficient));
	}

	.el_layeredDressingSystemListItem_38488457 .clearCol
	{
		display: none;
	}
}

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

.el_layeredDressingSystemBlock_38488457
{
}
.el_layeredDressingSystemBlock_38488457 .innerWrapper
{
	background-color: var(--color_white);
	padding: 75px 55px 75px 75px;
}

.el_layeredDressingSystemBlock_38488457 .innerWrapper .btnLine
{
	margin-top: 100px;
	text-align: center;
}

/***/

.el_layeredDressingSystemBlock_38488457 .imageOneCol
{
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

/***/

.el_layeredDressingSystemBlock_38488457 .listCol
{
}
/**/
.el_layeredDressingSystemBlock_38488457 .listBlock
{
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	cursor: pointer;
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item .imageBlock
{
	margin: 0 auto;
	max-width: 300px;
	margin-bottom: 60px;
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item .imageBlock .img_wrap
{
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item .imageBlock .img_wrap::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_3);
	top: 100%;
	left: 50%;
	width: 1px;
	height: 30px;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0)
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item.slick-current .imageBlock .img_wrap::after
{
	background-color: var(--color_6);
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item .imageBlock .img_wrap .el
{
	border-radius: 100%;
	border: 1px solid var(--color_3);
	padding: 10%;
	overflow: hidden;
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item.slick-current .imageBlock .img_wrap .el
{
	border-color: var(--color_6);
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item .imageBlock .img_wrap .el::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_white_50);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item.slick-current .imageBlock .img_wrap .el::before,
.el_layeredDressingSystemBlock_38488457 .listBlock .item:hover .imageBlock .img_wrap .el::before
{
	display: none;
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item .imageBlock .img_wrap .el img
{
}
/**/
.el_layeredDressingSystemBlock_38488457 .listBlock .item .ico
{
	margin: 0 auto;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 64px 128px;
	width: 64px;
	height: 64px;
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item.slick-current .ico
{
	background-position: 0 -64px;
}
/**/
.el_layeredDressingSystemBlock_38488457 .listBlock .item .title
{
	margin-top: 25px;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	text-align: center;
	color: var(--color_3);
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item.slick-current .title
{
	color: var(--color_6);
}
/**/
.el_layeredDressingSystemBlock_38488457 .listBlock .item .description
{
	margin-top: 10px;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_3);
}
.el_layeredDressingSystemBlock_38488457 .listBlock .item.slick-current .description
{
	color: var(--color_1);
}

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

@media (max-width: 1680px)
{
	.el_layeredDressingSystemBlock_38488457 .innerWrapper
	{
		padding-top: calc(10px + (75 - 10) * var(--width-coefficient));
		padding-right: calc(15px + (55 - 15) * var(--width-coefficient));
		padding-bottom: calc(30px + (75 - 30) * var(--width-coefficient));
		padding-left: calc(10px + (75 - 10) * var(--width-coefficient));
	}

	.el_layeredDressingSystemBlock_38488457 .listBlock .item .ico
	{
		background-size: calc(28px + (64 - 28) * var(--width-coefficient)) calc(56px + (128 - 56) * var(--width-coefficient));
		width: calc(28px + (64 - 28) * var(--width-coefficient));
		height: calc(28px + (64 - 28) * var(--width-coefficient));
	}
	.el_layeredDressingSystemBlock_38488457 .listBlock .item.slick-current .ico
	{
		background-position: 0 calc((28px + (64 - 28) * var(--width-coefficient)) * -1);
	}

	.el_layeredDressingSystemBlock_38488457 .listBlock .item .title
	{
		margin-top: calc(12px + (25 - 12) * var(--width-coefficient));
		line-height: calc(16px + (29 - 16) * var(--width-coefficient));
		font-size: calc(14px + (24 - 14) * var(--width-coefficient));
	}
	.el_layeredDressingSystemBlock_38488457 .listBlock .item .description
	{
		line-height: calc(14px + (28 - 14) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}

	.el_layeredDressingSystemBlock_38488457 .innerWrapper .btnLine
	{
		margin-top: calc(30px + (100 - 30) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_layeredDressingSystemBlock_38488457 .imageOneCol
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.el_layeredDressingSystemBlock_38488457 .listBlock .item
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 767px)
{
	.el_layeredDressingSystemBlock_38488457 .imageOneCol
	{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.el_layeredDressingSystemBlock_38488457 .listBlock .item
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (max-width: 480px)
{
	.el_layeredDressingSystemBlock_38488457 .listBlock .item .title
	{
		font-weight: 700;
	}
}

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

.el_articleCatalogListBlock_38488457
{
}

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

.typeContentBlock1.inRow5 .el_articleCatalogListItem_38488457
{
	-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_38488457
{
	margin-bottom: 0;
}

@media (max-width: 1440px)
{
	.typeContentBlock1.inRow5 .el_articleCatalogListItem_38488457
	{
		-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_38488457
	{
		-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_38488457
	{
		-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_38488457
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

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

/**/
.el_articleCatalogListItem_38488457 .innerWrapper .imageBlock
{
}
.el_articleCatalogListItem_38488457 .innerWrapper .imageBlock .img_wrap
{
	padding-bottom: 51.72413793103448%; /*348 X 180*/
}
.el_articleCatalogListItem_38488457 .innerWrapper .imageBlock .img_wrap .el
{
	overflow: hidden;
}
.el_articleCatalogListItem_38488457 .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_38488457 .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_38488457 .innerWrapper .infoBlock
{
	padding: 20px;
}
/**/
.el_articleCatalogListItem_38488457 .innerWrapper .title
{
	margin-top: 10px;
	text-align: center;
}
.el_articleCatalogListItem_38488457 .innerWrapper .title a
{
	display: inline-block;
	line-height: 1.2;
	font-size: 1.5rem;
	font-weight: 700; /*font-weight: 500;*/
	text-transform: uppercase;
	color: var(--color_1);
}
.el_articleCatalogListItem_38488457 .innerWrapper .title a:hover
{
	color: var(--color_1);
}

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

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

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

.el_articleListBlock_38488457
{
}

@media (max-width: 480px)
{
	.el_articleListBlock_38488457.actions .siteWidth.container-fluid
	{
		padding-right: 0;
	}
	.el_articleListBlock_38488457.actions .siteWidth.container-fluid .row
	{
		margin-right: 0;
	}
}

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

.el_subArticleCatalogListBlock_38488457
{
	margin-top: 60px;
	margin-bottom: 45px;
}
.el_accordionListBlock_38488457 .el_subArticleCatalogListBlock_38488457
{
	margin-top: 0;
	margin-bottom: 45px;
}
.el_subArticleCatalogListBlock_38488457 .subArticleCatalogList
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.el_subArticleCatalogListBlock_38488457 .subArticleCatalogList li
{
	margin: 15px 15px 0 15px;
}
.el_subArticleCatalogListBlock_38488457 .subArticleCatalogList li a
{
	line-height: 5rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color_1);
}
.el_subArticleCatalogListBlock_38488457 .subArticleCatalogList li a:hover
{
	text-decoration: underline;
	color: var(--color_6);
}
.el_subArticleCatalogListBlock_38488457 .subArticleCatalogList li a.active
{
	text-decoration: underline;
}

@media (max-width: 1680px)
{
	.el_subArticleCatalogListBlock_38488457
	{
		margin-top: calc(15px + (60 - 15) * var(--width-coefficient));
		margin-bottom: calc(25px + (45 - 25) * var(--width-coefficient));
	}
	.el_accordionListBlock_38488457 .el_subArticleCatalogListBlock_38488457
	{
		margin-top: 0;
		margin-bottom: calc(25px + (45 - 25) * var(--width-coefficient));
	}

	.el_subArticleCatalogListBlock_38488457 .subArticleCatalogList li
	{
		margin-top: calc(7px + (15 - 7) * var(--width-coefficient));
		margin-right: calc(7px + (15 - 7) * var(--width-coefficient));
		margin-bottom: calc(7px + (15 - 7) * var(--width-coefficient));
	}
	.el_subArticleCatalogListBlock_38488457 .subArticleCatalogList li a
	{
		line-height: calc(18px + (50 - 18) * var(--width-coefficient));
		font-size: calc(16px + (25 - 16) * var(--width-coefficient));
	}
}

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

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

@media (max-width: 1200px)
{
	.typeContentBlock1.inRow4 .el_articleListItem_38488457
	{
		-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_38488457
	{
		-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_38488457
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.typeContentBlock1.inRow3 .el_articleListItem_38488457
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 24px;
}
.typeContentBlock1.inRow3.slick-slider .el_articleListItem_38488457
{
	margin-bottom: 0;
}

@media (max-width: 991px)
{
	.typeContentBlock1.inRow3 .el_articleListItem_38488457
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 480px)
{
	.typeContentBlock1.inRow3 .el_articleListItem_38488457
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.el_articleListItem_38488457
{
}
.el_articleListItem_38488457 .innerWrapper
{
	position: relative;
	display: block;
	height: 100%;
}

/**/
.el_articleListItem_38488457 .innerWrapper .img_wrap
{
	padding-bottom: 124.8543689320388%;
}
.el_articleListItem_38488457 .innerWrapper .img_wrap::before
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;

	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#800C0707',GradientType=0 ); /* IE6-9 */
}
.el_articleListItem_38488457.i4 .innerWrapper .img_wrap::before
{
	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#800C0707',GradientType=0 ); /* IE6-9 */
}
.el_articleListItem_38488457 .innerWrapper:hover .img_wrap::before
{
	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#0C0707',GradientType=0 ); /* IE6-9 */
}
.el_articleListItem_38488457 .innerWrapper .img_wrap .el
{
	overflow: hidden;
}
.el_articleListItem_38488457 .innerWrapper .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.el_articleListItem_38488457 .innerWrapper .infoBlock
{
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	padding: 32px 57px 70px 57px;
	width: 100%;
	z-index: 5;
	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_38488457 .innerWrapper:hover .infoBlock
{
	left: 0;
	bottom: 30%;
	-webkit-transform: translate(0, 50%);
	-ms-transform: translate(0, 50%);
	transform: translate(0, 50%);
}
.el_articleListItem_38488457 .innerWrapper .infoBlock .title
{
	display: block;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_white);
}
/*.el_articleListItem_38488457 .innerWrapper:hover .infoBlock .title*/
/*{*/
/*	color: var(--color_6);*/
/*}*/
.el_articleListItem_38488457 .innerWrapper .infoBlock .description
{
	display: block;
	margin-top: 5px;
	max-height: 80px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_white);
	overflow: hidden;
}
.el_articleListItem_38488457 .innerWrapper .infoBlock .btn
{
	margin-top: 27px;
}
.el_articleListItem_38488457 .innerWrapper:hover .infoBlock .btn
{
	border-color: var(--color_white);
	background-color: var(--color_black_50);
	color: var(--color_white);
}

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

@media (max-width: 1680px)
{
	.el_articleListItem_38488457 .innerWrapper .infoBlock
	{
		padding-top: calc(28px + (32 - 28) * var(--width-coefficient));
		padding-right: calc(25px + (57 - 25) * var(--width-coefficient));
		padding-bottom: calc(58px + (70 - 58) * var(--width-coefficient));
		padding-left: calc(25px + (57 - 25) * var(--width-coefficient));
	}
	.el_articleSliderBlock_38488457 .el_articleListItem_38488457 .innerWrapper .infoBlock
	{
		padding-top: calc(28px + (32 - 28) * var(--width-coefficient));
		padding-right: calc(14px + (57 - 14) * var(--width-coefficient));
		padding-bottom: calc(28px + (32 - 28) * var(--width-coefficient));
		padding-left: calc(14px + (57 - 14) * var(--width-coefficient));
	}
	.el_articleListItem_38488457 .innerWrapper .infoBlock .title
	{
		line-height: calc(18px + (29 - 18) * var(--width-coefficient));
		font-size: calc(16px + (24 - 16) * var(--width-coefficient));
	}
	.el_articleListItem_38488457 .innerWrapper .infoBlock .description
	{
		margin-top: calc(3px + (5 - 3) * var(--width-coefficient));
		max-height: calc(40px + (80 - 40) * var(--width-coefficient));
		line-height: calc(16px + (28 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
	.el_articleListItem_38488457 .innerWrapper .infoBlock .btn
	{
		margin-top: calc(5px + (27 - 5) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
		max-width: calc(200px + (250 - 200) * var(--width-coefficient));
		height: calc(22px + (55 - 22) * var(--width-coefficient));
		line-height: calc(14px + (18 - 14) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}
}
@media (max-width: 480px)
{
	.el_articleListItem_38488457 .innerWrapper .infoBlock .title
	{
		font-weight: 700;
	}
	.el_articleListItem_38488457 .innerWrapper .infoBlock .description
	{
		font-weight: 400;
	}
}

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

.typeContentBlock1.inRow2 .el_articleListItem2_38488457
{
	-ms-flex: 0 0 calc(100% / 2);
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
	margin-bottom: 24px;
}
.typeContentBlock1.inRow2.slick-slider .el_articleListItem2_38488457
{
	margin-bottom: 0;
}

/*****/

@media (max-width: 991px)
{
	.typeContentBlock1.inRow2 .el_articleListItem2_38488457
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.el_articleListItem2_38488457
{
}
.el_articleListItem2_38488457 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--color_white);
	height: 100%;
}
/**/
.el_articleListItem2_38488457 .innerWrapper .infoBlock
{
	position: relative;
	display: block;
	padding: 32px 36px 32px 50px;
}
/**/
.el_articleListItem2_38488457 .innerWrapper .infoBlock .actionTimer
{
	position: absolute;
	top: -60px;
	left: 50px;
}
/**/
.el_articleListItem2_38488457 .innerWrapper .infoBlock .title
{
	display: block;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}
.el_articleListItem2_38488457 .innerWrapper .infoBlock .description
{
	display: block;
	margin-top: 15px;
	max-height: 80px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
	overflow: hidden;
}
.el_articleListItem2_38488457 .innerWrapper .infoBlock .btn
{
	margin-top: 40px;
}
/**/
.el_articleListItem2_38488457 .innerWrapper .imageBlock
{
	-ms-flex: 0 0 48.377%;
	flex: 0 0 48.377%;
	max-width: 48.377%;
}
.el_articleListItem2_38488457 .innerWrapper .imageBlock .img_wrap
{
	padding-bottom: 125%;
}
.el_articleListItem2_38488457 .innerWrapper .imageBlock .img_wrap .el
{
	overflow: hidden;
}
.el_articleListItem2_38488457 .innerWrapper .imageBlock .img_wrap .el img
{
	/*display: block;*/
	/*width: 100%;*/
	/*height: 100%;*/
	/*object-fit: cover;*/
}

/****/

@media (max-width: 1680px)
{
	.el_articleListItem2_38488457 .innerWrapper .infoBlock
	{
		padding-top: calc(25px + (32 - 25) * var(--width-coefficient));
		padding-right: calc(16px + (36 - 16) * var(--width-coefficient));
		padding-bottom: calc(25px + (32 - 25) * var(--width-coefficient));
		padding-left: calc(25px + (50 - 25) * var(--width-coefficient));
	}
	/**/
	.el_articleListItem2_38488457 .innerWrapper .infoBlock .actionTimer
	{
		top: calc((0px + (60 - 0) * var(--width-coefficient)) * -1);
		left: calc(25px + (50 - 25) * var(--width-coefficient));
	}
	/**/
	.el_articleListItem2_38488457 .innerWrapper .infoBlock .title
	{
		line-height: calc(14px + (29 - 14) * var(--width-coefficient));
		font-size: calc(12px + (24 - 12) * var(--width-coefficient));
	}
	.el_articleListItem2_38488457 .innerWrapper .infoBlock .description
	{
		margin-top: calc(10px + (15 - 10) * var(--width-coefficient));
		max-height: calc(40px + (80 - 40) * var(--width-coefficient));
		line-height: calc(13px + (28 - 13) * var(--width-coefficient));
		font-size: calc(7px + (18 - 7) * var(--width-coefficient));
	}
	.el_articleListItem2_38488457 .innerWrapper .infoBlock .btn
	{
		margin-top: calc(20px + (40 - 20) * var(--width-coefficient));
	}
}
@media (max-width: 480px)
{
	.el_articleListItem2_38488457
	{
		padding-right: 0;
	}
}

/***********************************************************************/
/*****                 layeredDressingSystem                       *****/
/***********************************************************************/

.articleListType3
{
}

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

.el_articleListItem3_38488457
{
	padding-top: 130px;
}
.el_articleListItem3_38488457 .rowBlock
{
	margin-top: 65px;
	background-color: var(--color_white);
}
/**/
.el_articleListItem3_38488457 .imageCol
{
	position: relative;
	-ms-flex: 0 0 44.089%;
	flex: 0 0 44.089%;
	max-width: 44.089%;
}
.el_articleListItem3_38488457:nth-child(even) .imageCol
{
	order: 3;
}
.el_articleListItem3_38488457.fromRight .imageCol
{
	order: 3;
}
.el_articleListItem3_38488457.fromRight:nth-child(even) .imageCol
{
	order: 1;
}
.el_articleListItem3_38488457 .imageCol .img_wrap
{
	padding-bottom: 96.3855421686747%;
}
.el_articleListItem3_38488457.smalImageBlock .imageCol .img_wrap
{
	padding-bottom: 63.586%;
}
.el_articleListItem3_38488457 .imageCol .img_wrap .el
{
}
.el_articleListItem3_38488457 .imageCol .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/**/
.el_articleListItem3_38488457 .infoCol
{
}
.el_articleListItem3_38488457:nth-child(even) .infoCol,
.el_articleListItem3_38488457.fromRight .infoCol,
.el_articleListItem3_38488457.fromRight:nth-child(even) .infoCol
{
	order: 2;
}
.el_articleListItem3_38488457 .infoCol .infoBlock,
.el_articleListItem3_38488457.fromRight:nth-child(even) .infoCol .infoBlock
{
	padding: 140px 0 140px 140px;
	height: 100%;
}
.el_articleListItem3_38488457:nth-child(even) .infoCol .infoBlock,
.el_articleListItem3_38488457.fromRight .infoCol .infoBlock
{
	padding: 140px 140px 140px 0;
}
/**/
.el_articleListItem3_38488457 .clearCol
{
	-ms-flex: 0 0 calc((100% - var(--site-width-max-width)) / 2);
	flex: 0 0 calc((100% - var(--site-width-max-width)) / 2);
	max-width: calc((100% - var(--site-width-max-width)) / 2);
}
.el_articleListItem3_38488457:nth-child(even) .clearCol
{
	order: 1;
}
.el_articleListItem3_38488457.fromRight .clearCol
{
	order: 1;
}
.el_articleListItem3_38488457.fromRight:nth-child(even) .clearCol
{
	order: 3;
}

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

@media (max-width: 1680px)
{
	.el_articleListItem3_38488457
	{
		padding-top: calc(40px + (130 - 40) * var(--width-coefficient));
	}
	.el_articleListItem3_38488457 .rowBlock
	{
		margin-top: calc(15px + (65 - 15) * var(--width-coefficient));
	}

	.el_articleListItem3_38488457 .infoCol .infoBlock,
	.el_articleListItem3_38488457.fromRight:nth-child(even) .infoCol .infoBlock
	{
		padding: calc(30px + (140 - 30) * var(--width-coefficient));
		padding-right: 0;
	}
	.el_articleListItem3_38488457:nth-child(even) .infoCol .infoBlock,
	.el_articleListItem3_38488457.fromRight .infoCol .infoBlock
	{
		padding: calc(30px + (140 - 30) * var(--width-coefficient));
		padding-left: 0;
	}
}

@media (max-width: 767px)
{
	.el_articleListItem3_38488457 .imageCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_articleListItem3_38488457:nth-child(even) .imageCol,
	.el_articleListItem3_38488457.fromRight .imageCol,
	.el_articleListItem3_38488457.fromRight:nth-child(even) .imageCol
	{
		order: 1;
	}

	.el_articleListItem3_38488457 .infoCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_articleListItem3_38488457 .infoCol .infoBlock,
	.el_articleListItem3_38488457.fromRight:nth-child(even) .infoCol .infoBlock
	{
		padding-right: calc(30px + (140 - 30) * var(--width-coefficient));
	}
	.el_articleListItem3_38488457:nth-child(even) .infoCol .infoBlock,
	.el_articleListItem3_38488457.fromRight .infoCol .infoBlock
	{
		padding-left: calc(30px + (140 - 30) * var(--width-coefficient));
	}

	.el_articleListItem3_38488457 .clearCol
	{
		display: none;
	}
}

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

.el_articlBlockType5_38488457
{
}

.articleListType5
{

}
.articleListType5 .el_articleListItem5_38488457
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

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

.el_articleListItem5_38488457
{
}
.el_articleListItem5_38488457 .innerWrapper
{
	height: 100%;
	background-color: var(--color_white);
}
.el_articleListItem5_38488457 .rowBlock
{
}
/**/
.el_articleListItem5_38488457 .imageCol
{
	position: relative;
	-ms-flex: 0 0 44.089%;
	flex: 0 0 44.089%;
	max-width: 44.089%;
}
.el_articleListItem5_38488457 .imageCol .img_wrap
{
	padding-bottom: 96.3855421686747%;
}
/*.el_articleListItem5_38488457.smalImageBlock .imageCol .img_wrap*/
/*{*/
/*	padding-bottom: 63.586%;*/
/*}*/
.el_articleListItem5_38488457 .imageCol .img_wrap .el
{
}
.el_articleListItem5_38488457 .imageCol .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.el_articleListItem5_38488457 .imageCol .articleItem5ImageBlock
{
	min-height: auto;
}
/**/
.el_articleListItem5_38488457 .infoCol
{
}
.el_articleListItem5_38488457 .infoCol .infoBlock
{
	padding: 30px 30px 30px 15px;
	height: 100%;
}

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

@media (max-width: 1680px)
{
	.el_articleListItem5_38488457 .infoCol .infoBlock
	{
		padding-top: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-right: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}

@media (max-width: 991px)
{
	.el_articleListItem5_38488457 .imageCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.el_articleListItem5_38488457 .infoCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_articleListItem5_38488457 .infoCol .infoBlock
	{
		padding: 15px;
	}
}

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

.el_ourPartnersBlock_38488457
{
}
.el_ourPartnersBlock_38488457 .ourPartnersList
{
}
.el_ourPartnersBlock_38488457 .ourPartnersList .el_ourPartnersListItem_38488457
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}

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

.el_ourPartnersListItem_38488457
{
}
.el_ourPartnersListItem_38488457 .innerWrapper
{
	position: relative;
	display: block;
	height: 100%;
}

/**/
.el_ourPartnersListItem_38488457 .innerWrapper .img_wrap
{
	padding-bottom: 100%;
}
.el_ourPartnersListItem_38488457 .innerWrapper .img_wrap::before
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;

	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#800C0707',GradientType=0 ); /* IE6-9 */
}
.el_ourPartnersListItem_38488457 .innerWrapper:hover .img_wrap::before
{
	background: -moz-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(12, 7, 7, 0) 0%, rgba(12, 7, 7, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000C0707', endColorstr='#0C0707',GradientType=0 ); /* IE6-9 */
}
.el_ourPartnersListItem_38488457 .innerWrapper .img_wrap .el
{
	overflow: hidden;
}
.el_ourPartnersListItem_38488457 .innerWrapper .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock
{
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	padding: 32px 57px 70px 57px;
	width: 100%;
	z-index: 5;
	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_ourPartnersListItem_38488457 .innerWrapper:hover .infoBlock
{
	left: 0;
	bottom: 30%;
	-webkit-transform: translate(0, 50%);
	-ms-transform: translate(0, 50%);
	transform: translate(0, 50%);
}
.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .title
{
	display: block;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_white);
}
/*.el_ourPartnersListItem_38488457 .innerWrapper:hover .infoBlock .title*/
/*{*/
/*	color: var(--color_6);*/
/*}*/
.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .description
{
	display: none;
	margin-top: 5px;
	max-height: 80px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_white);
	overflow: hidden;
}
.el_ourPartnersListItem_38488457 .innerWrapper:hover .infoBlock .description
{
	display: block;
}
.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .btn
{
	margin-top: 27px;
}
.el_ourPartnersListItem_38488457 .innerWrapper:hover .infoBlock .btn
{
	border-color: var(--color_white);
	background-color: var(--color_black_50);
	color: var(--color_white);
}

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

@media (max-width: 1680px)
{
	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock
	{
		padding-top: calc(15px + (32 - 15) * var(--width-coefficient));
		padding-right: calc(15px + (57 - 15) * var(--width-coefficient));
		padding-bottom: calc(15px + (70 - 15) * var(--width-coefficient));
		padding-left: calc(15px + (57 - 15) * var(--width-coefficient));
	}
	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .title
	{
		line-height: calc(16px + (29 - 16) * var(--width-coefficient));
		font-size: calc(14px + (24 - 14) * var(--width-coefficient));
	}
	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .description
	{
		margin-top: calc(3px + (5 - 3) * var(--width-coefficient));
		max-height: calc(40px + (80 - 40) * var(--width-coefficient));
		line-height: calc(14px + (28 - 14) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .btn
	{
		margin-top: calc(5px + (27 - 5) * var(--width-coefficient));
		padding-right: calc(10px + (30 - 10) * var(--width-coefficient));
		padding-left: calc(10px + (30 - 10) * var(--width-coefficient));
		max-width: calc(200px + (250 - 200) * var(--width-coefficient));
		height: calc(22px + (55 - 22) * var(--width-coefficient));
		line-height: calc(12px + (18 - 12) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_ourPartnersListItem_38488457 .innerWrapper
	{
	}
	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock
	{
		display: block;
		bottom: 0;
		padding: 15px;
	}
	.el_ourPartnersListItem_38488457 .innerWrapper:hover .infoBlock
	{
		bottom: 0;
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
	}
	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .description
	{
		display: block;
	}
}
@media (max-width: 480px)
{
	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock
	{
		padding: 10px;
	}

	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .title
	{
		font-weight: 700;
	}
	.el_ourPartnersListItem_38488457 .innerWrapper .infoBlock .description
	{
		font-weight: 400;
	}
}

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

.el_casesBlock_38488457
{
}
.el_casesBlock_38488457 .casesList
{
}
/***********************************************************************/

.el_casesBlock_38488457 .casesList .el_casesListItem_38488457
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
	margin-bottom: 24px;
}
.el_casesBlock_38488457 .casesList.slick-slider .el_casesListItem_38488457
{
	margin-bottom: 0;
}

@media (max-width: 1200px)
{
	.el_casesBlock_38488457 .casesList .el_casesListItem_38488457
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 991px)
{
	.el_casesBlock_38488457 .casesList .el_casesListItem_38488457
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
@media (max-width: 767px)
{
	.el_casesBlock_38488457 .casesList .el_casesListItem_38488457
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

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

.el_casesListItem_38488457
{
}
.el_casesListItem_38488457.hidden
{
}
.el_casesListItem_38488457 .innerWrapper
{
	position: relative;
	display: block;
}
.el_casesListItem_38488457 .innerWrapper .img_wrap
{
	/*padding-bottom: 115.3846153846154%;*/
}
.el_casesListItem_38488457 .innerWrapper .img_wrap .el
{
}
.el_casesListItem_38488457 .innerWrapper .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.el_casesListItem_38488457 .innerWrapper:hover .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.el_casesListItem_38488457 .innerWrapper .title
{
	display: block;
	margin-top: 15px;
	line-height: 2.6rem;
	font-size: 2.2rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_1);
}
.el_casesListItem_38488457 .innerWrapper:hover .title
{
	color: var(--color_6);
}
.el_casesListItem_38488457 .innerWrapper .description
{
	margin-top: 15px;
}

@media (max-width: 1680px)
{
	.el_casesListItem_38488457 .innerWrapper .title
	{
		line-height: calc(16px + (26 - 16) * var(--width-coefficient));
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}
}

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

.el_accordionItem_38488457
{
	margin-bottom: 24px;
}
.el_accordionItem_38488457 .innerWrapper
{
	background-color: var(--color_white);
}
.el_accordionItem_38488457 .titleItem
{
	position: relative;
	border-bottom: 1px solid transparent;
	padding: 35px 90px 30px 50px;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
	cursor: pointer;
}
.el_accordionItem_38488457 .titleItem:hover,
.el_accordionItem_38488457 .titleItem.open
{
	color: var(--color_2);
}
.el_accordionItem_38488457 .titleItem.open
{
	border-color: var(--color_1);
}
.el_accordionItem_38488457 .titleItem .btnToggle
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	top: 35px;
	right: 50px;
	width: 30px;
	height: 30px;
}
.el_accordionItem_38488457 .titleItem .btnToggle::before,
.el_accordionItem_38488457 .titleItem .btnToggle::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_black);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.el_accordionItem_38488457 .titleItem .btnToggle::before
{
	width: 21px;
	height: 5px;
}
.el_accordionItem_38488457 .titleItem .btnToggle::after
{
	width: 5px;
	height: 21px;
}
.el_accordionItem_38488457 .titleItem.open .btnToggle::after
{
	display: none;
}
/**/
.el_accordionItem_38488457 .titleItem ul
{
	margin-top: 3px;
}
.el_accordionItem_38488457 .titleItem ul li
{
	display: inline-block;
	position: relative;
	margin-right: 70px;
	padding-left: 10px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_3);
}
.el_accordionItem_38488457 .titleItem ul li:last-child
{
	margin-right: 0;
}
.el_accordionItem_38488457 .titleItem ul li::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background-color: var(--color_3);
	top: 12px;
	left: 0;
	width: 5px;
	height: 5px;
}

/**/
.el_accordionItem_38488457 .textItem
{
	display: none;
	padding: 35px 135px 20px 135px;
	max-width: 880px;
}
.el_accordionItem_38488457.plr-50 .textItem
{
	padding: 35px 50px 20px 50px;
}

.el_accordionItem_38488457 .textItem .btnLine
{
	margin: 55px 0 100px 0;
}
.el_accordionItem_38488457 .textItem .btnLine .btn
{
	max-width: 380px;
}

@media (max-width: 1200px)
{
	.el_accordionItem_38488457 .titleItem
	{
		padding-top: calc(15px + (35 - 15) * var(--width-coefficient));
		padding-right: calc(50px + (100 - 50) * var(--width-coefficient));
		padding-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-left: calc(25px + (50 - 25) * var(--width-coefficient));
		line-height: calc(18px + (40 - 18) * var(--width-coefficient));
		font-size: calc(16px + (30 - 16) * var(--width-coefficient));
	}
	.el_accordionItem_38488457 .titleItem .btnToggle
	{
		top: calc(15px + (35 - 15) * var(--width-coefficient));
		right: calc(25px + (50 - 25) * var(--width-coefficient));
		width: calc(15px + (30 - 15) * var(--width-coefficient));
		height: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	.el_accordionItem_38488457 .titleItem .btnToggle::before
	{
		width: calc(10px + (21 - 10) * var(--width-coefficient));
		height: calc(2px + (4 - 2) * var(--width-coefficient));
	}
	.el_accordionItem_38488457 .titleItem .btnToggle::after
	{
		width: calc(2px + (4 - 2) * var(--width-coefficient));
		height: calc(10px + (27 - 10) * var(--width-coefficient));
	}

	.el_accordionItem_38488457 .textItem
	{
		padding-top: calc(15px + (35 - 15) * var(--width-coefficient));
		padding-right: calc(25px + (135 - 25) * var(--width-coefficient));
		padding-bottom: calc(15px + (20 - 15) * var(--width-coefficient));
		padding-left: calc(25px + (135 - 25) * var(--width-coefficient));
	}
	.el_accordionItem_38488457.plr-50 .textItem
	{
		padding-top: calc(15px + (35 - 15) * var(--width-coefficient));
		padding-right: calc(25px + (50 - 25) * var(--width-coefficient));
		padding-bottom: calc(15px + (20 - 15) * var(--width-coefficient));
		padding-left: calc(25px + (50 - 25) * var(--width-coefficient));
	}

	.el_accordionItem_38488457 .textItem .btnLine
	{
		margin-top: calc(25px + (55 - 25) * var(--width-coefficient));
		margin-bottom: calc(25px + (100 - 25) * var(--width-coefficient));
	}
	.el_accordionItem_38488457 .textItem .btnLine .btn
	{
		max-width: calc(170px + (380 - 170) * var(--width-coefficient));
	}

	.el_accordionItem_38488457 .titleItem ul li
	{
		margin-right: calc(14px + (70 - 14) * var(--width-coefficient));
		padding-left: calc(6px + (10 - 6) * var(--width-coefficient));
		line-height: calc(16px + (28 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
	.el_accordionItem_38488457 .titleItem ul li::before
	{
		top: calc(6px + (12 - 6) * var(--width-coefficient));
		width: calc(3px + (5 - 3) * var(--width-coefficient));
		height: calc(3px + (5 - 3) * var(--width-coefficient));
	}
}

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

.el_articleContent_38488457
{
}
.el_articleContent_38488457 .imgBlock
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	/*padding-bottom: 38.80208333333333%;*/ /* 1920 X 745 */
	padding-bottom: 25%; /* 1920 X 745 */
}
/**/
.el_articleContent_38488457 .infoBlock
{
	margin-top: 55px;
}
.el_articleContent_38488457 .date
{
	margin-bottom: 15px;
	line-height: 3.5rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}
/**/
.el_articleContent_38488457 .text
{
}
/**/
.el_articleContent_38488457 .shareBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 100px;
}
.el_articleContent_38488457 .shareBlock .titleSharing
{
	letter-spacing: 0.05em;
	line-height: 1.5rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--color_2);
}
.el_articleContent_38488457 .shareBlock .btnSharingBlock
{
	text-align: right;
}
.el_articleContent_38488457 .shareBlock .btnSharingBlock a:last-child
{
	margin-right: 0;
}

/*****/

@media (max-width: 1680px)
{
	.el_articleContent_38488457 .imgBlock
	{
		/*padding-bottom: calc(62.802% + (38.80208333333333 - 62.802) * var(--width-coefficient));*/
	}
	.el_articleContent_38488457 .infoBlock
	{
		margin-top: calc(35px + (55 - 35) * var(--width-coefficient));
	}
	.el_articleContent_38488457 .date
	{
		margin-bottom: calc(10px + (15 - 10) * var(--width-coefficient));
		line-height: calc(16px + (35 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
}

@media (max-width: 480px)
{
	.el_articleContent_38488457 .imgBlock
	{
		padding-bottom: 62.5%;
	}
}

/***********************************************************************/
/*****                       aboutContent                          *****/
/***********************************************************************/

.el_aboutContent_38488457
{
}

/***********************************************************************/
/*****               wholesaleCustomersContent                     *****/
/***********************************************************************/

.el_wholesaleCustomersContent_38488457
{
}

#afcFormShowBtn
{
	position: static;
	left: auto;
	bottom: auto;
	transition: unset;
}
#afcFormShowBtn.fixed
{
	position: fixed;
	width: 100%;
	max-width: 100%;
	left: 0;
	bottom: 0;
}

/***********************************************************************/
/*****              forCorporateClientsContent                     *****/
/***********************************************************************/

.el_forCorporateClientsContent_38488457
{
}

/***/

.el_specializationBlock_38488457
{
	padding-top: 120px;
}


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

.el_advantagesBlock_38488457
{
	padding-top: 60px;
}
.el_wholesaleCustomersContent_38488457 .el_advantagesBlock_38488457
{
	padding-top: 120px;
}
.el_advantagesBlock_38488457 .advantagesList
{
	background-color: var(--color_white);
	padding: 100px 130px 110px 130px;
}

.el_advantagesBlock_38488457 .advantagesList.slick-dotted.slick-slider
{
	margin-bottom: 0;
}
.el_advantagesBlock_38488457 .advantagesList .slick-slider .slick-dots
{
	margin-top: 30px;
}
/**/
.advantagesList .el_advantagesListItem_38488457
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 60px;
}
.advantagesList .el_advantagesListItem_38488457.slick-slide
{
	margin-bottom: 0;
}

/***/

.el_advantagesListItem_38488457 .imageBlock
{
	margin: 0 auto;
	max-width: 110px;
}
.el_advantagesListItem_38488457 .infoBlock
{
	margin: 15px auto 0 auto;
	max-width: 380px;
}
.el_advantagesListItem_38488457 .infoBlock .title
{
	line-height: 3rem;
	font-size: 2.5rem;
	font-weight: 700; /*font-weight: 500;*/
	text-align: center;
	color: var(--color_1);
}
.el_advantagesListItem_38488457 .infoBlock .description
{
	margin-top: 3px;
	line-height: 3rem;
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_2);
}

/*******/

@media (max-width: 1680px)
{
	.el_advantagesBlock_38488457
	{
		padding-top: calc(30px + (60 - 30) * var(--width-coefficient));
	}
	.el_wholesaleCustomersContent_38488457 .el_advantagesBlock_38488457
	{
		padding-top: calc(60px + (120 - 60) * var(--width-coefficient));
	}
	.el_advantagesBlock_38488457 .advantagesList
	{
		padding-top: calc(35px + (100 - 35) * var(--width-coefficient));
		padding-right: calc(35px + (130 - 35) * var(--width-coefficient));
		padding-bottom: calc(35px + (110 - 35) * var(--width-coefficient));
		padding-left: calc(45px + (130 - 45) * var(--width-coefficient));
	}
	.el_advantagesListItem_38488457
	{
		margin-bottom: calc(8px + (60 - 8) * var(--width-coefficient));
	}
	.el_advantagesListItem_38488457 .imageBlock
	{
		max-width: calc(36px + (110 - 36) * var(--width-coefficient));
	}
	.el_advantagesListItem_38488457 .infoBlock
	{
		margin-top: calc(3px + (15 - 3) * var(--width-coefficient));
		max-width: calc(160px + (380 - 160) * var(--width-coefficient));
	}
	.el_advantagesListItem_38488457 .infoBlock .title
	{
		line-height: calc(18px + (30 - 18) * var(--width-coefficient));
		font-size: calc(16px + (25 - 16) * var(--width-coefficient));
	}
	.el_advantagesListItem_38488457 .infoBlock .description
	{
		line-height: calc(16px + (30 - 16) * var(--width-coefficient));
		font-size: calc(14px + (25 - 14) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.advantagesList .el_advantagesListItem_38488457
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 767px)
{
	.advantagesList .el_advantagesListItem_38488457
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.el_reviewsBlock_38488457
{
	padding-top: 120px;
}
.el_reviewsBlock_38488457 .reviewsList
{
}
.el_reviewsBlock_38488457 .reviewsList .el_reviewsListItem_38488457
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	margin-bottom: 24px;
}
.el_reviewsBlock_38488457 .reviewsList.slick-slider .el_reviewsListItem_38488457
{
	margin-bottom: 0;
}

@media (max-width: 991px)
{
	.el_reviewsBlock_38488457 .reviewsList .el_reviewsListItem_38488457
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*******/

.el_reviewsListItem_38488457
{
}
.el_reviewsListItem_38488457 .imageBlock
{
	margin: 0 auto 15px auto;
	max-width: 110px;
}

@media (max-width: 1680px)
{
	.el_reviewsListItem_38488457 .imageBlock
	{
		max-width: calc(36px + (110 - 36) * var(--width-coefficient));
	}
}

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

.el_videoBlock_38488457
{
}

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

.el_typeBlock6_38488457
{
	padding-top: 120px;
	padding-bottom: 110px;
}
.el_typeBlock6_38488457 .typeBlock6List
{
	margin-bottom: 0;
	padding: 100px 130px 0 130px;
}
.el_typeBlock6_38488457 .typeBlock6List .slick-dots
{
	margin-top: 30px;
}
/**/
.el_typeBlock6_38488457 .typeBlock6List .typeBlock6ListItem
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 60px;
}
.el_typeBlock6_38488457 .typeBlock6List.slick-slider .typeBlock6ListItem
{
	margin-bottom: 0;
}

/***/
.typeBlock6ListItem .innerWrapper
{
	margin: 0 auto;
	max-width: 380px;
}
.typeBlock6ListItem .innerWrapper .imageBlock
{
	margin: 0 auto;
	max-width: 110px;
}
.typeBlock6ListItem .innerWrapper .number
{
	line-height: 1;
	font-size: 5rem;
	font-weight: 700;
	text-align: center;
	color: var(--color_2);
}
.typeBlock6ListItem .innerWrapper .description
{
	margin-top: 20px;
	line-height: 3rem;
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_2);
}

.typeBlock6ListItem .innerWrapper .btnLine
{
	margin-top: 40px;
	text-align: center;
}
.typeBlock6ListItem .innerWrapper .btnLine .btn
{
}

/*******/

@media (max-width: 1680px)
{
	.el_typeBlock6_38488457
	{
		padding-top: calc(60px + (120 - 60) * var(--width-coefficient));
		padding-bottom: calc(60px + (110 - 60) * var(--width-coefficient));
	}
	.el_typeBlock6_38488457 .typeBlock6List
	{
		padding-top: calc(35px + (100 - 35) * var(--width-coefficient));
		padding-right: calc(35px + (130 - 35) * var(--width-coefficient));
		padding-left: calc(45px + (130 - 45) * var(--width-coefficient));
	}
	.el_typeBlock6_38488457 .typeBlock6List .typeBlock6ListItem
	{
		margin-bottom: calc(25px + (60 - 25) * var(--width-coefficient));
	}
	.typeBlock6ListItem .innerWrapper
	{
		max-width: calc(160px + (380 - 160) * var(--width-coefficient));
	}
	.typeBlock6ListItem .innerWrapper .imageBlock
	{
		max-width: calc(36px + (110 - 36) * var(--width-coefficient));
	}
	.typeBlock6ListItem .innerWrapper .number
	{
		font-size: calc(30px + (50 - 30) * var(--width-coefficient));
	}
	.typeBlock6ListItem .innerWrapper .description
	{
		margin-top: calc(10px + (20 - 10) * var(--width-coefficient));
		line-height: calc(16px + (30 - 16) * var(--width-coefficient));
		font-size: calc(14px + (25 - 14) * var(--width-coefficient));
	}
	.typeBlock6ListItem .innerWrapper .btnLine
	{
		margin-top: calc(10px + (40 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.el_typeBlock6_38488457 .typeBlock6List .typeBlock6ListItem
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 767px)
{
	.el_typeBlock6_38488457 .typeBlock6List .typeBlock6ListItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.staticPage
{
}

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

.contactsPageContent
{
}

.contactsPageContent .contactsBlock
{
}
.contactsPageContent .contactsBlock .row
{
	justify-content: center;
}
.contactsPageContent .contactsBlock .contactsItem
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 130px;
}
.contactsPageContent .contactsBlock .contactsItem .innerWrapper
{
}
/**/
.contactsPageContent .contactsBlock .contactsItem .imageBlock
{
	margin: 0 auto 23px auto;
	max-width: 66px;
}
.contactsPageContent .contactsBlock .contactsItem .imageBlock:empty
{
	margin: 0 auto 0 auto;
}
/**/
.contactsPageContent .contactsBlock .contactsItem .infoBlock
{
	text-align: center;
}
/**/
.contactsPageContent .contactsBlock .contactsItem .infoBlock .title
{
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}
/**/
.contactsPageContent .contactsBlock .contactsItem .infoBlock .phone,
.contactsPageContent .contactsBlock .contactsItem .infoBlock .email,
.contactsPageContent .contactsBlock .contactsItem .infoBlock .description
{
	margin-top: 7px;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--color_2);
}
/***/
.contactsPageContent .contactsBlock .contactsItem .socialNetworkBlock ul
{
	margin-top: 20px;
	text-align: center;
}
.contactsPageContent .contactsBlock .contactsItem .socialNetworkBlock ul li
{
	width: 42px;
	height: 42px;
}

/***/

.contactsPageContent .textBlock
{
	margin-bottom: 40px;
}
.contactsPageContent .textBlock:empty
{
	margin-bottom: 0;
}

/***/

.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 .comtactsFormBlock
{
	background-color: var(--color_white);
	margin: 130px auto 0 auto;
	padding: 136px;
	max-width: 1080px;
}
.contactsPageContent .comtactsFormBlock form
{
}
.contactsPageContent .comtactsFormBlock form textarea
{
	height: 150px;
}
.contactsPageContent .comtactsFormBlock form .buttonForm
{
}
.contactsPageContent .comtactsFormBlock form .buttonForm .btn
{
	min-width: 100%;
}

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

@media (max-width: 1680px)
{
	.contactsPageContent .contactsBlock .contactsItem
	{
		margin-bottom: calc(35px + (130 - 35) * var(--width-coefficient));
	}

	.contactsPageContent .contactsBlock .contactsItem .imageBlock
	{
		max-width: calc(40px + (66 - 40) * var(--width-coefficient));
		margin-bottom: calc(12px + (23 - 12) * var(--width-coefficient));
	}
	/**/
	.contactsPageContent .contactsBlock .contactsItem .infoBlock .title
	{
		line-height: calc(18px + (29 - 18) * var(--width-coefficient));
		font-size: calc(16px + (24 - 16) * var(--width-coefficient));
	}
	/**/
	.contactsPageContent .contactsBlock .contactsItem .infoBlock .description
	{
		line-height: calc(16px + (29 - 16) * var(--width-coefficient));
		font-size: calc(14px + (24 - 14) * var(--width-coefficient));
	}
	/***/
	.contactsPageContent .contactsBlock .contactsItem .socialNetworkBlock ul
	{
		margin-top: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.contactsPageContent .contactsBlock .contactsItem .socialNetworkBlock ul li
	{
		width: calc(24px + (42 - 24) * var(--width-coefficient));
		height: calc(24px + (42 - 24) * var(--width-coefficient));
	}

	.contactsPageContent .comtactsFormBlock
	{
		margin-top: calc(35px + (130 - 35) * var(--width-coefficient));
		padding-top: calc(35px + (136 - 35) * var(--width-coefficient));
		padding-right: calc(40px + (136 - 40) * var(--width-coefficient));
		padding-bottom: calc(35px + (136 - 40) * var(--width-coefficient));
		padding-left: calc(40px + (136 - 35) * var(--width-coefficient));
	}
}

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

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

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

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

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

/***/

.cartComplete .innerWrapper
{
	background-color: var(--color_white);
	padding: 45px 30px 124px 30px;
}

/***/

@media (max-width: 1680px)
{
	.cartComplete .innerWrapper
	{
		padding-top: calc(15px + (45 - 15) * var(--width-coefficient));
		padding-bottom: calc(50px + (124 - 50) * var(--width-coefficient));
	}
}

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

.el_loginContent_38488457
{
}
.el_loginContent_38488457 .innerWrapper
{
	background-color: var(--color_white);
}
.el_loginContent_38488457 .row
{
	align-items: center;
}

/***/

.el_loginContent_38488457 .imageCol
{
	-ms-flex: 0 0 29.848%;
	flex: 0 0 29.848%;
	max-width: 29.848%;
}
.el_loginContent_38488457 .imageCol .imageBlock
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}

/***/

.el_loginContent_38488457 .formCol
{
}
.el_loginContent_38488457 .formCol .formInnerWrapper
{
	margin: 0 auto;
	padding: 85px 15px 165px 15px;
	max-width: 480px;
}

/***/

.el_loginContent_38488457 .note
{
	margin-bottom: 30px;
	letter-spacing: 0.05em;
}

.el_loginContent_38488457 .btn_wrap .btn
{
	margin-top: 30px;
	max-width: 100%;
}
.el_loginContent_38488457 .linkLine
{
	margin-top: 7px;
}
.el_loginContent_38488457 form a
{
	line-height: 1.9rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_10);
}
.el_loginContent_38488457 form a:hover
{
	color: var(--color_6);
}

/***/

.el_loginContent_38488457.authorization .input_wrapper.userPassword
{
	margin-bottom: 7px;
}
.el_loginContent_38488457.authorization .registrationLink
{
	margin-top: 35px;
	text-align: center;
}
.el_loginContent_38488457.authorization .registrationLink a
{
	text-decoration: underline;
}

/***/

.el_loginContent_38488457.registration .wholesaleBuyerCheckbox
{
	justify-content: center;
}
.el_loginContent_38488457.registration .fieldOfActivityBlock
{
	margin-top: 24px;
}
.el_loginContent_38488457.registration .subscribeCheckbox
{
	margin-top: 15px;
}
.el_loginContent_38488457.registration .authorizationLink
{
	margin-top: 35px;
	text-align: center;
}
.el_loginContent_38488457.registration .authorizationLink a
{
	text-decoration: underline;
}

/***/

.el_loginContent_38488457.recoveryPassword .authorizationLink
{
	margin-top: 35px;
	text-align: center;
}
.el_loginContent_38488457.recoveryPassword .authorizationLink a
{
	text-decoration: underline;
}
.el_loginContent_38488457.recoveryPassword .registrationLink
{
	margin-top: 15px;
	text-align: center;
}
.el_loginContent_38488457.recoveryPassword .registrationLink a
{
	text-decoration: underline;
}

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

@media (max-width: 1680px)
{
	.el_loginContent_38488457 .formCol .formInnerWrapper
	{
		padding-top: calc(30px + (85 - 30) * var(--width-coefficient));
		padding-bottom: calc(45px + (165 - 45) * var(--width-coefficient));
	}

	.el_loginContent_38488457 .btn_wrap .btn
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}

	.el_loginContent_38488457 form a
	{
		line-height: calc(15px + (19 - 15) * var(--width-coefficient));
		font-size: calc(12px + (16 - 12) * var(--width-coefficient));
	}

	.el_loginContent_38488457.authorization .registrationLink,
	.el_loginContent_38488457.registration .authorizationLink,
	.el_loginContent_38488457.recoveryPassword .authorizationLink
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}

@media (max-width: 767px)
{
	.el_loginContent_38488457 .imageCol
	{
		display: none;
	}
}

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

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

.el_profileContent_38488457
{
}
.el_profileContent_38488457 .profileList
{
}

.el_profileContent_38488457 .profileList .profileItem
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 24px;
}
.el_profileContent_38488457 .profileList .profileItem a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	background-color: var(--color_white);
	padding: 50px 70px;
	height: 100%;
}
.el_profileContent_38488457 .profileList .profileItem a .ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid var(--color_1);
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
}
.el_profileContent_38488457 .profileList .profileItem a:hover .ico
{
	border-color: var(--color_6);
}
.el_profileContent_38488457 .profileList .profileItem.exit a .ico
{
	border: none;
}
.el_profileContent_38488457 .profileList .profileItem a .ico svg
{
	width: 26px;
	height: 26px;
}
.el_profileContent_38488457 .profileList .profileItem a .ico svg path[fill]
{
	fill: var(--color_1);
}
.el_profileContent_38488457 .profileList .profileItem a .ico svg path[stroke]
{
	stroke: var(--color_1);
}
.el_profileContent_38488457 .profileList .profileItem a:hover .ico svg path[fill]
{
	fill: var(--color_6);
}
.el_profileContent_38488457 .profileList .profileItem a:hover .ico svg path[stroke]
{
	stroke: var(--color_6);
}
.el_profileContent_38488457 .profileList .profileItem a .title
{
	padding-left: 10px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	stroke: var(--color_1);
}
.el_profileContent_38488457 .profileList .profileItem a:hover .title
{
	color: var(--color_6);
}
/**/
.el_profileContent_38488457 .text
{
	margin-top: 40px;
}
.el_profileContent_38488457 .text:empty
{
	margin-top: 0;
}

/*****/

@media (max-width: 1680px)
{
	.el_profileContent_38488457 .profileList .profileItem a
	{
		padding-top: calc(15px + (50 - 15) * var(--width-coefficient));
		padding-right: calc(30px + (70 - 30) * var(--width-coefficient));
		padding-bottom: calc(15px + (50 - 15) * var(--width-coefficient));
		padding-left: calc(30px + (70 - 30) * var(--width-coefficient));
	}
	.el_profileContent_38488457 .profileList .profileItem a .ico
	{
		-ms-flex: 0 0 calc(30px + (40 - 30) * var(--width-coefficient));
		flex: 0 0 calc(30px + (40 - 30) * var(--width-coefficient));
		max-width: calc(30px + (40 - 30) * var(--width-coefficient));
		height: calc(30px + (40 - 30) * var(--width-coefficient));
	}
	.el_profileContent_38488457 .profileList .profileItem a .ico svg
	{
		width: calc(16px + (26 - 16) * var(--width-coefficient));
		height: calc(16px + (26 - 16) * var(--width-coefficient));
	}
	.el_profileContent_38488457 .profileList .profileItem a .title
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_profileContent_38488457 .profileList .profileItem
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 480px)
{
	.el_profileContent_38488457 .profileList .profileItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.el_changePasswordContent_38488457
{
}

/***********************************************************************/
/*****                     profileContent                          *****/
/***********************************************************************/

.profileContent
{
}
.profileContent .profileInnerWrapper
{
	background-color: var(--color_white);
	padding: 60px 130px 50px 130px;
}
.profileContent .profileInnerWrapper.other
{
	border-top: 1px solid var(--color_1);
}

/***/

.profileContent .titleBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.profileContent .titleBlock .title
{
	margin-right: 15px;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}
.profileContent .titleBlock .editLink
{
	display: block;
	letter-spacing: 0.03em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
}
.profileContent .titleBlock a.editLink
{
	color: var(--color_10);
}
.profileContent .titleBlock a.editLink:hover
{
	text-decoration: underline;
}
.profileContent .titleBlock span.editLink
{
	color: var(--color_2);
}

/*****/

@media (max-width: 1680px)
{
	.profileContent .profileInnerWrapper
	{
		padding-top: calc(20px + (60 - 20) * var(--width-coefficient));
		padding-right: calc(30px + (130 - 30) * var(--width-coefficient));
		padding-bottom: calc(15px + (50 - 15) * var(--width-coefficient));
		padding-left: calc(30px + (130 - 30) * var(--width-coefficient));
	}

	.profileContent .titleBlock
	{
		margin-bottom: calc(20px + (30 - 20) * var(--width-coefficient));
	}
	.profileContent .titleBlock .title
	{
		line-height: calc(14px + (29 - 14) * var(--width-coefficient));
		font-size: calc(12px + (24 - 12) * var(--width-coefficient));
	}
	.profileContent .titleBlock .editLink
	{
		line-height: calc(15px + (18 - 15) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	.profileContent .infoDataBlock .itemData
	{
		margin-bottom: calc(15px + (25 - 15) * var(--width-coefficient));
	}
	.profileContent .infoDataBlock .itemData .title
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}
	.profileContent .infoDataBlock .itemData .value
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}

	.profileContent .formDataBlock .btn_wrap
	{
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.profileContent .formDataBlock .btn_wrap .btn.save
	{
		margin-left: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}

/***********************************************************************/
/*****                     offerWishList_user                      *****/
/***********************************************************************/

.el_offerWishList_user_38488457
{
}

/***********************************************************************/
/*****                     viewedProductsContent_user                      *****/
/***********************************************************************/

.el_viewedProductsContent_user_38488457
{
}

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

.el_userOrderList_38488457
{
}

/***/

.el_userOrderList_38488457 .orderList
{
}
.el_userOrderList_38488457 .orderList .orderListItem
{
}
.el_userOrderList_38488457 .orderList .orderListItem .wrapper
{
	border-top: 1px solid var(--color_1);
}
.el_userOrderList_38488457 .orderList .orderListItem:last-child .wrapper
{
	border-bottom: 1px solid var(--color_1);
}
.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock
{
	position: relative;
	padding: 15px 80px 17px 0;
	cursor: pointer;
}
.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock p
{
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock p span
{
	display: inline-block;
	color: var(--color_2);
}
.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock .toggleBtn
{
	position: absolute;
	display: block;
	top: 50%;
	right: 40px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock .toggleBtn::before
{
	content: "\f107";
	font-family: "FontAwesome";
	font-size: 3rem;
}
.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock.open .toggleBtn::before
{
	content: "\f106";
}

/***/

.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock
{
	display: none;
}
.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock.open
{
	display: block;
}

/***/

.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock .statuRow
{
	margin-top: 10px;
	justify-content: space-between;
}
.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock .statuRow .title
{
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: #101921;
}
.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock .statuRow .value
{
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: unset;
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: right;
}
/**/
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem
{
	border-top: 1px solid var(--color_3);
	padding-top: 24px;
	padding-bottom: 24px;
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem:first-child
{
	border-top: none;
}
/**/
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .row
{
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .colTitle
{
	margin-bottom: 10px;
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	color: #101921;
}
/**/
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .imageCol
{
	-ms-flex: 0 0 114px;
	flex: 0 0 114px;
	max-width: 114px;
}
/**/
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol
{
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol p
{
	margin-bottom: 5px;
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_2);
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol .title
{
	margin-top: 0;
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol .title,
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol .title a
{
	display: inline-block;
	line-height: 2.7rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color_1);
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol .title a:hover
{
	color: var(--color_6);
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol .offerModTitle
{
	display: none;
}

/**/
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .offerModCol
{
	-ms-flex: 0 0 100px;
	flex: 0 0 100px;
	max-width: unset;
	text-align: center;
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .offerModCol .offerModTitle
{
	margin-top: 16px;
	font-family: var(--font-family-2);
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color_1);
}
/**/
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .qtyCol
{
	-ms-flex: 0 0 124px;
	flex: 0 0 124px;
	max-width: 124px;
	text-align: center;
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .qtyCol .value
{
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_2);
}
/**/
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .costCol
{
	text-align: center;
}
.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .costCol .cost
{
	font-family: var(--font-family-2);
	line-height: 2.7rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color_1);
}
/**/

.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock .btnLine
{
	margin: 40px 0;
	text-align: right;
}

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

@media (max-width: 1680px)
{
	.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock
	{
		padding-right: calc(40px + (80 - 40) * var(--width-coefficient));
	}
	.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock p
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
	.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock .toggleBtn
	{
		right: calc(20px + (40 - 20) * var(--width-coefficient));
	}
	.el_userOrderList_38488457 .orderList .orderListItem .orderTitleBlock .toggleBtn::before
	{
		font-size: calc(14px + (30 - 14) * var(--width-coefficient));
	}

	/**/

	.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock .statuRow .title
	{
		line-height: calc(15px + (20 - 15) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}
	.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock .statuRow .value
	{
		line-height: calc(15px + (20 - 15) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	/**/

	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem
	{
		padding-top: calc(12px + (24 - 12) * var(--width-coefficient));
		padding-bottom: calc(12px + (24 - 12) * var(--width-coefficient));
	}

	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .colTitle
	{
		line-height: calc(14px + (20 - 14) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .imageCol
	{
		-ms-flex: 0 0 calc(65px + (114 - 65) * var(--width-coefficient));
		flex: 0 0 calc(65px + (114 - 65) * var(--width-coefficient));
		max-width: calc(65px + (114 - 65) * var(--width-coefficient));
	}
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol p
	{
		line-height: calc(14px + (20 - 14) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol .title,
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol .title a
	{
		line-height: calc(20px + (27 - 20) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}

	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .qtyCol
	{
		-ms-flex: 0 0 calc(80px + (124 - 80) * var(--width-coefficient));
		flex: 0 0 calc(80px + (124 - 80) * var(--width-coefficient));
		max-width: calc(80px + (124 - 80) * var(--width-coefficient));
	}
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .qtyCol .value
	{
		line-height: calc(14px + (20 - 14) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .costCol .cost
	{
		line-height: calc(22px + (27 - 22) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}

	/***/

	.el_userOrderList_38488457 .orderList .orderListItem .orderContentBlock .btnLine
	{
		margin-top: calc(15px + (40 - 15) * var(--width-coefficient));
		margin-bottom: calc(15px + (40 - 15) * var(--width-coefficient));
	}
}
@media (max-width: 1366px)
{
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol .offerModTitle
	{
		display: block;
	}
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .offerModCol
	{
		display: none;
	}
}
@media (max-width: 767px)
{
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .colTitle
	{
		text-align: left;
	}
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .productCol
	{
		-ms-flex: 0 0 calc(100% - calc(14px + (44 - 14) * var(--width-coefficient)));
		flex: 0 0 calc(100% - calc(14px + (44 - 14) * var(--width-coefficient)));
		max-width: calc(100% - calc(14px + (44 - 14) * var(--width-coefficient)));
	}
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .qtyCol
	{
		margin-top: 10px;
		text-align: left;
	}
	.el_userOrderList_38488457 .orderList .orderListItem .offerList .offerListItem .costCol
	{
		margin-top: 10px;
		-ms-flex: 0 0 calc(100% - calc(80px + (124 - 80) * var(--width-coefficient)));
		flex: 0 0 calc(100% - calc(80px + (124 - 80) * var(--width-coefficient)));
		max-width: calc(100% - calc(80px + (124 - 80) * var(--width-coefficient)));
		text-align: left;
	}
}

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

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

.el_userOrderView_38488457 .innerWrapper .el_titleBlock_38488457
{
	margin-top: 60px;
}

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

/*****/

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

.el_userOrderView_38488457 .innerWrapper .bottomTable .tableRow .product .img_wrap
{
}
.el_userOrderView_38488457 .innerWrapper .bottomTable .tableRow .product .img_wrap .el
{
}
.el_userOrderView_38488457 .innerWrapper .bottomTable .tableRow .product p
{
	margin-bottom: 5px;
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--color_2);
}
.el_userOrderView_38488457 .innerWrapper .bottomTable .tableRow .product .offerTitle
{
	line-height: 1.7;
	font-size: 1.4rem;
	color: var(--color_1);
}
.el_userOrderView_38488457 .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_38488457 .innerWrapper .bottomTable .tableRow .product .offerTitle a:hover
{
	color: var(--color_1);
}

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

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

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

.el_bonusList_38488457
{
}

/***/

.el_bonusList_38488457 .infoBlock
{
	border-top: 1px solid var(--color_1);
	padding-top: 17px;
}
.el_bonusList_38488457 .infoBlock p
{
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_bonusList_38488457 .infoBlock p span
{
	font-weight: 700;
}
.el_bonusList_38488457 .infoBlock p.bonuses span
{
	color: var(--color_8);
}

/***/

.el_bonusList_38488457 .bonusListBlock
{
	margin-top: 50px;
}
.el_bonusList_38488457 .bonusListBlock .bonusList
{
}

/***/

.el_bonusList_38488457 .bonusListBlock .tableHeader
{
	background-color: var(--color_5);
}

.el_bonusList_38488457 .bonusListBlock .tableHeader .tableCol
{
	border-top: 1px solid var(--color_1);
	letter-spacing: 0.05em;
}
/**/
.el_bonusList_38488457 .bonusListBlock .tableCol
{
	border-right: 1px solid var(--color_1);
	padding: 15px;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_bonusList_38488457 .bonusListBlock .tableCol:first-child
{
	border-left: 1px solid var(--color_1);
}
.el_bonusList_38488457 .bonusListBlock .tableRow:last-child .tableCol
{
	border-bottom: 1px solid var(--color_1);
}
/**/
.el_bonusList_38488457 .bonusListBlock .number
{
	-ms-flex: 0 0 170px;
	flex: 0 0 170px;
	max-width: 170px;
	text-align: center;
}
.el_bonusList_38488457 .bonusListBlock .date
{
	-ms-flex: 0 0 130px;
	flex: 0 0 130px;
	max-width: 130px;
	text-align: center;
}
.el_bonusList_38488457 .bonusListBlock .operation
{
	-ms-flex: 0 0 150px;
	flex: 0 0 150px;
	max-width: 150px;
	text-align: center;
}
.el_bonusList_38488457 .bonusListBlock .price
{
	-ms-flex: 0 0 120px;
	flex: 0 0 120px;
	max-width: 120px;
	text-align: center;
}
/**/
.el_bonusList_38488457 .bonusListBlock .tableRow
{
}
.el_bonusList_38488457 .bonusListBlock .tableRow a
{
	color: var(--color_10);
}
.el_bonusList_38488457 .bonusListBlock .tableRow a:hover
{
	color: var(--color_6);
}
.el_bonusList_38488457 .bonusListBlock .tableRow .title
{
	display: none;
}
.el_bonusList_38488457 .bonusListBlock .tableRow:nth-child(even)
{
}
.el_bonusList_38488457 .bonusListBlock .tableRow:nth-child(odd)
{
	background-color: var(--color_14);
}
.el_bonusList_38488457 .bonusListBlock .tableRow .value
{
}
.el_bonusList_38488457 .bonusListBlock .tableRow .value.plus,
.el_bonusList_38488457 .bonusListBlock .tableRow .value.plusCancel
{
	color: var(--color_8);
}
.el_bonusList_38488457 .bonusListBlock .tableRow .value.minus,
.el_bonusList_38488457 .bonusListBlock .tableRow .value.minusCancel
{
	color: var(--color_6);
}
.el_bonusList_38488457 .bonusListBlock .tableRow .value.burn
{
	color: var(--color_7);
}

/*****/

@media (max-width: 1680px)
{
	.el_bonusList_38488457 .infoBlock p
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}
	.el_bonusList_38488457 .bonusListBlock
	{
		margin-top: calc(25px + (50 - 25) * var(--width-coefficient));
	}
	.el_bonusList_38488457 .bonusListBlock .tableCol
	{
		padding-top: calc(5px + (15 - 5) * var(--width-coefficient));
		padding-right: calc(5px + (15 - 5) * var(--width-coefficient));
		padding-bottom: calc(5px + (15 - 5) * var(--width-coefficient));
		padding-left: calc(5px + (15 - 5) * var(--width-coefficient));
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 1366px)
{
	.el_bonusList_38488457 .bonusListBlock .number
	{
		-ms-flex: 0 0 140px;
		flex: 0 0 140px;
		max-width: 140px;
	}
	.el_bonusList_38488457 .bonusListBlock .date
	{
		-ms-flex: 0 0 110px;
		flex: 0 0 110px;
		max-width: 110px;
	}
	.el_bonusList_38488457 .bonusListBlock .operation
	{
		-ms-flex: 0 0 120px;
		flex: 0 0 120px;
		max-width: 120px;
	}
	.el_bonusList_38488457 .bonusListBlock .price
	{
		-ms-flex: 0 0 80px;
		flex: 0 0 80px;
		max-width: 80px;
	}
}
@media (max-width: 1200px)
{
	.el_bonusList_38488457 .bonusListBlock .tableHeader
	{
		display: none;
	}
	.el_bonusList_38488457 .bonusListBlock .tableRow
	{
		border: 1px solid var(--color_1);
		margin-bottom: calc(8px + (24 - 8) * var(--width-coefficient));
	}
	.el_bonusList_38488457 .bonusListBlock .tableCol
	{
		display: -ms-flex;
		display: flex;
		justify-content: space-between;

		border: none;
		border-bottom: 1px dashed var(--color_1);

		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		text-align: left;
	}
	.el_bonusList_38488457 .bonusListBlock .tableCol:first-child
	{
		border-left: none;
	}
	.el_bonusList_38488457 .bonusListBlock .tableCol:last-child
	{
		border-bottom: none;
	}
	.el_bonusList_38488457 .bonusListBlock .tableRow:last-child .tableCol
	{
		border-bottom: 1px dashed var(--color_1);
	}
	.el_bonusList_38488457 .bonusListBlock .tableRow:last-child .tableCol:last-child
	{
		border-bottom: none;
	}

	.el_bonusList_38488457 .bonusListBlock .tableRow .title
	{
		display: inline-block;
	}
	.el_bonusList_38488457 .bonusListBlock .tableRow .value
	{
		text-align: right;
	}
}
@media (max-width: 460px)
{
	.el_bonusList_38488457 .amountBonusesBlock .item
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.el_userData_38488457
{
}

/***/

.el_userData_38488457 .infoDataBlock,
.el_userData_38488457 .formDataBlock
{
	display: none;
}
.el_userData_38488457 .infoDataBlock.open,
.el_userData_38488457 .formDataBlock.open
{
	display: block;
}

.el_userData_38488457 .infoDataBlock .centerCol,
.el_userData_38488457 .formDataBlock .centerCol
{
	-ms-flex: 0 0 16.768%;
	flex: 0 0 16.768%;
	max-width: 16.768%;
}

/***/

.el_userData_38488457 .infoDataBlock .itemData
{
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--color_2);
	margin-bottom: 25px;
	padding-bottom: 5px;
}
.el_userData_38488457 .infoDataBlock .itemData .title
{
	display: inline-block;
	padding-right: 10px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_3);
}
.el_userData_38488457 .infoDataBlock .itemData .value
{
	display: inline-block;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}

/***/

.el_userData_38488457 .formDataBlock .btn_wrap
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.el_userData_38488457 .formDataBlock .btn_wrap .btn
{
	max-width: 176px;
}
.el_userData_38488457 .formDataBlock .btn_wrap .btn.save
{
	margin-left: 20px;
}

/***/

.el_userData_38488457 .otherBlock
{
}
/**/
.el_userData_38488457 .otherBlock .linkLine
{
}
.el_userData_38488457 .otherBlock .linkLine .changePassword
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_userData_38488457 .otherBlock .linkLine .changePassword:hover
{
	color: var(--color_6);
}
.el_userData_38488457 .otherBlock .linkLine .changePassword svg
{
	margin-right: 7px;
	width: 16px;
	height: 23px;
}
.el_userData_38488457 .otherBlock .linkLine .changePassword svg[fill]
{
	fill: var(--color_1);
}
.el_userData_38488457 .otherBlock .linkLine .changePassword svg[stroke]
{
	stroke: var(--color_1);
}
.el_userData_38488457 .otherBlock .linkLine .changePassword:hover svg[fill]
{
	fill: var(--color_6);
}
.el_userData_38488457 .otherBlock .linkLine .changePassword:hover svg[stroke]
{
	stroke: var(--color_6);
}
/**/
.el_userData_38488457 .otherBlock .hobbyBlock
{
	margin-top: 50px;
}
.el_userData_38488457 .otherBlock .hobbyBlock .title
{
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
}
.el_userData_38488457 .otherBlock .hobbyBlock .hobbyList
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.el_userData_38488457 .otherBlock .hobbyBlock .hobbyList .hobbyCheckbox
{
	margin-top: 20px;
	margin-right: 40px;
}

/*****/

@media (max-width: 1680px)
{
	.el_userData_38488457 .infoDataBlock .itemData
	{
		margin-bottom: calc(15px + (25 - 15) * var(--width-coefficient));
	}
	.el_userData_38488457 .infoDataBlock .itemData .title
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}
	.el_userData_38488457 .infoDataBlock .itemData .value
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(10px + (18 - 10) * var(--width-coefficient));
	}

	.el_userData_38488457 .formDataBlock .btn_wrap
	{
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.el_userData_38488457 .formDataBlock .btn_wrap .btn.save
	{
		margin-left: calc(10px + (20 - 10) * var(--width-coefficient));
	}


	.el_userData_38488457 .otherBlock .linkLine .changePassword
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
	.el_userData_38488457 .otherBlock .linkLine .changePassword svg
	{
		width: calc(12px + (16 - 12) * var(--width-coefficient));
		height: calc(18px + (23 - 18) * var(--width-coefficient));
	}

	.el_userData_38488457 .otherBlock .hobbyBlock
	{
		margin-top: calc(15px + (50 - 15) * var(--width-coefficient));
	}
	.el_userData_38488457 .otherBlock .hobbyBlock .title
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}

	.el_userData_38488457 .otherBlock .hobbyBlock .hobbyList .hobbyCheckbox
	{
		margin-top: calc(10px + (20 - 10) * var(--width-coefficient));
		margin-right: calc(20px + (40 - 20) * var(--width-coefficient));
	}

}
@media (max-width: 1480px)
{
	.el_userData_38488457 .infoDataBlock .centerCol,
	.el_userData_38488457 .formDataBlock .centerCol
	{
		-ms-flex: 0 0 10%;
		flex: 0 0 10%;
		max-width: 10%;
	}
}
@media (max-width: 1366px)
{
	.el_userData_38488457 .innerWrapper
	{
		padding-top: calc(20px + (60 - 20) * var(--width-coefficient));
		padding-right: calc(30px + (70 - 30) * var(--width-coefficient));
		padding-bottom: calc(15px + (50 - 15) * var(--width-coefficient));
		padding-left: calc(30px + (70 - 30) * var(--width-coefficient));
	}
	.el_userData_38488457 .infoDataBlock .centerCol,
	.el_userData_38488457 .formDataBlock .centerCol
	{
		-ms-flex: 0 0 5%;
		flex: 0 0 5%;
		max-width: 5%;
	}
}
@media (max-width: 480px)
{
	.el_userData_38488457 .infoDataBlock .col,
	.el_userData_38488457 .formDataBlock .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);
}
.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_1_40);
}

.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: 700; /*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_1);
}
.compareListCD .offerCompareList .compareBlock .headCol.ico p a
{
	font-size: 1.5rem;
	color: var(--color_1);
}
.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_1);
}

/***/
.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_38488457
{
}
.el_page404Content_38488457 .numbers
{
	font-family: var(--font-family-2);
	letter-spacing: 0.15em;
	line-height: 12.1rem;
	font-size: 10rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_1);
}

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

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

.hsTextBlock
{
}
.hsTextBlock > .text
{
	position: relative;
	overflow: hidden;
}
.hsTextBlock > .text.h440
{
	max-height: 440px;
}
.hsTextBlock > .text.h200
{
	max-height: 200px;
}
.hsTextBlock > .text.h100
{
	max-height: 100px;
}
.hsTextBlock > .text.h80
{
	max-height: 80px;
}
.hsTextBlock > .text.h60
{
	max-height: 60px;
}
.hsTextBlock > .text.h40
{
	max-height: 40px;
}
.hsTextBlock > .text.showed
{
	max-height: 100%;
	overflow: unset;
}
.hsTextBlock > .text::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);
}
.hsTextBlock.blue > .text:after
{
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	width: 100%;
	height: 30px;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, var(--color_4) 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, var(--color_4) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--color_4) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#F1F9FF', GradientType=0);
}
.hsTextBlock.gray > .text:after
{
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	width: 100%;
	height: 30px;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, var(--color_5) 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, var(--color_5) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--color_5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#F8F8F8', GradientType=0);
}
.hsTextBlock > .text.showed:after
{
	display: none;
}

/**/
.readMoreText
{
	margin-top: 25px;
}
.readMoreText a
{
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_10);
}
.readMoreText a:hover
{
	color: var(--color_11);
}
.readMoreText a i
{
	margin-left: 5px;
}
/**/
.hsTextBlock .btnLine
{
	margin-top: 30px;
	text-align: center;
}

/*****/

@media (max-width: 1680px)
{
	.hsTextBlock > .text.h440
	{
		max-height: calc(105px + (440 - 105) * var(--width-coefficient));
	}
	.hsTextBlock > .text.h440.showed
	{
		max-height: 100%;
	}

	.readMoreText
	{
		margin-top: calc(5px + (25 - 5) * var(--width-coefficient));
	}
	.readMoreText a
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
}

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

.staticText
{
	font-family: var(--font-family-1);
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
}
.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: 700;
	color: var(--color_black);
}
.staticText h1,
.staticText .h1
{
	line-height: 3.4rem;
	font-size: 2.8rem;
}
.staticText h2,
.staticText .h2
{
	line-height: 3rem;
	font-size: 2.6rem;
}
.staticText h3,
.staticText .h3
{
	line-height: 3rem;
	font-size: 2.4rem;
}
.staticText h4,
.staticText .h4
{
	line-height: 2.8rem;
	font-size: 2.2rem;
}
.staticText h5,
.staticText .h5
{
	line-height: 2.8rem;
	font-size: 2rem;
}
.staticText h6,
.staticText .h6
{
	line-height: 2.8rem;
	font-size: 1.8rem;
}

.staticText ul,
.staticText ol
{
	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 30px 0;
	padding: 0;
}
.staticText ul li
{
	position: relative;
	list-style: none;
}
.staticText ul li::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background-color: var(--color_6);
	top: 9px;
	left: -19px;
	width: 8px;
	height: 8px;
}
.staticText ol li
{
	list-style: decimal;
}

.staticText a
{
	text-decoration: underline;
	color: var(--color_10);
}
.staticText a:hover
{
	color: var(--color_6);
}
.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%;
	border: 2px solid var(--color_4);
}
.staticText table thead
{
	background-color: var(--color_5);
}
.staticText table thead tr th
{
	padding: 9px 13px;
	border-right: 1px solid var(--color_4);
	border-bottom: 2px solid var(--color_4);
}
.staticText table thead tr th:last-child
{
	border-right: none;
}
.staticText table tr
{
}
.staticText table tr:nth-child(odd)
{
	background-color: var(--color_14);
}
.staticText table tr td
{
	padding: 9px 13px;
	border-right: 1px solid var(--color_4);
}
.staticText table tr td:last-child
{
	border-right: none;
}

.staticText hr
{
	border-color: var(--color_6);
	border-style: solid;
	margin: 40px 0;
}

.staticText blockquote
{
	position: relative;
	margin: 40px auto;
	padding: 30px 50px;
	max-width: 880px;
	line-height: 3.5rem;
	font-size: 2.5rem;
	font-weight: 400;
}
.staticText blockquote::before,
.staticText blockquote::after
{
	position: absolute;
	display: block;
	content: "";
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 27px;
	height: 23px;
}
.staticText blockquote::before
{
	background-image: url("../img/ico-blockquote-open.svg");
	top: 0;
	left: 0;
}
.staticText blockquote::after
{
	background-image: url("../img/ico-blockquote-close.svg");
	right: 0;
	bottom: 0;
}

.staticText .videoIframe
{
	width: 100%;
	max-width: 100%;
	margin-bottom: 24px;
}
.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 > iframe
{
	display: block;
	margin: 0px auto;
	max-width: 100%;
	max-height: 100%;
}

@media (max-width: 1680px)
{
	.staticText
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	.staticText *
	{
		margin-bottom: calc(20px + (30 - 20) * 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-top: calc(20px + (40 - 20) * var(--width-coefficient));
		margin-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	.staticText h1,
	.staticText .h1
	{
		line-height: calc(27px + (34 - 27) * var(--width-coefficient));
		font-size: calc(24px + (28 - 24) * var(--width-coefficient));
	}
	.staticText h2,
	.staticText .h2
	{
		line-height: calc(24px + (30 - 24) * var(--width-coefficient));
		font-size: calc(22px + (26 - 22) * var(--width-coefficient));
	}
	.staticText h3,
	.staticText .h3
	{
		line-height: calc(22px + (30 - 22) * var(--width-coefficient));
		font-size: calc(20px + (24 - 20) * var(--width-coefficient));
	}
	.staticText h4,
	.staticText .h4
	{
		line-height: calc(20px + (28 - 20) * var(--width-coefficient));
		font-size: calc(18px + (22 - 18) * var(--width-coefficient));
	}
	.staticText h5,
	.staticText .h5
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(16px + (20 - 16) * var(--width-coefficient));
	}
	.staticText h6,
	.staticText .h6
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	.staticText ul,
	.staticText ol
	{
		padding-left: calc(20px + (40 - 20) * var(--width-coefficient));
	}
	.staticText ul li ul,
	.staticText ol li ul,
	.staticText ul li ol
	{
		padding-left: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.staticText ul li,
	.staticText ol li
	{
		margin-bottom: calc(20px + (30 - 20) * var(--width-coefficient));
	}
	.staticText ul li::before
	{
		top: calc(7px + (9 - 7) * var(--width-coefficient));
		left: calc((14px + (19 - 14) * var(--width-coefficient)) * -1);
		width: calc(4px + (8 - 4) * var(--width-coefficient));
		height: calc(4px + (8 - 4) * var(--width-coefficient));
	}

	.staticText blockquote
	{
		margin-top: calc(20px + (40 - 20) * var(--width-coefficient));
		margin-bottom: calc(20px + (40 - 20) * var(--width-coefficient));
		padding-top: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-right: calc(20px + (50 - 20) * var(--width-coefficient));
		padding-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-left: calc(20px + (50 - 20) * var(--width-coefficient));
		line-height: calc(26px + (35 - 26) * var(--width-coefficient));
		font-size: calc(16px + (25 - 16) * var(--width-coefficient));
	}
	.staticText blockquote::before,
	.staticText blockquote::after
	{
		width: calc(16px + (27 - 16) * var(--width-coefficient));
		height: calc(14px + (23 - 14) * var(--width-coefficient));
	}

	.staticText hr
	{
		margin-top: calc(20px + (40 - 20) * var(--width-coefficient));
		margin-bottom: calc(20px + (40 - 20) * var(--width-coefficient));
	}
}

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

.el_paginationBlock_38488457
{
}
.el_paginationBlock_38488457 ul
{
	padding: 55px 0 24px 0;
	text-align: center;
}
.el_paginationBlock_38488457 ul li
{
	display: inline-block;
	margin: 7px;
}
.el_paginationBlock_38488457 ul li a,
.el_paginationBlock_38488457 ul li span
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 42px;
	border: 2px solid var(--color_3);
	background-color: transparent;
	box-shadow: none;
	min-width: 42px;
	height: 42px;
	line-height: 40px;
	font-family: var(--font-family-1);
	font-size: 2.2rem;
	font-weight: 700; /*font-weight: 500;*/
	text-transform: uppercase;
	font-style: normal;
	color: var(--color_3);
}
.el_paginationBlock_38488457 ul li a:hover,
.el_paginationBlock_38488457 ul li span
{
	border-color: var(--color_1);
	color: var(--color_1);
}

@media (max-width: 1680px)
{
	.el_paginationBlock_38488457 ul
	{
		padding-top: calc(24px + (55 - 24) * var(--width-coefficient));
		padding-bottom: calc(12px + (24 - 12) * var(--width-coefficient));
	}
	.el_paginationBlock_38488457 ul li
	{
		margin: calc(3px + (7 - 3) * var(--width-coefficient));
	}
	.el_paginationBlock_38488457 ul li a,
	.el_paginationBlock_38488457 ul li span
	{
		border-radius: calc(30px + (42 - 30) * var(--width-coefficient));
		border-width: calc(1px + (2 - 1) * var(--width-coefficient));
		min-width: calc(30px + (42 - 30) * var(--width-coefficient));
		height: calc(30px + (42 - 30) * var(--width-coefficient));
		line-height: calc(28px + (40 - 28) * var(--width-coefficient));
		font-size: calc(15px + (22 - 15) * var(--width-coefficient));
	}
}

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

.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_15_40);
	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: 600px;
	height: 100vh;
	overflow: auto;
	z-index: 2;
}
.dimensionalGridBlock .innerWrapper .closeButton
{
	position: absolute;
	top: 10px;
	right: 50px;
}
.dimensionalGridBlock .innerWrapper .title
{
	border-bottom: 1px solid var(--color_1);
	padding: 24px 90px 24px 50px;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	text-align: center;
	color: var(--color_1);
}
.dimensionalGridBlock .innerWrapper .content
{
	padding: 40px 50px 50px 50px;
}
.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_10);
}
.dimensionalGridBlock .innerWrapper .linkLine a span
{
	display: block;
}

@media (max-width: 1680px)
{
	.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-top: calc(20px + (24 - 20) * var(--width-coefficient));
		padding-right: calc(30px + (90 - 30) * var(--width-coefficient));
		padding-bottom: calc(15px + (24 - 15) * var(--width-coefficient));
		padding-left: calc(15px + (50 - 15) * var(--width-coefficient));

		line-height: calc(14px + (29 - 14) * var(--width-coefficient));
		font-size: calc(12px + (24 - 12) * var(--width-coefficient));
	}
	.dimensionalGridBlock .innerWrapper .content
	{
		padding-top: calc(15px + (40 - 15) * var(--width-coefficient));
		padding-right: calc(15px + (50 - 15) * var(--width-coefficient));
		padding-bottom: calc(15px + (40 - 15) * var(--width-coefficient));
		padding-left: calc(15px + (50 - 15) * var(--width-coefficient));
	}
}

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

.fancybox-content
{
	background-color: var(--color_white);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 2px;
	padding: 60px 70px 70px;
	max-width: 650px;
	width: 100%;
	color: var(--color_1);
}
.fancybox-content.mw1050
{
	max-width: 1050px;
}
.fancybox-content.mw540
{
	max-width: 540px;
}
.fancybox-slide--video .fancybox-content
{
	max-width: 100% !important;
}

.fancybox-error p
{
	color: var(--color_7);
}
.fancybox-content .fancybox-button svg path
{
	fill: var(--color_1);
}
.fancybox-content .btn_wrap .btn,
.fancybox-content .buttonForm .btn
{
	max-width: 100%;
}

.fancybox-content .modalСontent
{
	font-family: var(--font-family-1);
	line-height: 2.8rem;
	font-size: 2.2rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_2);
}
.fancybox-content .modalСontent a
{
	font-weight: 700; /*font-weight: 500;*/
	text-decoration: underline;
}
.fancybox-content .modalСontent a:hover
{
	color: var(--color_10);
}

.fancybox-content .modalСontent .input_wrapper
{
	text-align: left;
}

/******/

.fancybox-content.vacanciesFormCD .btn_wrap,
.fancybox-content.vacanciesFormCD .buttonForm
{
	margin-top: 36px;
}

/******/

@media (max-width: 1680px)
{
	.fancybox-content
	{
		padding-top: calc(15px + (60 - 15) * var(--width-coefficient));
		padding-right: calc(20px + (70 - 20) * var(--width-coefficient));
		padding-bottom: calc(20px + (70 - 20) * var(--width-coefficient));
		padding-left: calc(20px + (70 - 20) * var(--width-coefficient));
	}

	.fancybox-content .modalСontent
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(12px + (22 - 12) * var(--width-coefficient));
	}

	.fancybox-content.vacanciesFormCD .btn_wrap,
	.fancybox-content.vacanciesFormCD .buttonForm
	{
		margin-top: calc(24px + (36 - 24) * var(--width-coefficient));
	}
}

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

.offerInfoModal .offerImage
{
	-ms-flex: 0 0 250px;
	flex: 0 0 250px;
	max-width: 250px;
}
.offerInfoModal .offerImage .imageBlock
{
}
/***/
.offerInfoModal .infoBlock
{
	padding-left: 15px;
	text-align: left;
}
.offerInfoModal .infoBlock .title
{
}
.offerInfoModal .infoBlock .title a
{
	display: inline-block;
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	text-decoration: none;
	color: var(--color_1);
}
.offerInfoModal .infoBlock .title a:hover
{
	color: var(--color_6);
}
.offerInfoModal .infoBlock .offerModTitle
{
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color_1);
}
/**/
.offerInfoModal .infoBlock .priceBlock
{
	margin-top: 5px;
}
.offerInfoModal .infoBlock .priceBlock .priceLine
{
	margin-top: 15px;
}
.offerInfoModal .infoBlock .priceBlock .priceLine .price
{
	font-family: var(--font-family-2);
	line-height: 2.7rem;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--color_1);
}
.offerInfoModal .infoBlock .priceBlock .priceLine .oldPrice
{
	margin-right: 10px;
	font-family: var(--font-family-2);
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration-line: line-through;
	color: var(--color_2);
}
.offerInfoModal .infoBlock .priceLine .oldPrice.hide
{
	display: none;
}

/***/

.offerInfoModal .infoBlock .priceBlock .priceRangeList
{
}
.offerInfoModal .infoBlock .priceBlock .priceRangeList .innerWrapper
{
	max-width: 260px;
}

/**/
.offerInfoModal .infoBlock .modifications
{
	margin-top: 30px;
}
.offerInfoModal .infoBlock .priceBlock .modifications
{
	margin-top: 30px;
}
.offerInfoModal .infoBlock .priceBlock .modifications .propTitle
{
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.offerInfoModal .infoBlock .priceBlock .modifications ul
{
}
.offerInfoModal .infoBlock .priceBlock .modifications ul li
{
	display: inline-block;
	margin-top: 10px;
	margin-right: 10px;
}
.offerInfoModal .infoBlock .priceBlock .modifications ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 1px solid var(--color_1);
	background-color: var(--color_white);
	padding: 6px 8px 5px 8px;
	min-width: 30px;
	height: 30px;

	font-family: var(--font-family-2);
	line-height: 1;
	font-size: 1.5rem;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_1);
}
.offerInfoModal .infoBlock .priceBlock .modifications ul li a:hover,
.offerInfoModal .infoBlock .priceBlock .modifications ul li a.active
{
	border-color: var(--color_6);
	color: var(--color_6);
}
.offerInfoModal .infoBlock .priceBlock .modifications ul li a.disabled
{
	border-color: var(--color_3);
	color: var(--color_3);
}

/***/

.offerInfoModal .infoBlock .priceBlock .qtyBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-top: 30px;
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock .qty
{
	margin-right: 5px;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock .qtyWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	-ms-flex: 0 0 100px;
	flex: 0 0 100px;
	max-width: 100px;
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock input
{
	border: none;
	margin: 0;
	padding: 0;
	-ms-flex: 0 0 calc(100% - 60px);
	flex: 0 0 calc(100% - 60px);
	max-width: calc(100% - 60px);
	height: 30px;
	text-align: center;
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock button
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid var(--color_1);
	background-color: transparent;
	-ms-flex: 0 0 30px;
	flex: 0 0 30px;
	max-width: 30px;
	height: 30px;
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock button:hover
{
	border-color: var(--color_6);
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock button::before,
.offerInfoModal .infoBlock .priceBlock .qtyBlock button::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock button:hover::before,
.offerInfoModal .infoBlock .priceBloc .qtyBlock button:hover::after
{
	background-color: var(--color_6);
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock button.minus::before
{
	width: 50%;
	height: 1px;
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock button.minus::after
{
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock button.plus::before
{
	width: 50%;
	height: 1px;
}
.offerInfoModal .infoBlock .priceBlock .qtyBlock button.plus::after
{
	width: 1px;
	height: 50%;
}
/**/
.offerInfoModal .infoBlock .priceBlock .bonusLine
{
	margin-top: 5px;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_2);
}
.offerInfoModal .infoBlock .priceBlock .bonusLine.hide
{
	display: none;
}
.offerInfoModal .infoBlock .priceBlock .bonusLine span
{
	display: inline-block;
}

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

@media (max-width: 1680px)
{
	.offerInfoModal .infoBlock .title a
	{
		line-height: calc(25px + (29 - 25) * var(--width-coefficient));
		font-size: calc(18px + (24 - 18) * var(--width-coefficient));
	}

	/**/
	.offerInfoModal .infoBlock .priceBlock .priceLine .price
	{
		line-height: calc(18px + (27 - 18) * var(--width-coefficient));
		font-size: calc(15px + (22 - 15) * var(--width-coefficient));
	}
	.offerInfoModal .infoBlock .priceBlock .priceLine .oldPrice
	{
		margin-right: calc(5px + (10 - 5) * var(--width-coefficient));
		line-height: calc(15px + (18 - 15) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	.offerInfoModal .infoBlock .priceBlock .modifications
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}

	.offerInfoModal .infoBlock .priceBlock .modifications .propTitle
	{
		line-height: calc(12px + (18 - 12) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}
	.offerInfoModal .infoBlock .priceBlock .modifications ul li
	{
		margin-top: calc(5px + (10 - 5) * var(--width-coefficient));
		margin-right: calc(5px + (10 - 5) * var(--width-coefficient));
	}
	.offerInfoModal .infoBlock .priceBlock .modifications ul li a
	{
		border-radius: calc(20px + (30 - 20) * var(--width-coefficient));
		padding-top: calc(3px + (6 - 3) * var(--width-coefficient));
		padding-right: calc(4px + (8 - 4) * var(--width-coefficient));
		padding-bottom: calc(2px + (5 - 2) * var(--width-coefficient));
		padding-left: calc(4px + (8 - 4) * var(--width-coefficient));
		min-width: calc(20px + (30 - 20) * var(--width-coefficient));
		height: calc(20px + (30 - 20) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}

	.offerInfoModal .infoBlock .priceBlock .bonusLine
	{
		line-height: calc(12px + (18 - 12) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 767px)
{
	.offerInfoModal .offerImage
	{
		-ms-flex: 0 0 180px;
		flex: 0 0 180px;
		max-width: 180px;
	}
}
@media (max-width: 460px)
{
	.offerInfoModal .offerImage
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.offerInfoModal .offerImage .imageBlock
	{
		margin: 0 auto;
		max-width: 200px;
	}
}

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

.addToCartFormModal
{
}

.addToCartFormModal .btn_wrap
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}
.addToCartFormModal .btn_wrap .btn
{
	max-width: 48%;
}

@media (max-width: 1680px)
{
	.addToCartFormModal .btn_wrap
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}
@media (max-width: 575px)
{
	.addToCartFormModal .btn_wrap .btn
	{
		max-width: 100%;
	}
	.addToCartFormModal .btn_wrap .btn:last-child
	{
		margin-top: 15px;
	}
}

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

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

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

.cartOfferDeleteConfirmModal
{
}

.cartOfferDeleteConfirmModal .btn_wrap
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}
.cartOfferDeleteConfirmModal .btn_wrap .btn
{
	max-width: 48%;
}

@media (max-width: 1680px)
{
	.cartOfferDeleteConfirmModal .btn_wrap
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}
@media (max-width: 575px)
{
	.cartOfferDeleteConfirmModal .btn_wrap .btn
	{
		max-width: 100%;
	}
	.cartOfferDeleteConfirmModal .btn_wrap .btn:last-child
	{
		margin-top: 15px;
	}
}

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

.confirmUserTelModal
{
}

.confirmUserTelModal .btn_wrap
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}
.confirmUserTelModal .btn_wrap .btn
{
	max-width: 48%;
}

@media (max-width: 1680px)
{
	.confirmUserTelModal .btn_wrap
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}
@media (max-width: 575px)
{
	.confirmUserTelModal .btn_wrap .btn
	{
		max-width: 100%;
	}
	.confirmUserTelModal .btn_wrap .btn:last-child
	{
		margin-top: 15px;
	}
}

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

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

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

.subscribeFormModal
{
	background-color: transparent;
	padding: 15px;
	max-width: 1160px;
}
.subscribeFormModal .fancybox-button svg path
{
	fill: var(--color_white);
}
.subscribeFormModal .el_titleBlock_38488457
{
	background-color: transparent;
	margin-bottom: 10px;
	padding: 0;
	text-align: left;
	color: var(--color_white);
}
.subscribeFormModal .el_titleBlock_38488457 span
{
	color: var(--color_6);
}

.subscribeFormModal .modalСontent
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	text-align: left;
}
.subscribeFormModal .modalСontent .formBlock
{
}
.subscribeFormModal .modalСontent .formWrapperBlock
{
	position: relative;
	background-color: var(--color_white);
	padding: 30px 40px;
	z-index: 2;
}
.subscribeFormModal .modalСontent .formWrapperBlock::before
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 100%;
	bottom: 0;
	width: 50%;
	height: 100%;
	background-color: var(--color_white);
	z-index: 1;
}
.subscribeFormModal .modalСontent .formWrapperBlock .staticText
{
	line-height: 2rem;
	font-size: 1.6rem;
}
.subscribeFormModal .modalСontent .formWrapperBlock .staticText *
{
	margin-bottom: 20px;
}
.subscribeFormModal .modalСontent .formWrapperBlock .staticText ul,
.subscribeFormModal .modalСontent .formWrapperBlock .staticText ol
{
	padding-left: 20px;
}
.subscribeFormModal .modalСontent .formWrapperBlock .staticText ul li,
.subscribeFormModal .modalСontent .formWrapperBlock .staticText ol li
{
	margin: 0 0 5px 0;
}
.subscribeFormModal .modalСontent .formWrapperBlock .staticText ul li::before
{
	top: 7px;
	left: -19px;
	width: 6px;
	height: 6px;
}

.subscribeFormModal .modalСontent .imgBlock
{
	position: relative;
	z-index: 5;
}

/***/

.subscribeFormModal .modalСontent .note
{
	margin-top: 20px;
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--color_2);
}

/******/

@media (max-width: 767px)
{
	.subscribeFormModal
	{
		max-width: 600px;
	}
	.subscribeFormModal .modalСontent
	{
		grid-template-columns: 1fr;
	}
	.subscribeFormModal .modalСontent .formWrapperBlock
	{
		padding: calc(15px + (30 - 15) * var(--width-coefficient)) calc(15px + (40 - 15) * var(--width-coefficient));
	}

	.subscribeFormModal .modalСontent .formWrapperBlock::before
	{
		display: none;
	}
	.subscribeFormModal .modalСontent .formWrapperBlock .row .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.subscribeFormModal .modalСontent .imgBlock
	{
		display: none;
	}
}

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

.formRateStar
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.formRateStar span
{
	font-size: 1.8rem;
	cursor:pointer;
}
.formRateStar span.star svg.empty,
.formRateStar span.star.active svg.full
{
	display: block;
}
.formRateStar span.star.active svg.empty,
.formRateStar span.star svg.full
{
	display: none;
}

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

.rateStar
{
	position: relative;
	display: inline-block !important;
}
.rateStar .starsPassive svg path[stroke]
{
	stroke: var(--color_6);
}
.rateStar .starsPassive svg path[fill]
{
	fill: var(--color_6);
}
.rateStar .starsActive svg path[stroke]
{
	stroke: var(--color_6);
}
.rateStar .starsActive svg path[fill]
{
	fill: var(--color_6);
}
/*****/
.rateStar.smallStar,
.rateStar.smallStar > div > div
{
	width: 70px;
	height: 14px;
}
.rateStar.smallStar > div
{
	position: absolute;
	top: 0;
	left: 0;
	height: 14px;
	width: 0;
	overflow: hidden;
}
.rateStar.smallStar > .starsPassive
{
	width: 70px;
}
.rateStar.smallStar > div svg
{
	margin: 0;
	width: 14px;
	height: 14px;
}
.rateStar.smallStar > div svg:first-child
{
	margin-left: 0;
}
.rateStar.smallStar > div svg:last-child
{
	margin-right: 0;
}
/***/
.rateStar.mediumStar,
.rateStar.mediumStar > div > div
{
	width: 125px;
	height: 25px;
}
.rateStar.mediumStar > div
{
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 0;
	overflow: hidden;
}
.rateStar.mediumStar > .starsPassive
{
	width: 125px;
}
.rateStar.mediumStar > div svg
{
	margin: 0;
	width: 25px;
	height: 25px;
}
.rateStar.mediumStar > div svg:first-child
{
	margin-left: 0;
}
.rateStar.mediumStar > div svg: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_1);
}
.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_1);
}
.filesList .filesListItem a .info .cName
{
	display: block;
	line-height: 1.6rem;
	font-size: 1.2rem;
	color: var(--color_2);
}

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

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


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

.commentListCD
{
	padding-top: 50px;
	padding-bottom: 60px;
}
.commentListCD .commentListEmpty
{
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}

/***/

.commentItem
{
	margin-bottom: 15px;
}
.commentItem .innerWrapper
{
	border-radius: 2px;
	background-color: var(--color_white);
	padding: 100px 50px 100px 65px;
	height: 100%;
}
.commentItem .innerWrapper .nameDateRow
{
}
.commentItem .innerWrapper .name
{
	line-height: 2.9rem;
	font-size: 2.4rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}
.commentItem .innerWrapper .rateBlock
{
	margin-top: 15px;
}
.commentItem .innerWrapper .dateCol
{
	-ms-flex: 0 0 130px;
	flex: 0 0 130px;
	max-width: 130px;
	text-align: right;
}
.commentItem .innerWrapper .date
{
	font-family: var(--font-family-2);
	line-height: 2.2rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
}

.commentItem .innerWrapper .commentText
{
	margin-top: 30px;
	letter-spacing: 0.05em;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
}
.commentItem .innerWrapper .commentText.textPlus > span,
.commentItem .innerWrapper .commentText.textMinus > span
{
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
}

/***/

.commentItem .innerWrapper .productPhotoBlock
{
	margin-top: 10px;
}
.commentItem .innerWrapper .productPhotoBlock .blockTitle
{
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}
.commentItem .innerWrapper .productPhotoBlock .productPhotoList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(11, 100px);
	gap: 10px;
}

/***/

.commentItem .innerWrapper .answerMenuLine
{
	margin-top: 30px;
}
.commentItem .innerWrapper .answerMenuLine .row
{
	flex-wrap: wrap;
	align-items: center;
}
.commentItem .innerWrapper .answerMenuLine .btnCol
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.commentItem .innerWrapper .answerMenuLine .answerButton
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: none;
	margin-right: 35px;
	padding: 0;
	letter-spacing: 0.03em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_3);
	cursor: pointer;
}
.commentItem .innerWrapper .answerMenuLine .answerButton:hover
{
	color: var(--color_6);
}
.commentItem .innerWrapper .answerMenuLine .answerButton svg
{
	position: relative;
	top: 2px;
	margin-right: 8px;
	width: 23px;
	height: 23px;
}
.commentItem .innerWrapper .answerMenuLine .answerButton svg path[stroke]
{
	stroke: var(--color_3);
}
.commentItem .innerWrapper .answerMenuLine .answerButton:hover svg path[stroke]
{
	stroke: var(--color_6);
}
.commentItem .innerWrapper .answerMenuLine .answerButton svg path[fill]
{
	fill: var(--color_3);
}
.commentItem .innerWrapper .answerMenuLine .answerButton:hover svg path[fill]
{
	fill: var(--color_6);
}
.commentItem .innerWrapper .answerMenuLine .openAnswerButton
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	border: none;
	background-color: transparent;
	letter-spacing: 0.03em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_3);
	cursor: pointer;
}
.commentItem .innerWrapper .answerMenuLine .openAnswerButton:hover
{
	color: var(--color_6);;
}
/**/
.commentItem .innerWrapper .answerMenuLine .likeCol
{
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: unset;
	text-align: right;
}
.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock
{
	letter-spacing: 0.03em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_3);
}
.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock > span
{
	display: none;
}
.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	border-radius: 2px;
	border: none;
	background-color: transparent;
	margin-left: 25px;
	padding: 0;
	min-width: auto;
	min-height: 20px;
	letter-spacing: 0.2em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	text-align: center;
	text-transform: uppercase;
	color: var(--color_3);
	cursor: pointer;
}
.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button.like
{
	color: var(--color_6);
}
.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button:hover
{
	color: var(--color_8);
}
.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button i
{
	margin-right: 3px;
}

.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock .addRateText
{
	margin-top: 10px;
	width: 100%;
	letter-spacing: 0.03em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_3);
}

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

.commentItem .answerBlock
{
	display: none;
	background-color: var(--color_white);
	padding: 0;
}
.commentItem .answerBlock .commentItem
{
	position: relative;
	margin-top: 30px;
	padding: 0 40px;
}
.commentItem .answerBlock .commentItem:first-child
{
}
.commentItem .answerBlock .commentItem::before
{
	position: absolute;
	display: block;
	content: "";
	background-image: url("../img/arrow-down-right.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	top: 0;
	left: 0;
	width: 34px;
	height: 22px;
}
.commentItem .answerBlock .commentItem .innerWrapper
{
	border: none;
	background: transparent;
	padding: 0;
}
.commentItem .answerBlock .btnLine
{
	margin-top: 30px;
	margin-left: 40px;
}
.commentItem .answerBlock .btnLine .closeAnswerButton
{
	border: none;
	background-color: transparent;
	letter-spacing: 0.03em;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_10);
	cursor: pointer;
}
.commentItem .answerBlock .btnLine .closeAnswerButton:hover
{
	color: var(--color_6);
}

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

.commentListCD .answerForCommentFormCD
{
	margin-top: 30px;
	max-width: 660px;
}
.commentListCD .answerForCommentFormCD > div
{
	border: 1px solid var(--color_4);
	background-color: var(--color_white);
	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_1);
}
.commentListCD .answerForCommentFormCD .btn_wrap .closeAnswerButton:hover
{
	color: var(--color_1);
}

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

.addCommentFormCD
{
}
.addCommentFormCD.hidden
{
	display: none;
}

/***/

.addCommentFormCD.siteComment
{
}
.addCommentFormCD .imageCol
{
	-ms-flex: 0 0 43.668%;
	flex: 0 0 43.668%;
	max-width: 43.668%;
}
.addCommentFormCD .imageCol .imageBlock
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}
/**/
.addCommentFormCD .formCol
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color_white);
}
.addCommentFormCD .innerWrapper
{
	padding: 30px 30px 30px 30px;
	max-width: 828px;
	width: 100%;
}
/**/
.addCommentFormCD .addCommentFormTitle
{
}

/***/

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

.addCommentFormCD .innerWrapper form .rateProduct,
.addCommentFormCD .innerWrapper form .rateSite
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.addCommentFormCD .innerWrapper form .rateProduct label,
.addCommentFormCD .innerWrapper form .rateSite label
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 5px;
	text-align: center;
}
/**/
.addCommentFormCD .innerWrapper .formAddPlusAndMinus
{
	margin-bottom: 16px;
}
.addCommentFormCD .innerWrapper .formAddPlusAndMinus span
{
	border-bottom: 1px dashed var(--color_10);
	line-height: 1.8rem;
	font-size: 1.5rem;
	color: var(--color_10);
	cursor: pointer;
}
.addCommentFormCD .innerWrapper .formAddPlusAndMinus span:hover
{
	border-color: var(--color_6);
	color: var(--color_6);
}
.addCommentFormCD  .innerWrapper .formAddPlusAndMinusBlock
{
	display: none;
}
/**/
.addCommentFormCD .innerWrapper form .btn_wrap
{
	margin-top: 30px;
}
.addCommentFormCD .innerWrapper form .btn_wrap .btn
{
	max-width: 100%;
	width: 100%;
}

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

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

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

@media (max-width: 1680px)
{
	.commentListCD
	{
		padding-top: calc(30px + (50 - 30) * var(--width-coefficient));
		padding-bottom: calc(40px + (60 - 40) * var(--width-coefficient));
	}

	.commentListCD .commentListEmpty
	{
		line-height: calc(16px + (24 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

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

	.commentItem .innerWrapper .name
	{
		line-height: calc(18px + (29 - 18) * var(--width-coefficient));
		font-size: calc(16px + (24 - 16) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .rateBlock
	{
		margin-top: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .dateCol
	{
		-ms-flex: 0 0 calc(50px + (130 - 50) * var(--width-coefficient));
		flex: 0 0 calc(50px + (130 - 50) * var(--width-coefficient));
		max-width: calc(50px + (130 - 50) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .date
	{
		line-height: calc(12px + (22 - 12) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .rateStar.mediumStar,
	.commentItem .innerWrapper .rateStar.mediumStar > div > div
	{
		width: calc(60px + (125 - 60) * var(--width-coefficient));
		height: calc(13px + (25 - 13) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .rateStar.mediumStar > div
	{
		width: calc(60px + (125 - 60) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .rateStar.mediumStar > .starsPassive
	{
		width: calc(60px + (125 - 60) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .rateStar.mediumStar > div svg
	{
		width: calc(12px + (25 - 12) * var(--width-coefficient));
		height: calc(12px + (25 - 12) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .commentText
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
		line-height: calc(16px + (28 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	/***/
	.commentItem .innerWrapper .answerMenuLine
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .answerMenuLine .answerButton
	{
		margin-right: calc(20px + (35 - 20) * var(--width-coefficient));
		line-height: calc(16px + (28 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .answerMenuLine .answerButton svg
	{
		top: calc(1px + (2 - 1) * var(--width-coefficient));
		margin-right: calc(4px + (8 - 4) * var(--width-coefficient));
		width: calc(15px + (23 - 15) * var(--width-coefficient));
		height: calc(15px + (23 - 15) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .answerMenuLine .openAnswerButton
	{
		line-height: calc(14px + (18 - 14) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock
	{
		line-height: 1.8rem;
		font-size: 1.5rem;
	}

	.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button
	{
		margin-left: calc(15px + (25 - 15) * var(--width-coefficient));
		min-height: calc(14px + (20 - 14) * var(--width-coefficient));
		line-height: calc(12px + (18 - 12) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	.commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock .addRateText
	{
		line-height: calc(12px + (18 - 12) * var(--width-coefficient));
		font-size: calc(10px + (15 - 10) * var(--width-coefficient));
	}

	/***/
	.commentItem .answerBlock .commentItem
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-right: calc(10px + (40 - 10) * var(--width-coefficient));
		padding-left: calc(20px + (40 - 20) * var(--width-coefficient));
	}

	.commentItem .answerBlock .commentItem::before
	{
		width: calc(20px + (34 - 20) * var(--width-coefficient));
		height: calc(13px + (22 - 13) * var(--width-coefficient));
	}

	.commentItem .answerBlock .btnLine
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
		margin-left: calc(20px + (40 - 20) * var(--width-coefficient));
	}

	.commentItem .answerBlock .btnLine .closeAnswerButton
	{
		line-height: calc(14px + (18 - 14) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * 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));
	}

	.commentListCD .answerForCommentFormCD .btn_wrap .closeAnswerButton
	{
		line-height: calc(14px + (18 - 14) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}

	.addCommentFormCD .innerWrapper
	{
		padding: calc(15px + (30 - 15) * var(--width-coefficient));
	}

	.addCommentFormCD .innerWrapper .formAddPlusAndMinus
	{
		margin-bottom: calc(14px + (16 - 14) * var(--width-coefficient));
	}
	.addCommentFormCD .innerWrapper .formAddPlusAndMinus span
	{
		line-height: calc(16px + (18 - 16) * var(--width-coefficient));
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}
	/**/
	.addCommentFormCD .innerWrapper form .btn_wrap
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}
@media (max-width: 1480px)
{
	.commentItem .innerWrapper .productPhotoBlock .productPhotoList
	{
		grid-template-columns: repeat(9, 100px);
	}
}
@media (max-width: 1366px)
{
	.commentItem .innerWrapper .productPhotoBlock .productPhotoList
	{
		grid-template-columns: repeat(7, 100px);
	}
}
@media (max-width: 1200px)
{
	.commentItem .innerWrapper .productPhotoBlock .productPhotoList
	{
		grid-template-columns: repeat(5, 100px);
	}
}
@media (max-width: 767px)
{
	.commentItem .innerWrapper .productPhotoBlock .productPhotoList
	{
		grid-template-columns: repeat(4, 100px);
	}
	.addCommentFormCD .imageCol
	{
		display: none;
	}
}
@media (max-width: 519px)
{
	.commentItem .innerWrapper .productPhotoBlock .productPhotoList
	{
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 480px)
{
	.commentItem .innerWrapper .name
	{
		font-weight: 700;
	}

	.commentListCD .answerForCommentFormCD .btn_wrap .btn
	{
		max-width: 100%;
	}
	.commentListCD .answerForCommentFormCD .btn_wrap .closeAnswerButton
	{
		margin-left: 0;
	}

	.commentItem .innerWrapper .answerMenuLine .row
	{
		align-items: unset;
	}
	.commentItem .innerWrapper .answerMenuLine .openAnswerButton
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 10px;
	}

	.addCommentFormCD .innerWrapper .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.el_catalogsBlock_38488457
{
}

.el_catalogsBlock_38488457 .catalogList
{
}
.el_catalogsBlock_38488457 .catalogList .el_catalogListItem3_38488457.hidden1
{
	display: none;
}

@media (max-width: 767px)
{
	.el_catalogsBlock_38488457 .catalogList .el_catalogListItem3_38488457.hidden2
	{
		display: none;
	}
}

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

/*****/

@media (max-width: 1680px)
{
	.el_catalogsBlock_38488457 .btnLine
	{
		margin-top: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}

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

.el_siteCommentBlock_38488457
{
}
.el_siteCommentBlock_38488457 .siteCommentList
{
}
.el_siteCommentBlock_38488457 .siteCommentList .commentItem
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	margin-bottom: 24px;
}
.el_siteCommentBlock_38488457 .siteCommentList.slick-slider .commentItem
{
	margin-bottom: 0;
}

.el_siteCommentBlock_38488457 .btnLine
{
	margin-top: 80px;
	text-align: center;
}

@media (max-width: 1680px)
{
	.el_siteCommentBlock_38488457 .btnLine
	{
		margin-top: calc(30px + (80 - 30) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_siteCommentBlock_38488457 .siteCommentList .commentItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

}

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

.siteCommentCD
{
}

/*****/

.siteCommentCD .titleAndRatingRow
{
	align-items: center;
}
/**/
.siteCommentCD .titleAndRatingRow .titleAndWriteCol
{
}
.siteCommentCD .titleAndRatingRow .titleAndWriteCol .writeReview
{
}
.siteCommentCD .titleAndRatingRow .titleAndWriteCol .writeReview a
{
	max-width: 370px;
	width: 100%;
}

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

	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: unset;
}
.siteCommentCD .titleAndRatingRow .siteRatingCol .siteRating
{
	margin-right: 10px;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_2);
}

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

@media (max-width: 1680px)
{
	.siteCommentCD .titleAndRatingRow .siteRatingCol .siteRating
	{
		margin-right: calc(5px + (10 - 5) * var(--width-coefficient));
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(16px + (18 - 16) * var(--width-coefficient));
	}

	.siteCommentCD .titleAndRatingRow .siteRatingCol .rateStar.mediumStar,
	.siteCommentCD .titleAndRatingRow .siteRatingCol .rateStar.mediumStar > div > div
	{
		width: calc(85px + (125 - 85) * var(--width-coefficient));
	}
	.siteCommentCD .titleAndRatingRow .siteRatingCol .rateStar.mediumStar > div
	{
		width: calc(85px + (125 - 85) * var(--width-coefficient));
	}
	.siteCommentCD .titleAndRatingRow .siteRatingCol .rateStar.mediumStar > .starsPassive
	{
		width: calc(85px + (125 - 85) * var(--width-coefficient));
	}
	.siteCommentCD .titleAndRatingRow .siteRatingCol .rateStar.mediumStar > div svg
	{
		width: calc(17px + (25 - 17) * var(--width-coefficient));
		height: calc(17px + (25 - 17) * var(--width-coefficient));
	}

}
@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                             *****/
/***********************************************************************/

.sharingBlock
{
	margin-top: 100px;
	text-align: center;
}
.sharingBlock span.share
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 3.5rem;
	font-size: 1.8rem;
	font-weight: 700; /*font-weight: 500;*/
	color: var(--color_1);
	cursor: pointer;
}
.sharingBlock span.share svg
{
	margin-right: 10px;
	width: 33px;
	height: 33px;
}
.sharingBlock .btnSharingBlock
{
	display: none;
	padding-top: 24px;
}
.sharingBlock .btnSharingBlock a
{
	display: inline-block;
	margin: 3px 5px;
	line-height: 3.5rem;
	font-size: 1.8rem;
	color: var(--color_1);
}
.sharingBlock .btnSharingBlock a:hover
{
	text-decoration: underline;
}

/*****/

@media (max-width: 1680px)
{
	.sharingBlock
	{
		margin-top: calc(35px + (100 - 35) * var(--width-coefficient));
	}
	.sharingBlock span.share
	{
		line-height: calc(16px + (35 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
	.sharingBlock span.share svg
	{
		width: calc(17px + (33 - 17) * var(--width-coefficient));
		height: calc(17px + (33 - 17) * var(--width-coefficient));
	}
	.sharingBlock .btnSharingBlock
	{
		padding-top: calc(15px + (24 - 15) * var(--width-coefficient));
	}
	.sharingBlock .btnSharingBlock a
	{
		margin: 3px 5px;
		line-height: calc(16px + (35 - 16) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
}

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

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

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

#buttonUp
{
	position: fixed;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: var(--color_white);
	right: 25px;
	bottom: 125px;
	padding-top: 3px;
	width: 72px;
	height: 72px;
	line-height: 1;
	font-size: 3rem;
	text-align: center;
	color: var(--color_6);
	-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
{
	background-color: var(--color_6);
	color: var(--color_white);
}
#buttonUp svg
{
	width: 33px;
	height: 48px;
}
#buttonUp svg path[stroke]
{
	stroke: var(--color_6);
}
#buttonUp:hover svg path[stroke]
{
	stroke: var(--color_white);
}
#buttonUp svg path[fill]
{
	fill: var(--color_6);
}
#buttonUp:hover svg path[fill]
{
	fill: var(--color_white);
}

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

/************************************************************************************/
/*** haveQuestionForm ***/
/*************************************************************************************/

.el_haveQuestionFormBlock_38488457
{
}
.el_haveQuestionFormBlock_38488457 .innerWrapper
{
	background-color: var(--color_white);
}
.el_haveQuestionFormBlock_38488457 .row
{
	align-items: center;
}
/**/
.el_haveQuestionFormBlock_38488457 .imageCol
{
	-ms-flex: 0 0 43.139%;
	flex: 0 0 43.139%;
	max-width: 43.139%;
}
.el_haveQuestionFormBlock_38488457 .imageCol .imageBlock
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	/*padding-bottom: 46.58040665434381%;*/
}
/**/
.el_haveQuestionFormBlock_38488457 .formCol
{
}
.el_haveQuestionFormBlock_38488457 .formCol .formInnerWrapper
{
	margin-left: auto;
	padding: 130px 0;
	max-width: 784px;
}
.el_haveQuestionFormBlock_38488457 .formCol form textarea
{
	height: 155px;
}
.el_haveQuestionFormBlock_38488457 .formCol form .btn
{
	max-width: 100%;
	width: 100%;
}
/**/
.el_haveQuestionFormBlock_38488457 .clearCol
{
	-ms-flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
	flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
	max-width: calc(50% - (var(--site-width-max-width) / 2));
}


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

@media (max-width: 1680px)
{
	.el_haveQuestionFormBlock_38488457 .formCol .formInnerWrapper
	{
		padding-top: calc(30px + (65 - 30) * var(--width-coefficient));
		padding-bottom: calc(30px + (65 - 30) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.el_haveQuestionFormBlock_38488457 .titleCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 30px;
	}
	.el_haveQuestionFormBlock_38488457 .btnCol
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 767px)
{
	.el_haveQuestionFormBlock_38488457 .innerWrapper
	{
		padding-left: 15px;
		padding-right: 15px;
	}
	.el_haveQuestionFormBlock_38488457 .innerWrapper .row-0
	{
		margin-right: calc((4px + (12 - 4) * var(--width-coefficient)) * -1);
		margin-left: calc((4px + (12 - 4) * var(--width-coefficient)) * -1);
	}
	.el_haveQuestionFormBlock_38488457 .formCol
	{
		-ms-flex: 0 0 var(--site-width-max-width);
		flex: 0 0 var(--site-width-max-width);
		max-width: var(--site-width-max-width);
	}

	.el_haveQuestionFormBlock_38488457 .imageCol
	{
		-ms-flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
		flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
		max-width: calc(50% - (var(--site-width-max-width) / 2));
	}
	.el_haveQuestionFormBlock_38488457 .imageCol .imageBlock
	{
		display: none;
	}
}

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

/************************************************************************************/
/*** vacanciesForm ***/
/*************************************************************************************/

.el_vacanciesFormBlock_38488457
{
}
.el_vacanciesFormBlock_38488457 .innerWrapper
{
	background-color: var(--color_white);
}
.el_vacanciesFormBlock_38488457 .row
{
	align-items: center;
}
/**/
.el_vacanciesFormBlock_38488457 .imageCol
{
	-ms-flex: 0 0 43.139%;
	flex: 0 0 43.139%;
	max-width: 43.139%;
}
.el_vacanciesFormBlock_38488457 .imageCol .imageBlock
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	/*padding-bottom: 46.58040665434381%;*/
}
/**/
.el_vacanciesFormBlock_38488457 .formCol
{
}
.el_vacanciesFormBlock_38488457 .formCol .formInnerWrapper
{
	margin-left: auto;
	padding: 130px 0;
	max-width: 784px;
}
.el_vacanciesFormBlock_38488457 .formCol form textarea
{
	height: 155px;
}
.el_vacanciesFormBlock_38488457 .formCol form .btn
{
	max-width: 100%;
	width: 100%;
}
/**/
.el_vacanciesFormBlock_38488457 .clearCol
{
	-ms-flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
	flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
	max-width: calc(50% - (var(--site-width-max-width) / 2));
}


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

@media (max-width: 1680px)
{
	.el_vacanciesFormBlock_38488457 .formCol .formInnerWrapper
	{
		padding-top: calc(30px + (65 - 30) * var(--width-coefficient));
		padding-bottom: calc(30px + (65 - 30) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.el_vacanciesFormBlock_38488457 .titleCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 30px;
	}
	.el_vacanciesFormBlock_38488457 .btnCol
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 767px)
{
	.el_vacanciesFormBlock_38488457 .innerWrapper
	{
		padding-left: 15px;
		padding-right: 15px;
	}
	.el_vacanciesFormBlock_38488457 .innerWrapper .row-0
	{
		margin-right: calc((4px + (12 - 4) * var(--width-coefficient)) * -1);
		margin-left: calc((4px + (12 - 4) * var(--width-coefficient)) * -1);
	}
	.el_vacanciesFormBlock_38488457 .formCol
	{
		-ms-flex: 0 0 var(--site-width-max-width);
		flex: 0 0 var(--site-width-max-width);
		max-width: var(--site-width-max-width);
	}

	.el_vacanciesFormBlock_38488457 .imageCol
	{
		-ms-flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
		flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
		max-width: calc(50% - (var(--site-width-max-width) / 2));
	}
	.el_vacanciesFormBlock_38488457 .imageCol .imageBlock
	{
		display: none;
	}
}

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

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

.el_subscribeBlock_38488457
{
}
.el_subscribeBlock_38488457 .innerWrapper
{
	background-color: var(--color_white);
}
.el_subscribeBlock_38488457 .row
{
	align-items: center;
}
/**/
.el_subscribeBlock_38488457 .clearCol
{
	-ms-flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
	flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
	max-width: calc(50% - (var(--site-width-max-width) / 2));
}
/**/
.el_subscribeBlock_38488457 .formCol
{
	-ms-flex: 0 0 35.8394%;
	flex: 0 0 35.8394%;
	max-width: 35.8394%;
}
.el_subscribeBlock_38488457 .formCol .formInnerWrapper
{
	padding: 65px 0;
	max-width: 514px;
}
.el_subscribeBlock_38488457 .formCol form .btn
{
	max-width: 100%;
	width: 100%;
}
/**/
.el_subscribeBlock_38488457 .imageCol
{
}
.el_subscribeBlock_38488457 .imageCol .imageBlock
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	/*padding-bottom: 46.58040665434381%;*/
}

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

@media (max-width: 1680px)
{
	.el_subscribeBlock_38488457 .formCol .formInnerWrapper
	{
		padding-top: calc(30px + (65 - 30) * var(--width-coefficient));
		padding-bottom: calc(30px + (65 - 30) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.el_subscribeBlock_38488457 .titleCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 30px;
	}
	.el_subscribeBlock_38488457 .btnCol
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (max-width: 767px)
{
	.el_subscribeBlock_38488457 .innerWrapper
	{
		padding-left: 15px;
		padding-right: 15px;
	}
	.el_subscribeBlock_38488457 .innerWrapper .row-0
	{
		margin-right: calc((4px + (12 - 4) * var(--width-coefficient)) * -1);
		margin-left: calc((4px + (12 - 4) * var(--width-coefficient)) * -1);
	}
	.el_subscribeBlock_38488457 .formCol
	{
		-ms-flex: 0 0 var(--site-width-max-width);
		flex: 0 0 var(--site-width-max-width);
		max-width: var(--site-width-max-width);
	}

	.el_subscribeBlock_38488457 .imageCol
	{
		-ms-flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
		flex: 0 0 calc(50% - (var(--site-width-max-width) / 2));
		max-width: calc(50% - (var(--site-width-max-width) / 2));
	}
	.el_subscribeBlock_38488457 .imageCol .imageBlock
	{
		display: none;
	}
}

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

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

#showSubscribePopupForm
{
	position: fixed;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 28px;
	border: none;
	background: transparent;
	left: 30px;
	bottom: 212px;

	width: 79px;
	height: 79px;

	overflow: hidden;
	z-index: 599;
}

@media (max-width: 1680px)
{
	#showSubscribePopupForm
	{
		border-radius: calc(20px + (28 - 20) * var(--width-coefficient));

		left: calc(10px + (30 - 10) * var(--width-coefficient));
		bottom: calc(152px + (212 - 152) * var(--width-coefficient));

		width: calc(56px + (79 - 56) * var(--width-coefficient));
		height: calc(56px + (79 - 56) * var(--width-coefficient));
	}
}

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

.el_subscribeBlock2_38488457
{
}
.el_subscribeBlock2_38488457 .innerWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 580px 1fr;
	align-items: center;
	gap: 30px;
}

/**/
.el_subscribeBlock_38488457 .formWrapperBlock
{
}
.el_subscribeBlock2_38488457 .el_titleBlock_38488457
{
	background-color: transparent;
	margin-bottom: 10px;
	padding: 0;
	text-align: left;
}
.el_subscribeBlock2_38488457 .el_titleBlock_38488457 span
{
	color: var(--color_6);
}
/**/
.el_subscribeBlock2_38488457 .formWrapperBlock .staticText
.el_subscribeBlock2_38488457 .formWrapperBlock .staticText
{
	line-height: 2rem;
	font-size: 1.6rem;
}
.el_subscribeBlock2_38488457 .formWrapperBlock .staticText *
{
	margin-bottom: 20px;
}
.el_subscribeBlock2_38488457 .formWrapperBlock .staticText ul,
.el_subscribeBlock2_38488457 .formWrapperBlock .staticText ol
{
	padding-left: 20px;
}
.el_subscribeBlock2_38488457 .formWrapperBlock .staticText ul li,
.el_subscribeBlock2_38488457 .formWrapperBlock .staticText ol li
{
	display: inline-block;
	margin: 0 30px 5px 0;
}
.el_subscribeBlock2_38488457 .formWrapperBlock .staticText ul li::before
{
	top: 11px;
	left: -19px;
	width: 6px;
	height: 6px;
}

.el_subscribeBlock2_38488457 .formWrapperBlock form .btn
{
	max-width: 100%;
	width: 100%;
}

.el_subscribeBlock2_38488457 .formWrapperBlock .note
{
	margin-top: 20px;
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--color_2);
}

/**/
.el_subscribeBlock2_38488457 .imgBlock
{
	position: relative;
	z-index: 5;
}

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

@media (max-width: 1680px)
{
	.el_subscribeBlock2_38488457 .innerWrapper
	{
		grid-template-columns: calc(200px + (580 - 200) * var(--width-coefficient)) 1fr;
	}

	.el_subscribeBlock2_38488457 .formWrapperBlock .staticText ul li::before
	{
		top: calc(6px + (11 - 6) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_subscribeBlock2_38488457 .innerWrapper
	{
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px)
{
	.el_subscribeBlock2_38488457 .imgBlock
	{
		display: none;
	}
}

@media (max-width: 520px)
{
	.el_subscribeBlock2_38488457 .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

footer.footerCD
{
	padding-top: 150px;
	padding-bottom: 100px;
}

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

footer.footerCD .footerTop
{
	margin-bottom: 100px;
}
footer.footerCD .footerTop .col
{
	margin-bottom: 24px;
}

/***/

footer.footerCD .footerTop .logoCol
{
}
footer.footerCD .footerTop .logoBlock
{
	max-width: 300px;
}
footer.footerCD .footerTop .logoBlock .logo
{
	display: block;
	max-width: 300px;
	max-height: 100px;
}
footer.footerCD .footerTop .logoBlock .logo img
{
	max-width: 100%;
	max-height: inherit;
}

/***/

footer.footerCD .footerTop .contactsBlock
{
	margin-top: 40px;
}
footer.footerCD .footerTop .contactsBlock .contactsItem
{
	margin-top: 15px;
}
footer.footerCD .footerTop .contactsBlock .contactsItem:first-child
{
	margin-top: 0;
}
footer.footerCD .footerTop .contactsBlock .contactsItem .link
{
	margin-top: 15px;
	line-height: 1;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}

footer.footerCD .footerTop .contactsBlock .contactsItem .link:first-child
{
	margin-top: 0;
}
footer.footerCD .footerTop .contactsBlock .contactsItem .link a
{
	display: inline-block;
	line-height: 1;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
footer.footerCD .footerTop .contactsBlock .contactsItem.telList .link a
{
	font-weight: 700;
}
footer.footerCD .footerTop .contactsBlock .contactsItem .link a:hover
{
	color: var(--color_6);
}

footer.footerCD .footerTop .contactsBlock .contactsItem .text
{
	line-height: 1.6rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}

/***/

footer.footerCD .footerTop .itemCol
{
	-ms-flex: 0 0 256px;
	flex: 0 0 256px;
	max-width: 256px;
}
footer.footerCD .footerTop .itemCol.soc
{
	-ms-flex: 0 0 166px;
	flex: 0 0 166px;
	max-width: 166px;
}

footer.footerCD .footerTop .itemTitle
{
	margin-bottom: 25px;
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color_1);
}

footer.footerCD .footerTop .itemTitle .toggleBtn
{
	position: relative;
	display: none;
	margin-left: 10px;
	width: 25px;
	height: 25px;
	font-size: 25px;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
footer.footerCD .footerTop .itemTitle .toggleBtn::before
{
	content: "\f107";
	font-family: FontAwesome;
}
footer.footerCD .footerTop .itemTitle .toggleBtn.open::before
{
	content: "\f106";
}

/*footer.footerCD .footerTop .itemTitle .toggleBtn::before,*/
/*footer.footerCD .footerTop .itemTitle .toggleBtn::after*/
/*{*/
/*	position: absolute;*/
/*	display: block;*/
/*	content: "";*/
/*	background-color: var(--color_1);*/
/*	top: 50%;*/
/*	left: 50%;*/
/*	-webkit-transform: translate(-50%, -50%);*/
/*	-ms-transform: translate(-50%, -50%);*/
/*	transform: translate(-50%, -50%);*/
/*}*/
/*footer.footerCD .footerTop .itemTitle .toggleBtn::before*/
/*{*/
/*	width: 15px;*/
/*	height: 2px;*/
/*}*/
/*footer.footerCD .footerTop .itemTitle .toggleBtn::after*/
/*{*/
/*	width: 2px;*/
/*	height: 15px;*/
/*}*/
/*footer.footerCD .footerTop .itemTitle .toggleBtn.open:after*/
/*{*/
/*	display: none;*/
/*}*/

/***/

footer.footerCD .footerTop .itemContent
{
}
footer.footerCD .footerTop .itemContent ul
{
}
footer.footerCD .footerTop .itemContent ul li
{
	margin-top: 15px;
}
footer.footerCD .footerTop .itemContent ul li:first-child
{
	margin-top: 0;
}
footer.footerCD .footerTop .itemContent ul li a
{
	display: inline-block;
	line-height: 1.6rem;
	font-size: 1.5rem;
	color: var(--color_2);
}
footer.footerCD .footerTop .itemContent ul li a:hover,
footer.footerCD .footerTop .itemContent ul li a.active
{
	color: var(--color_6);
}

/***/

footer.footerCD .footerTop .socialNetworkBlock
{
	display: inline-block;
}
footer.footerCD .footerTop .socialNetworkBlock .socialNetworkList
{
}
footer.footerCD .footerTop .socialNetworkBlock .socialNetworkList li
{
	width: 44px;
	height: 44px;
}

/***/

footer.footerCD .footerTop .cardsBlock
{
	margin-top: 25px;
}
footer.footerCD .footerTop .cardsBlock .note
{
	line-height: 1.7rem;
	font-size: 1.4rem;
	font-weight: normal;
	color: var(--color_1);
}
footer.footerCD .footerTop .cardsBlock .note
{
	line-height: 1.7rem;
	font-size: 1.4rem;
	font-weight: normal;
	color: var(--color_1);
}

footer.footerCD .footerTop .cardsBlock .cardsList
{
	align-items: center;
}
footer.footerCD .footerTop .cardsBlock .cardsList .cardsListItem
{
	-ms-flex: 0 0 76px;
	flex: 0 0 76px;
	max-width: 76px;
	margin-top: 10px;
}
footer.footerCD .footerTop .cardsBlock .cardsList .cardsListItem .img_wrap
{
}
footer.footerCD .footerTop .cardsBlock .cardsList .cardsListItem img
{
}
/******************************/

footer.footerCD .footerBottom
{
}

/**/

footer.footerCD .footerBottom .copyright
{
	line-height: 1.9rem;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_2);
}
footer.footerCD .footerBottom .copyright a
{
	color: var(--color_2);
}
footer.footerCD .footerBottom .copyright a:hover
{
	color: var(--color_6);
}
/**/
footer.footerCD .footerBottom .komizioBlock
{
	margin-top: 45px;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
footer.footerCD .footerBottom .komizioBlock .text
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family-2);
	line-height: 1.9rem;
	font-size: 1.5rem;
	font-weight: normal;
	color: var(--color_3);
	text-align: left;
}
footer.footerCD .footerBottom .komizioBlock .text .imgBlock
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin-right: 5px;
}
footer.footerCD .footerBottom .komizioBlock .text .imgBlock img
{
	max-width: 37px;
	max-height: 37px;
}
footer.footerCD .footerBottom .komizioBlock .text a
{
	color: var(--color_3);
}
footer.footerCD .footerBottom .komizioBlock .text a:hover
{
	color: var(--color_6);
}

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

@media (max-width: 1680px)
{
	footer.footerCD
	{
		padding-top: calc(30px + (150 - 30) * var(--width-coefficient));
		padding-bottom: calc(30px + (100 - 30) * var(--width-coefficient));
	}

	footer.footerCD .footerTop
	{
		margin-bottom: calc(15px + (100 - 15) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .itemCol
	{
		-ms-flex: 0 0 240px;
		flex: 0 0 240px;
		max-width: 240px;
	}

	footer.footerCD .footerTop .contactsBlock
	{
		text-align: left;
	}
	footer.footerCD .footerTop .contactsBlock .contactsItem
	{
		margin-top: calc(5px + (15 - 5) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .contactsBlock .contactsItem .link
	{
		margin-top: calc(5px + (15 - 5) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .contactsBlock .contactsItem .link a
	{
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .contactsBlock .contactsItem .text
	{
		line-height: calc(15px + (18 - 15) * var(--width-coefficient));
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}

	/*footer.footerCD .footerTop .itemTitle*/
	/*{*/
	/*	line-height: calc(12px + (18 - 12) * var(--width-coefficient));*/
	/*	font-size: calc(10px + (15 - 10) * var(--width-coefficient));*/
	/*}*/
	footer.footerCD .footerTop .itemTitle .toggleBtn
	{
		font-size: calc(15px + (25 - 15) * var(--width-coefficient));
	}

	footer.footerCD .footerTop .itemContent ul li a
	{
		line-height: calc(15px + (16 - 15) * var(--width-coefficient));
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}

	footer.footerCD .footerTop .socialNetworkBlock .socialNetworkList li
	{
		width: calc(22px + (44 - 22) * var(--width-coefficient));
		height: calc(22px + (44 - 22) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .cardsBlock .cardsList .cardsListItem
	{
		-ms-flex: 0 0 calc(66px + (76 - 66) * var(--width-coefficient));
		flex: 0 0 calc(66px + (76 - 66) * var(--width-coefficient));
		max-width: calc(66px + (76 - 66) * var(--width-coefficient));
	}
	
	footer.footerCD .footerBottom .copyright
	{
		line-height: calc(14px + (19 - 14) * var(--width-coefficient));
		font-size: calc(12px + (16 - 12) * var(--width-coefficient));
	}

	footer.footerCD .footerBottom .komizioBlock
	{
		margin-top: calc(20px + (40 - 20) * var(--width-coefficient));
	}
	footer.footerCD .footerBottom .komizioBlock .text
	{
		line-height: calc(14px + (19 - 14) * var(--width-coefficient));
		font-size: calc(12px + (15 - 12) * var(--width-coefficient));
	}
	footer.footerCD .footerBottom .komizioBlock .text .imgBlock img
	{
		max-width: calc(25px + (37 - 25) * var(--width-coefficient));
		max-height: calc(25px + (37 - 25) * var(--width-coefficient));
	}
}
@media (max-width: 1480px)
{
	footer.footerCD .footerTop .logoBlock .logo
	{
		max-width: calc(115px + (250 - 115) * var(--width-coefficient));
	}

	footer.footerCD .footerTop .itemCol
	{
		-ms-flex: 0 0 210px;
		flex: 0 0 210px;
		max-width: 210px;
	}
}
@media (max-width: 1366px)
{
	footer.footerCD .footerTop .itemCol.soc
	{
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: space-between;

		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	footer.footerCD .footerTop .itemCol.soc  .itemTitle
	{
		display: none;
	}
	footer.footerCD .footerTop .socialNetworkBlock
	{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;

		margin-top: calc(0px + (25 - 0) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .cardsBlock
	{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;

		margin-top: calc(0px + (25 - 0) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .cardsBlock .cardsList
	{
		justify-content: flex-end;
	}
}
@media (max-width: 1200px)
{
	footer.footerCD .footerTop .logoCol
	{
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
		gap: 10px;

		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	footer.footerCD .footerTop .contactsBlock
	{
		margin-top: 0;
	}
}

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

	footer.footerCD .footerTop .cardsBlock .cardsList
	{
		justify-content: center;
	}

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

	footer.footerCD .footerTop .itemTitle
	{
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid var(--color_16);
		margin-bottom: 0;
		padding-bottom: 10px;
	}
	footer.footerCD .footerTop .itemCol.i1 .itemTitle
	{
		border-top: 1px solid var(--color_16);
		padding-top: 10px;
	}
	footer.footerCD .footerTop .itemTitle .toggleBtn
	{
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	footer.footerCD .footerTop .itemContent
	{
		display: none;
	}
	footer.footerCD .footerTop .itemContent.open
	{
		display: block;
		margin-bottom: 20px;
	}
	footer.footerCD .footerTop .itemContent ul
	{
		margin-top: 20px;
	}
}

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

body bwchat#bwc-wrap #bwc-widget-action
{
	z-index: 599 !important;
}