:root
{
	--color_1: #101921;
	--color_1_10: rgba(16, 25, 33, 0.10);
	--color_1_15: rgba(16, 25, 33, 0.15);
	--color_1_20: rgba(16, 25, 33, 0.20);
	--color_1_25: rgba(16, 25, 33, 0.25);
	--color_1_30: rgba(16, 25, 33, 0.30);
	--color_1_50: rgba(16, 25, 33, 0.50);
	--color_1_80: rgba(16, 25, 33, 0.80);
	--color_2: #DA2B1F;
	--color_2_50: rgba(218, 43, 31, 0.50);
	--color_3: #B3B3B3;
	--color_4: #EBEBEB;
	--color_5: #F4F4F4;
	--color_6: #0049AB;
	--color_7: #D9D9D9;
	--color_8: #1BC100;
	--color_9: #F6C518;

	--color_black: #000000;
	--color_black_10: rgba(0, 0, 0, 0.10);
	--color_red: #FF0000;
	--color_green: #008000;
	--color_white: #FFFFFF;
	--color_white_10: rgba(255, 255, 255, 0.10);
	--color_white_25: rgba(255, 255, 255, 0.25);
	--color_white_50: rgba(255, 255, 255, 0.50);
	--color_white_70: rgba(255, 255, 255, 0.70);

	--font-family-1: 'Open Sans', sans-serif;

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

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

	--site-width-max-width: 1730px;
	--site-width-max-width-2: 1430px;
	--width-coefficient: calc((100vw - 320px) / (1730 - 320));
}

@media (max-width: 1730px)
{
	:root
	{
		--site-width-max-width: 1530px;
	}
}
@media (max-width: 1560px)
{
	:root
	{
		--site-width-max-width: 1430px;
	}
}
@media (max-width: 1440px)
{
	:root
	{
		--site-width-max-width: 1200px;
		--site-width-max-width-2: 1200px;
	}
}
@media (max-width: 1200px)
{
	:root
	{
		--site-width-max-width: 970px;
		--site-width-max-width-2: 970px;
	}
}
@media (max-width: 991px)
{
	:root
	{
		--site-width-max-width: 750px;
		--site-width-max-width-2: 750px;
	}
}
@media (max-width: 767px)
{
	:root
	{
		--site-width-max-width: 550px;
		--site-width-max-width-2: 550px;
	}
}
@media (max-width: 575px)
{
	:root
	{
		--site-width-max-width: 100%;
		--site-width-max-width-2: 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_1);
}

body.open
{
	overflow: hidden;
}

*::-webkit-scrollbar
{
	/*width: 12px; !* ширина всей полосы прокрутки *!*/
}
*::-webkit-scrollbar-track
{
	background: var(--color_5); /* цвет зоны отслеживания */
}
*::-webkit-scrollbar-thumb
{
	background-color: var(--color_2); /* цвет бегунка */
	border-radius: 20px;			  /* округлось бегунка */
	border: 3px solid var(--color_2); /* отступ вокруг бегунка */
}

.hide
{
	display: none;
}

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

hr
{
	border-style: solid;
	border-left: none;
	border-right: none;
	border-bottom: none;
}
hr.red
{
	border-color: var(--color_2);
}

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

a
{
	color: var(--color_6);
	-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_2);
}

/***/

.lht1
{
	position: relative;
	/*display: -ms-flex;*/
	/*display: flex;*/
	/*align-items: center;*/
	/*justify-content: center;*/
	padding: 7px 0;
}
.lht1:hover,
.lht1.active
{
}
.lht1::before,
.lht1::after
{
	position: absolute;
	display: block;
	content: "";
	background: var(--color_white);
	left: 0;
	width: 100%;
	height: 1px;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}
.lht1.lht_bgr::before,
.lht1.lht_bgr::after
{
	background: var(--color_2);
}
.lht1::before
{
	top: 0;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.lht1::after
{
	bottom: 0;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}
.lht1:hover::before,
.lht1:focus::before,
.lht1.active::before,
.lht1:hover::after,
.lht1:focus::after,
.lht1.active::after
{
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

input,
select,
textarea
{
	display: block;
	background-color: transparent;
	border: 1px solid var(--color_1);
	width: 100%;
	padding: 0 15px;
	height: 58px;
	font-family: var(--font-family-1);
	line-height: 2.4rem;
	font-size: 1.6rem;
	color: var(--color_1);
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
input:focus,
select:focus,
textarea:focus
{
	border-color: var(--color_2);
}
textarea
{
	height: 130px;
	resize: vertical;
	padding-top: 9px;
	padding-bottom: 9px;
}

button
{
	cursor: pointer;
}

@media (max-width: 1730px)
{
	input,
	select,
	textarea
	{
		padding: 0 calc(10px + (15 - 10) * var(--width-coefficient));
		height: calc(38px + (58 - 38) * var(--width-coefficient));
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	textarea
	{
		height: calc(72px + (130 - 72) * var(--width-coefficient));
		padding-top: calc(10px + (9 - 10) * var(--width-coefficient));
		padding-bottom: calc(10px + (9 - 10) * var(--width-coefficient));
	}
}

/***/

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

	background-color: transparent;
	border: 1px solid var(--color_1);
	width: 100%;
	max-width: 100%;
	padding: 0 15px;
	height: 58px;
	font-family: var(--font-family-1);
	line-height: 56px;
	font-size: 1.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--color_1);
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
}
.fakeFieldBlock .fakeField.fakeSelect::after
{
	position: absolute;
	display: block;
	content: "";
	border-color: var(--color_1) 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: 1730px)
{
	.fakeFieldBlock .fakeField
	{
		padding: 0 calc(10px + (15 - 10) * var(--width-coefficient));
		height: calc(38px + (58 - 38) * var(--width-coefficient));
		line-height: calc(36px + (56 - 36) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
}

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

.input_wrapper
{
	position: relative;
	display: block;
	margin-bottom: 24px;
}
.input_wrapper label
{
	display: inline-block;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 1.6rem;
	color: var(--color_1);
}
.input_wrapper label sup
{
	color: var(--color_2);
}
.input_wrapper .comment
{
	margin-top: 5px;
	line-height: 1.4;
	font-size: 1.4rem;
	color: var(--color_3);
}
/**/
.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;
}
.input_wrapper.checkbox input
{
	position: absolute;
	z-index: -2;
	opacity: 0;
}
.input_wrapper.checkbox label
{
	position: relative;
	padding-left: 25px;
	line-height: 1.8rem;
	font-size: 1.4rem;
	color: var(--color_1);
	cursor: pointer;
}
.input_wrapper.checkbox input[disabled] ~ label
{
	color: var(--color_2);
}
.input_wrapper.checkbox input[type="checkbox"] ~ label i,
.input_wrapper.checkbox input[type="radio"] ~ label i
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	border: 2px solid var(--color_1);
	background-color: var(--color_white);
	top: 1px;
	left: 0;
	width: 18px;
	height: 18px;
}
.input_wrapper.checkbox input[type="checkbox"] ~ label i
{
}
.input_wrapper.checkbox input[type='radio'] ~ label i
{
	border-radius: 100%;
}
.input_wrapper.checkbox input[type='checkbox'] ~ label i::before,
.input_wrapper.checkbox input[type='radio'] ~ label i::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background-color: transparent;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.input_wrapper.checkbox input[type='checkbox']:checked ~ label i::before,
.input_wrapper.checkbox input[type='radio']:checked ~ label i::before
{
	background-color: var(--color_2);
}
.input_wrapper.checkbox input[type='checkbox']:disabled ~ label i::before,
.input_wrapper.checkbox input[type='radio']:disabled ~ label i::before
{
	content: "\f05e";
	font-family: "FontAwesome";
	background-color: transparent;
	width: 9px;
	height: 10px;
	line-height: 1;
	font-size: 1rem;
	color: var(--color_2);
}
/**/
.input_wrapper.file
{
	display: -ms-flex;
	display: flex;
}
.input_wrapper.file input
{
	position: absolute;
	z-index: -2;
	opacity: 0;
}
.input_wrapper.file label
{
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	line-height: 1.8rem;
	font-size: 1.4rem;
	color: var(--color_6);
	cursor: pointer;
}
.input_wrapper.file label .ico
{
}

@media (max-width: 1730px)
{
	.input_wrapper
	{
		margin-bottom: calc(12px + (24 - 12) * var(--width-coefficient));
	}
	.input_wrapper label
	{
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.input_wrapper.checkbox label
	{
		line-height: calc(15px + (18 - 15) * var(--width-coefficient));
		font-size: calc(11px + (14 - 11) * var(--width-coefficient));
	}
	.input_wrapper .comment
	{
		font-size: calc(9px + (14 - 9) * var(--width-coefficient));
	}
}

/***/

.input_wrapper.file
{
}
.input_wrapper.file .fileIco
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-right: 15px;

	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
{
	text-decoration: underline;
	color: var(--color_1);
	cursor: pointer;
}
.input_wrapper.file label:hover
{
	color: var(--color_2);
}

/*****/

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

/*****/

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

	border-radius: 0;
	border: 1px solid var(--color_1);
	background-color: var(--color_1);
	padding: 0 15px;
	min-width: 130px;
	height: 58px;
	font-family: var(--font-family-1);
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none !important;
	color: var(--color_white);
	cursor: pointer;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
.btn:hover,
.staticText .btn:hover
{
	border-color: var(--color_2);
	background-color: var(--color_2);
	text-decoration: none !important;
	color: var(--color_white);
}

.btn svg,
.staticText .btn svg
{
}
.btn svg path[fill],
.staticText .btn svg path[fill]
{
	fill: var(--color_white);
}
.btn:hover svg path[fill],
.staticText .btn:hover svg path[fill]
{
	fill: var(--color_white);
}
.btn svg path[stroke],
.staticText .btn svg path[stroke]
{
	stroke: var(--color_white);
}
.btn:hover svg path[stroke],
.staticText .btn:hover svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

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

/***/

.btn.type3,
.staticText .btn.type3
{
	border: 1px solid var(--color_3);
	background-color: transparent;
	color: var(--color_1);
}
.btn.type3:hover,
.staticText .btn.type3:hover
{
	border-color: var(--color_3);
	background-color: var(--color_5);
	color: var(--color_2);
}
.btn.type3 svg path[fill],
.staticText .btn.type3 svg path[fill]
{
	fill: var(--color_1);
}
.btn.type3:hover svg path[fill],
.staticText .btn.type3:hover svg path[fill]
{
	fill: var(--color_2);
}
.btn.type3 svg path[stroke],
.staticText .btn.type3 svg path[stroke]
{
	stroke: var(--color_1);
}
.btn.type3:hover svg path[stroke],
.staticText .btn.type3:hover svg path[stroke]
{
	stroke: var(--color_2);
}

/***/

.btn.type4,
.staticText .btn.type4
{
	border: 1px solid var(--color_3);
	background-color: var(--color_3);
	color: var(--color_white);
}
.btn.type4:hover,
.staticText .btn.type4:hover
{
	border-color: var(--color_2);
	background-color: var(--color_2);
	color: var(--color_white);
}
.btn.type4 svg path[fill],
.staticText .btn.type4 svg path[fill]
{
	fill: var(--color_white);
}
.btn.type4:hover svg path[fill],
.staticText .btn.type4:hover svg path[fill]
{
	fill: var(--color_white);
}
.btn.type4 svg path[stroke],
.staticText .btn.type4 svg path[stroke]
{
	stroke: var(--color_white);
}
.btn.type4:hover svg path[stroke],
.staticText .btn.type4:hover svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

.btn.active,
.staticText .btn.active
{
	position: relative;
}
.btn .preloader
{
	display: none;
	position: absolute;
	justify-content: center;
	align-items: center;
	background-color: var(--color_2);
	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;
}

/***/

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

.btn.type2.disabled,
.btn.type2[disabled],
.staticText .btn.type2.disabled,
.staticText .btn.type2[disabled]
{
	border: 1px solid var(--color_3);
	background-color: var(--color_3);
	color: var(--color_white);
	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_white);
}
.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_white);
}

/***/

.btn.mw550,
.staticText .btn.mw550
{
	width: 100%;
	max-width: 550px;
}

/***/

.btn.mw320,
.staticText .btn.mw320
{
	width: 100%;
	max-width: 320px;
}

/***/

.btn.mw260,
.staticText .btn.mw260
{
	width: 100%;
	max-width: 260px;
}

/***/

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

.btn.h38,
.staticText .btn.h38
{
	height: 38px;
}

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

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

/*******/

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

/***/

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

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

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

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

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

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

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

.el_articleSliderBlock_71438808 .slick-slider .slick-list,
.el_articleSliderBlock_71438808 .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: 1px solid var(--color_white);
	background-color: var(--color_white);
	box-shadow: 0 5px 15px var(--color_1_10);

	width: 68px;
	height: 68px;
	text-align: center;
	color: var(--color_1);
	z-index: 15;
	cursor: pointer;
	opacity: 1;
}
.slick-slider .slick-arrow:hover
{
	border: 1px solid var(--color_2);
	background-color: var(--color_2);

	color: var(--color_white);
}
/*.el_offerSliderBlock_71438808 .slick-slider .slick-arrow*/
/*{*/
/*	top: 45%;*/
/*}*/
/*.el_articleSliderBlock_71438808 .slick-slider .slick-arrow*/
/*{*/
/*	top: 43%;*/
/*}*/
.slick-slider .slick-arrow:hover
{
}
.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;
	background-size: contain;
	width: 21px;
	height: 16px;
	/*opacity: 0.5;*/
	color: var(--color_1);
}
.slick-slider .slick-arrow:hover::before
{
	/*opacity: 1;*/
}
.slick-slider .slick-arrow.slick-prev::before
{
	background-image: url("../img/arrow-left.svg");
}
.slick-slider .slick-arrow.slick-prev:hover::before
{
	background-image: url("../img/arrow-left-w.svg");
}
.slick-slider .slick-arrow.slick-next::before
{
	background-image: url("../img/arrow-right.svg");
}
.slick-slider .slick-arrow.slick-next:hover::before
{
	background-image: url("../img/arrow-right-w.svg");
}

/*****/

.sliderBtnBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.sliderBtnBlock .slick-arrow
{
	position: static;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid var(--color_white);
	background-color: var(--color_white);
	box-shadow: 0 5px 15px var(--color_1_10);

	width: 68px;
	height: 68px;
	text-align: center;
	color: var(--color_1);
	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: 1px solid var(--color_2);
	background-color: var(--color_2);

	color: var(--color_white);
}
.sliderBtnBlock .slick-arrow::before
{
	content: "";
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 21px;
	height: 16px;
	/*opacity: 0.5;*/
	color: var(--color_1);
}
.sliderBtnBlock .slick-arrow:hover::before
{
	/*opacity: 1;*/
}
.sliderBtnBlock .slick-arrow.slick-prev::before
{
	background-image: url("../img/arrow-left.svg");
}
.sliderBtnBlock .slick-arrow.slick-prev:hover::before
{
	background-image: url("../img/arrow-left-w.svg");
}
.sliderBtnBlock .slick-arrow.slick-next::before
{
	background-image: url("../img/arrow-right.svg");
}
.sliderBtnBlock .slick-arrow.slick-next:hover::before
{
	background-image: url("../img/arrow-right-w.svg");
}

@media (max-width: 1680px)
{
	.slick-slider .slick-arrow
	{
		width: calc(28px + (68 - 28) * var(--width-coefficient));
		height: calc(28px + (68 - 28) * var(--width-coefficient));
	}
	.slick-slider .slick-arrow::before
	{
		width: calc(11px + (21 - 11) * var(--width-coefficient));
		height: calc(9px + (16 - 9) * var(--width-coefficient));
	}

	.sliderBtnBlock .slick-arrow
	{
		width: calc(28px + (68 - 28) * var(--width-coefficient));
		height: calc(28px + (68 - 28) * var(--width-coefficient));
	}
	.sliderBtnBlock .slick-arrow::before
	{
		width: calc(11px + (21 - 11) * var(--width-coefficient));
		height: calc(9px + (16 - 9) * var(--width-coefficient));
	}
	.sliderBtnBlock .slick-arrow svg
	{
		width: calc(11px + (21 - 11) * var(--width-coefficient));
		height: calc(9px + (16 - 9) * var(--width-coefficient));
	}
}

@media (max-width: 1200px)
{
	.el_offerSliderBlock_71438808.action .sliderBtnBlock .slick-arrow
	{
		border-color: var(--color_white);
		color: var(--color_white);
	}
	.el_offerSliderBlock_71438808.action .sliderBtnBlock .slick-arrow:hover
	{
		border-color: var(--color_6);
		background-color: var(--color_6);
		color: var(--color_white);
	}
	.el_offerSliderBlock_71438808.action .sliderBtnBlock .slick-arrow svg path[fill]
	{
		fill: var(--color_white);
	}
	.el_offerSliderBlock_71438808.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
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
	bottom: 10%;
}
.slick-slider .slick-dots li
{
	margin: 0;
	width: auto;
	height: auto;
}
.slick-slider .slick-dots li button
{
	background-color: var(--color_white);
	width: 70px;
	height: 5px;
}
.slick-slider .slick-dots li.slick-active button,
.slick-slider .slick-dots li button:hover
{
	background-color: var(--color_2);
}
.slick-slider .slick-dots li button::before
{
	display: none;
}

@media (max-width: 1730px)
{
	.slick-slider .slick-dots
	{
		gap: calc(8px + (24 - 8) * var(--width-coefficient));
	}
	.slick-slider .slick-dots li button
	{
		padding: calc(3px + (5 - 3) * var(--width-coefficient));
		width: calc(34px + (70 - 34) * var(--width-coefficient));
		height: calc(2px + (5 - 2) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.indexTopBanner .slick-slider .slick-dots
	{
		padding-left: 15px;
		padding-right: 15px;
		justify-content: flex-start;
		gap: calc(8px + (24 - 8) * var(--width-coefficient));
	}
}

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

.socialNetworkList li
{
	display: inline-block;
	width: 28px;
	height: 28px;
}
.socialNetworkList li .img_wrap .el
{
}
.socialNetworkList li .img_wrap .el img
{
}
.socialNetworkList li .img_wrap .el .title
{
	position: absolute;
	/*display: block;*/
	display: none;
	border-radius: 0;
	border: 1px solid var(--color_2);
	background-color: var(--color_white_50);
	left: 50%;
	padding: 0 10px;
	min-width: 110px;
	line-height: 26px;
	font-size: 1.4rem;
	font-weight: 400;
	text-indent: 0;
	text-transform: none;
	text-align: center;
	color: var(--color_2);
	/*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_2);
}
.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_2);
}
.socialNetworkList.top li .img_wrap .el .title::after
{
	bottom: -11px;
	margin-left: -10px;
	border-top: 10px solid var(--color_2);
}
.socialNetworkList.bottom li .img_wrap .el .title::after
{
	top: -11px;
	margin-left: -10px;
	border-bottom: 10px solid var(--color_2);
}
.socialNetworkList.top li .img_wrap:hover .el .title
{
	bottom: calc(100% + 11px);
	opacity: 0.9;
}
.socialNetworkList.bottom li .img_wrap:hover .el .title
{
	top: calc(100% + 11px);
	opacity: 0.9;
}

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

.el_titleBlock_71438808
{
	position: relative;
	margin-bottom: 24px;

	font-family: var(--font-family-1);
	line-height: 50px;
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
.bgDark .el_titleBlock_71438808
{
	color: var(--color_white);
}
.el_titleBlock_71438808.text-center
{
	text-align: center;
}
.el_titleBlock_71438808.text-left
{
	text-align: left;
}
.el_titleBlock_71438808.text-right
{
	text-align: right;
}
.el_titleBlock_71438808 span
{
}

@media (max-width: 1560px)
{
	.el_titleBlock_71438808
	{
		margin-bottom: calc(10px + (24 - 10) * var(--width-coefficient));

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

/******/

.el_titleBlock_71438808.type2
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
/*.el_titleBlock_71438808.type2 .sliderBtnBlock*/
/*{*/
/*	-ms-flex: 0 0 164px;*/
/*	flex: 0 0 164px;*/
/*	max-width: 164px;*/
/*}*/

/******/

.el_titleBlock2_71438808
{
	position: relative;
	margin-bottom: 24px;

	font-family: var(--font-family-1);
	line-height: 2.8rem;
	font-size: 2.2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
.bgDark .el_titleBlock2_71438808
{
	color: var(--color_white);
}
.el_titleBlock2_71438808.text-center
{
	text-align: center;
}
.el_titleBlock2_71438808.text-left
{
	text-align: left;
}
.el_titleBlock2_71438808.text-right
{
	text-align: right;
}
.el_titleBlock2_71438808 span
{
}

@media (max-width: 1560px)
{
	.el_titleBlock2_71438808
	{
		margin-bottom: calc(10px + (24 - 10) * var(--width-coefficient));

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

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

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

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

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

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

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

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

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

	section.pb-0,
	.section.pb-0
	{
		padding-bottom: 0;
	}
	section.pb-50,
	.section.pb-50
	{
		padding-bottom: calc(30px + (50 - 30) * var(--width-coefficient));
	}
	section.pb-150,
	.section.pb-150
	{
		padding-bottom: calc(50px + (150 - 50) * 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;
}

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

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

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

.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 .contentRow
{
	row-gap: 24px;
	column-gap: 60px;
}

main .asideBlockCD
{
	-ms-flex: 0 0 288px;
	flex: 0 0 288px;
	max-width: 288px;
}

@media (max-width: 991px)
{
	main .asideBlockCD
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	main .asideBlockCD.fakeBlock
	{
		display: none;
	}
}

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

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

	height: 30px;
	overflow: hidden;
}
.el_topHeaderTickerBlock_71438808.ticker .tickerList::before,
.el_topHeaderTickerBlock_71438808.ticker .tickerList::after
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: 0;
	width: 10%;
	height: 100%;
	z-index: 5;
}
.el_topHeaderTickerBlock_71438808.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_71438808.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_71438808 .tickerList .marquee
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.el_topHeaderTickerBlock_71438808 .tickerList .tickerListItem
{
	position: relative;
	padding: 0;
	line-height: 1.6rem;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	color: var(--color_1);
}
.el_topHeaderTickerBlock_71438808 .tickerList .tickerListItem span
{
	display: inline-block;
}
.el_topHeaderTickerBlock_71438808 .tickerList .tickerListItem a
{
	display: inline-block;
	color: var(--color_6);
}
.el_topHeaderTickerBlock_71438808 .tickerList .tickerListItem a:hover
{
	color: var(--color_2);
}
.el_topHeaderTickerBlock_71438808.ticker .tickerList .tickerListItem
{
	float: left;
	position: relative;
	padding: 0 30px;
}
.el_topHeaderTickerBlock_71438808.ticker .tickerList .tickerListItem::before,
.el_topHeaderTickerBlock_71438808.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_71438808.ticker .tickerList .tickerListItem::before
{
	left: -3px;
}
.el_topHeaderTickerBlock_71438808.ticker .tickerList .tickerListItem::after
{
	right: -3px;
}

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

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

header.headerCD
{
	position: relative;
	background-color: var(--color_1);
	color: var(--color_white);
	z-index: 800;
}

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

header.headerCD .headerTopBlock
{
	padding: 30px 0;
	border-bottom: 1px solid var(--color_3);
}
header.headerCD .headerTopBlock .row
{
	align-items: center;
}

/***/

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

/*****/

header.headerCD .headerTopBlock .logoCol
{
	-ms-flex: 0 0 250px;
	flex: 0 0 250px;
	max-width: 250px;
}
header.headerCD .headerTopBlock .logoCol .logo
{
	display: inline-block;
	max-width: 220px;
	max-height: 32px;
}
header.headerCD .headerTopBlock .logoCol .logo img
{
	max-width: 100%;
	max-height: inherit;
}

/***/

header.headerCD .headerTopBlock .navCol
{
	height: 100%;
}
header.headerCD .headerTopBlock .navCol nav ul
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 50px;
}
header.headerCD .headerTopBlock .navCol nav ul li
{
	position: relative;
	display: inline-block;
	padding: 0;
}
header.headerCD .headerTopBlock .navCol nav ul li a
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px 0;
	line-height: 1;
	font-size: 1.4rem;
	color: var(--color_white);
}

/***/

header.headerCD .headerTopBlock .socialNetworkCol
{
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: unset;
}
header.headerCD .headerTopBlock .socialNetworkCol ul
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 7px;
}
header.headerCD .headerTopBlock .socialNetworkCol ul li
{
	padding: 0;
}

/***/

header.headerCD .headerTopBlock .phoneBlock
{
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: unset;
}
header.headerCD .headerTopBlock .phoneBlock .text
{
	line-height: 1;
	font-size: 1.4rem;
	color: var(--color_white);
}
header.headerCD .headerTopBlock .phoneBlock .phone
{
	margin-top: 2px;
}
header.headerCD .headerTopBlock .phoneBlock .phone a
{
	line-height: 1;
	font-size: 1.4rem;
	letter-spacing: 0.18rem;
	font-weight: bold;
	color: var(--color_white);
}
header.headerCD .headerTopBlock .phoneBlock .phone a:hover
{
	color: var(--color_2);
}

/*****/

header.headerCD .headerTopBlock .toggleWrapper
{
	position: relative;
	height: 100%;
}
header.headerCD .headerTopBlock .toggleWrapper .toggleTitle
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}
header.headerCD .headerTopBlock .toggleWrapper .toggleTitle a
{
	line-height: 1;
	font-size: 1.4rem;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--color_white);
}
header.headerCD .headerTopBlock .toggleWrapper .toggleTitle a:hover,
header.headerCD .headerTopBlock .toggleWrapper .toggleTitle a.active
{
	color: var(--color_2);
}

header.headerCD .headerTopBlock .toggleWrapper .toggleTitle a .toggleBtn::before
{
	display: inline-block;
	content: "\f107";
	font-family: "FontAwesome";
}
header.headerCD .headerTopBlock .toggleWrapper .toggleTitle a.open .toggleBtn::before
{
	content: "\f106";
}
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock
{
	display: none;
	position: absolute;
	background-color: var(--color_5);
	top: 100%;
	right: 0;
	padding: 10px 15px;
	min-width: 190px;
	box-shadow: 0 0 3px rgba(0,0,0, 0.3);
	z-index: 50;
}
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock.open
{
	display: block;
}
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul
{
	padding: 0;
}
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul li
{
	display: block;
	margin: 0;
	padding: 0;
	text-align: left;
}
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul li a,
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul li span
{
	display: block;
	padding: 5px 0;
	font-family: var(--font-family-1);
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock.langToggleBlock ul li a,
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock.langToggleBlock ul li span
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 30px 1fr;
	align-items: center;
	gap: 5px;
}
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul li a:hover,
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul li a.active,
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul li span
{
	font-weight: 700;
}
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul li a img,
header.headerCD .headerTopBlock .toggleWrapper .toggleBlock ul li span img
{
	display: block;
	max-width: 30px;
	max-height: 23px;
}

/***/

header.headerCD .headerTopBlock .delCol
{
	-ms-flex: 0 0 70px;
	flex: 0 0 70px;
	max-width: 70px;
	padding: 0;
}
header.headerCD .headerTopBlock .delCol.d0
{
	-ms-flex: 0 0 190px;
	flex: 0 0 190px;
	max-width: 190px;
}
header.headerCD .headerTopBlock .delCol.d1
{
	-ms-flex: 0 0 175px;
	flex: 0 0 175px;
	max-width: 175px;
}
header.headerCD .headerTopBlock .delCol.d2
{
}

/***/
header.headerCD .headerTopBlock .btnCol .itemBtn
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	background-color: transparent;
	border: none;
	padding: 0;
}

/***/

header.headerCD .headerTopBlock .searchCol
{
	display: none;
	-ms-flex: 0 0 50px;
	flex: 0 0 50px;
	max-width: 50px;
}
/**/
header.headerCD .headerTopBlock .searchCol .searchBlock
{
	display: block;
	position: absolute;
	background-color: var(--color_1);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0%;
	overflow: hidden;
	z-index: -1;
}
header.headerCD .headerTopBlock .searchCol .searchBlock.open
{
	height: 100%;
	z-index: 50;
}
header.headerCD .headerTopBlock .searchCol .searchBlock .container-fluid
{
	height: 100%;
}
header.headerCD .headerTopBlock .searchCol .searchBlock .searchWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
/**/
header.headerCD .headerTopBlock .searchCol .searchBlock .searchWrapper form
{
	position: relative;
	display: block;
	width: 100%;
}
header.headerCD .headerTopBlock .searchCol .searchBlock .searchWrapper form input
{
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--color_5);
	padding: 0 40px 0 0;
	width: 100%;
	height: 30px;
	color: var(--color_white);
}
header.headerCD .headerTopBlock .searchCol .searchBlock .searchWrapper form input:focus
{
	border-bottom: 1px solid var(--color_2);
}
header.headerCD .headerTopBlock .searchCol .searchBlock form button
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: transparent;
	top: 50%;
	right: 0;
	width: 30px;
	height: 100%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
}
header.headerCD .headerTopBlock .searchCol .searchBlock form button svg
{
	width: 18px;
	height: 18px;
}
header.headerCD .headerTopBlock .searchCol .searchBlock form button svg path[stroke]
{
	stroke: var(--color_white);
}
header.headerCD .headerTopBlock .searchCol .searchBlock form button svg path[fill]
{
	fill: var(--color_white);
}
header.headerCD .headerTopBlock .searchCol .searchBlock form button:hover svg path[stroke]
{
	stroke: var(--color_2);
}
header.headerCD .headerTopBlock .searchCol .searchBlock form button:hover svg path[fill]
{
	fill: var(--color_2);
}
/**/
header.headerCD .headerTopBlock .searchCol .searchBlock .closeSearch
{
	-ms-flex: 0 0 50px;
	flex: 0 0 50px;
	max-width: 50px;
	text-align: right;
}
header.headerCD .headerTopBlock .searchCol .searchBlock .closeSearch .closeSearchBtn
{
	position: relative;
	display: inline-block;
}

/***/

header.headerCD .headerTopBlock .currencyCol
{
	-ms-flex: 0 0 70px;
	flex: 0 0 70px;
	max-width: 70px;
}

/***/

header.headerCD .headerTopBlock .langCol
{
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
	max-width: 60px;
}

/***/

header.headerCD .headerTopBlock .loginCol
{
	-ms-flex: 0 0 50px;
	flex: 0 0 50px;
	max-width: 50px;
}

/***/

header.headerCD .headerTopBlock .cartBlock
{
	-ms-flex: 0 0 50px;
	flex: 0 0 50px;
	max-width: 50px;
}
header.headerCD .headerTopBlock .cartBlock .itemBtn
{
	position: relative;
	display: inline-block;
}
header.headerCD .headerTopBlock .cartBlock .itemBtn .ico
{
	display: inline-block;
}
header.headerCD .headerTopBlock .cartBlock .itemBtn .offerAmount
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: var(--color_2);
	top: -5px;
	right: -10px;
	padding: 2px;
	min-width: 16px;
	min-height: 16px;
	font-size: 1rem;
	color: var(--color_white);
}

/*****/

header.headerCD .fixedCartBlock
{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	z-index: 700;
}
header.headerCD .fixedCartBlock.open
{
	display: block;
}
header.headerCD .fixedCartBlock .closeDiv
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1_30);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
header.headerCD .fixedCartBlock .innerWrapper
{
	position: absolute;
	display: -ms-grid;
	display: grid;
	grid-template-rows: 120px 1fr 190px;
	background-color: var(--color_white);
	top: 0;
	right: 0;
	width: 100%;
	max-width: 660px;
	height: 100vh;
	/*overflow: auto;*/
}
/**/
header.headerCD .fixedCartBlock .topBlock
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 64px 24px 64px;
}
header.headerCD .fixedCartBlock .topBlock .btnLine
{
	text-align: right;
}
header.headerCD .fixedCartBlock .topBlock .closeBtn
{
	display: inline-block;
}
header.headerCD .fixedCartBlock .topBlock .closeBtn svg
{
	width: 28px;
	height: 28px;
}
header.headerCD .fixedCartBlock .topBlock .closeBtn svg path[fill]
{
	fill: var(--color_1);
}
header.headerCD .fixedCartBlock .topBlock .closeBtn:hover svg path[fill]
{
	fill: var(--color_2);
}
header.headerCD .fixedCartBlock .topBlock .closeBtn svg path[stroke]
{
	stroke: var(--color_1);
}
header.headerCD .fixedCartBlock .topBlock .closeBtn:hover svg path[stroke]
{
	stroke: var(--color_2);
}
/**/
header.headerCD .fixedCartBlock .titleBlock
{
	margin: 0;
	line-height: 2.8rem;
	font-size: 2.2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
/***/

header.headerCD .fixedCartBlock .offerListBlock
{
	display: -ms-flex;
	display: flex;
	flex: 1 1 auto;
	justify-content: center;
}
header.headerCD .fixedCartBlock .offerListBlock .wrapper
{
	padding: 0 64px;
	width: 100%;
	overflow: auto;
}
header.headerCD .fixedCartBlock .offerListBlock .wrapper::-webkit-scrollbar
{
	width: 6px; /* ширина всей полосы прокрутки */
}
header.headerCD .fixedCartBlock .offerListBlock .wrapper::-webkit-scrollbar-track
{
	background: var(--color_5); /* цвет зоны отслеживания */
}
header.headerCD .fixedCartBlock .offerListBlock .wrapper::-webkit-scrollbar-thumb
{
	background-color: var(--color_2); /* цвет бегунка */
	border-radius: 20px;			  /* округлось бегунка */
	border: 1px solid var(--color_2); /* отступ вокруг бегунка */
}

/**/
header.headerCD .fixedCartBlock .offerListBlock .offerListItem
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 150px 160px 1fr 80px;
	column-gap: 22px;
	row-gap: 12px;
	border-top: 1px solid var(--color_3);
	padding: 24px 0;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem:last-child
{
	border-bottom: 1px solid var(--color_3);
}

header.headerCD .fixedCartBlock .offerListBlock .offerListItem .iTitle
{
	margin-bottom: 15px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}

/**/
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemImg
{
	grid-row-start: 1;
	grid-row-end: 3;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemImg .img_wrap
{
	padding-bottom: 130%;
}
/**/
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemProduct
{
	grid-column-start: 2;
	grid-column-end: 5;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemProduct *
{
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemProduct .title
{
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemProduct .title a
{
	display: inline-block;
	font-weight: 700;
	color: var(--color_1);
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .productCol .title a:hover
{
	color: var(--color_6);
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemProduct .vendorCode
{
	margin-top: 6px;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemProduct .offerModTitle
{
	margin-top: 6px;
	color: var(--color_3);
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemProduct .offerModTitle span
{
	color: var(--color_3);
}
/**/
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty
{
	grid-column-start: 2;
	grid-column-end: 3;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty form
{
	position: relative;
	padding-bottom: 16px;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper
{
	position: relative;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper input
{
	padding: 0 30px;
	height: 40px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	text-align: center;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button
{
	position: absolute;
	border: none;
	background-color: transparent;
	top: 50%;
	width: 20px;
	height: 20px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button::before,
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button:hover::before,
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button:hover::after
{
	background-color: var(--color_2);
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button.minus
{
	left: 10px;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button.minus::after
{
	display: none;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button.plus
{
	right: 10px;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button.plus::after
{
	width: 2px;
	height: 16px;
}
/**/
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemDelete
{
	grid-column-start: 4;
	grid-column-end: 5;
	text-align: right;
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemDelete .deleteBtn
{
	border: none;
	border-bottom: 1px solid var(--color_6);
	background: none;
	line-height: 2.4rem;
	font-size: 1.6rem;
	color: var(--color_6);
}
header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemDelete .deleteBtn:hover
{
	border-color: var(--color_2);
	color: var(--color_2);
}

/***/

header.headerCD .fixedCartBlock .bottomBlock
{
	background-color: var(--color_5);
	padding: 24px 64px 24px 64px;
}
header.headerCD .fixedCartBlock .bottomBlock .totalBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;

	letter-spacing: 2px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color_1);
}
header.headerCD .fixedCartBlock .bottomBlock .totalBlock .title
{
	text-transform: uppercase;
}
header.headerCD .fixedCartBlock .bottomBlock .buttonBlock
{
	text-align: center;
}
header.headerCD .fixedCartBlock .bottomBlock .buttonBlock .linkLine
{
	margin-top: 24px;
}
header.headerCD .fixedCartBlock .bottomBlock .buttonBlock .linkLine .link
{
	display: inline-block;
	line-height: 1.4rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color_6);
}
header.headerCD .fixedCartBlock .bottomBlock .buttonBlock .linkLine .link:hover
{
	color: var(--color_2);
}

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

header.headerCD .headerBottomBlock
{
}

/***/

header.headerCD .headerBottomBlock .linkCol
{
	/*height: 100%;*/
}
header.headerCD .headerBottomBlock .linkCol nav
{
	height: 100%;
}
header.headerCD .headerBottomBlock .linkCol nav ul
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 66px;
	height: 100%;
}
header.headerCD .headerBottomBlock .linkCol nav ul li
{
	position: relative;
	height: 100%;
}
header.headerCD .headerBottomBlock .linkCol nav ul li a
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 100%;
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color_white);
}
header.headerCD .headerBottomBlock .linkCol nav ul li a:hover,
header.headerCD .headerBottomBlock .linkCol nav ul li a.active
{
}
header.headerCD .headerBottomBlock .linkCol nav ul li a.firstLine::after
{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color_2);
	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 .headerBottomBlock .linkCol nav ul li a.firstLine:hover::after,
header.headerCD .headerBottomBlock .linkCol nav ul li a.firstLine.active::after
{
	height: 3px;
	opacity: 1;
	-webkit-transform: translateY(-3px);
	-moz-transform: translateY(-3px);
	transform: translateY(-3px);
}
header.headerCD .headerBottomBlock .linkCol nav ul li ul
{
	position: absolute;
	display: none;
	background-color: var(--color_white);
	top: 100%;
	left: 0;
	padding: 20px;
	width: auto;
	min-width: 260px;
	height: auto;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
header.headerCD .headerBottomBlock .linkCol nav ul li:hover > ul
{
	display: block;
}
header.headerCD .headerBottomBlock .linkCol nav ul li ul li
{
	display: block;
	height: auto;
	margin-top: 12px;
}
header.headerCD .headerBottomBlock .linkCol nav ul li ul li:first-child
{
	margin-top: 0;
}
header.headerCD .headerBottomBlock .linkCol nav ul li ul li a
{
	display: inline-block;
	height: auto;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: unset;
	color: var(--color_1);
}
header.headerCD .headerBottomBlock .linkCol nav ul li ul li a:hover,
header.headerCD .headerBottomBlock .linkCol nav ul li ul li a.active
{
	color: var(--color_2);
}

/***/

header.headerCD .headerBottomBlock .searchCol
{
	-ms-flex: 0 0 330px;
	flex: 0 0 330px;
	max-width: 330px;
}
/**/
header.headerCD .headerBottomBlock .searchCol .openSearchBtn
{
	display: none;
	position: relative;
	border: none;
	background-color: transparent;
	margin: 0;
	padding: 0;
	width: 100%;
	color: var(--color_white);
}
header.headerCD .headerBottomBlock .searchCol .openSearchBtn svg
{
	width: 31px;
	height: 31px;
}
header.headerCD .headerBottomBlock .searchCol .openSearchBtn svg path[stroke]
{
	stroke: var(--color_white);
}
header.headerCD .headerBottomBlock .searchCol .openSearchBtn:hover svg path[stroke]
{
	stroke: var(--color_white);
}
header.headerCD .headerBottomBlock .searchCol .openSearchBtn svg path[fill]
{
	fill: var(--color_white);
}
header.headerCD .headerBottomBlock .searchCol .openSearchBtn:hover svg path[fill]
{
	fill: var(--color_white);
}
/**/
header.headerCD .headerBottomBlock .searchCol .searchBlock
{
	padding: 12px 0 17px 0;
}
header.headerCD .headerBottomBlock .searchCol .searchBlock .searchWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
/**/
header.headerCD .headerBottomBlock .searchCol .searchBlock .searchWrapper form
{
	position: relative;
	display: block;
	width: 100%;
}
header.headerCD .headerBottomBlock .searchCol .searchBlock .searchWrapper form input
{
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--color_5);
	padding: 0 40px 0 0;
	width: 100%;
	height: 30px;
	color: var(--color_white);
}
header.headerCD .headerBottomBlock .searchCol .searchBlock .searchWrapper form input:focus
{
	border-bottom: 1px solid var(--color_2);
}
header.headerCD .headerBottomBlock .searchCol .searchBlock form button
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: transparent;
	top: 50%;
	right: 0;
	width: 30px;
	height: 100%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
}
header.headerCD .headerBottomBlock .searchCol .searchBlock form button svg
{
	width: 18px;
	height: 18px;
}
header.headerCD .headerBottomBlock .searchCol .searchBlock form button svg path[stroke]
{
	stroke: var(--color_white);
}
header.headerCD .headerBottomBlock .searchCol .searchBlock form button svg path[fill]
{
	fill: var(--color_white);
}
header.headerCD .headerBottomBlock .searchCol .searchBlock form button:hover svg path[stroke]
{
	stroke: var(--color_2);
}
header.headerCD .headerBottomBlock .searchCol .searchBlock form button:hover svg path[fill]
{
	fill: var(--color_2);
}

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

header.headerCD .catalogMenuBlock
{
	display: none;
	position: absolute;
	background-color: var(--color_white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	top: 100%;
	left: 0;
	width: 100%;
	/*height: 100vh;*/
	/*height: calc(100vh - 128px);*/
}
header.headerCD .catalogMenuBlock.open
{
	display: block;
}
/**/
header.headerCD .catalogMenuBlock .closeBG
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
/**/
header.headerCD .catalogMenuBlock .innerWrapper
{
	position: relative;
	display: -ms-grid;
	display: grid;
	grid-template-columns: 350px auto;
	padding: 40px 0 60px 0;
	z-index: 5;
}
/**/
header.headerCD .catalogMenuBlock .imageBlock
{
}
/**/
header.headerCD .catalogMenuBlock .listBlock
{
	position: relative;
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
header.headerCD .catalogMenuBlock .listBlock::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_white);
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	z-index: 5;
}
header.headerCD .catalogMenuBlock .listBlock .itemBlock
{
	position: relative;
	padding: 0 70px;
}
header.headerCD .catalogMenuBlock .listBlock .itemBlock::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_3);
	top: 2%;
	left: 0;
	width: 1px;
	height: 96%;
	z-index: 1;
}
header.headerCD .catalogMenuBlock .listBlock ul
{
}
header.headerCD .catalogMenuBlock .listBlock ul li
{
}
header.headerCD .catalogMenuBlock .listBlock ul li a
{
	line-height: 1.8rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .catalogMenuBlock .listBlock ul li a:hover,
header.headerCD .catalogMenuBlock .listBlock ul li a.active
{
	color: var(--color_2);
}
header.headerCD .catalogMenuBlock .listBlock ul li ul
{
}
header.headerCD .catalogMenuBlock .listBlock ul li ul li
{
	margin-top: 20px;
}
header.headerCD .catalogMenuBlock .listBlock ul li ul li a
{
	line-height: 1;
	font-size: 1.6rem;
	font-weight: 400;
	text-transform: none;
	color: var(--color_1);
}
header.headerCD .catalogMenuBlock .listBlock ul li ul li a:hover,
header.headerCD .catalogMenuBlock .listBlock ul li ul li a.active
{
	color: var(--color_2);
}

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

@media (max-width: 1730px)
{
	header.headerCD .headerTopBlock .delCol.d0
	{
		-ms-flex: 0 0 110px;
		flex: 0 0 110px;
		max-width: 110px;
	}
	header.headerCD .headerTopBlock .delCol.d1
	{
		-ms-flex: 0 0 110px;
		flex: 0 0 110px;
		max-width: 110px;
	}
	header.headerCD .headerTopBlock .delCol.d2
	{
		-ms-flex: 0 0 40px;
		flex: 0 0 40px;
		max-width: 40px;
	}

	header.headerCD .headerTopBlock .navCol nav ul
	{
		gap: calc(10px + (50 - 10) * var(--width-coefficient));
	}

	header.headerCD .headerBottomBlock .linkCol nav ul
	{
		gap: calc(15px + (66 - 15) * var(--width-coefficient));
	}
	header.headerCD .headerBottomBlock .searchCol
	{
		-ms-flex: 0 0 calc(150px + (330 - 150) * var(--width-coefficient));
		flex: 0 0 calc(150px + (330 - 150) * var(--width-coefficient));
		max-width: calc(150px + (330 - 150) * var(--width-coefficient));
	}

	/***********/
	header.headerCD .fixedCartBlock .innerWrapper
	{
		grid-template-rows: calc(70px + (120 - 70) * var(--width-coefficient)) 1fr calc(155px + (190 - 155) * var(--width-coefficient));
	}
	/**/
	header.headerCD .fixedCartBlock .topBlock
	{
		padding-top: calc(30px + (60 - 30) * var(--width-coefficient));
		padding-right: calc(15px + (64 - 15) * var(--width-coefficient));
		padding-bottom: calc(15px + (24 - 15) * var(--width-coefficient));
		padding-left: calc(15px + (64 - 15) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .topBlock .closeBtn svg
	{
		width: calc(18px + (28 - 18) * var(--width-coefficient));
		height: calc(18px + (28 - 18) * var(--width-coefficient));
	}
	/**/
	header.headerCD .fixedCartBlock .titleBlock
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}

	/***/

	header.headerCD .fixedCartBlock .offerListBlock .wrapper
	{
		padding: 0 calc(15px + (64 - 15) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem
	{
		grid-template-columns: calc(70px + (150 - 70) * var(--width-coefficient)) calc(110px + (160 - 110) * var(--width-coefficient)) 1fr calc(50px + (80 - 50) * var(--width-coefficient));
		column-gap: calc(12px + (22 - 12) * var(--width-coefficient));
	}

	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .iTitle
	{
		margin-bottom: calc(14px + (15 - 14) * var(--width-coefficient));
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	/**/
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemProduct *
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(10px + (16 - 10) * var(--width-coefficient));
	}
	/**/
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty
	{
		padding: calc(0px + (25 - 0) * var(--width-coefficient)) calc(0px + (20 - 0) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper input
	{
		padding: 0 calc(20px + (30 - 20) * var(--width-coefficient));
		height: calc(32px + (40 - 32) * var(--width-coefficient));
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button::before,
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button::after
	{
		width: calc(8px + (16 - 8) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button.minus
	{
		left: calc(0px + (10 - 0) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button.plus
	{
		right: calc(0px + (10 - 0) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemQty .qtyWrapper button.plus::after
	{
		height: calc(8px + (16 - 8) * var(--width-coefficient));
	}
	/**/
	header.headerCD .fixedCartBlock .offerListBlock .offerListItem .itemDelete .deleteBtn
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	/***/

	header.headerCD .fixedCartBlock .bottomBlock
	{
		background-color: var(--color_5);
		padding: 24px calc(15px + (64 - 15) * var(--width-coefficient)) calc(25px + (50 - 25) * var(--width-coefficient)) calc(15px + (64 - 15) * var(--width-coefficient));
		/*height: calc(320px + (480 - 320) * var(--width-coefficient));*/
	}
	header.headerCD .fixedCartBlock .bottomBlock .totalBlock
	{
		gap: calc(14px + (24 - 14) * var(--width-coefficient));

		line-height: calc(14px + (24 - 14) * var(--width-coefficient));
		font-size: calc(12px + (16 - 12) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .bottomBlock .buttonBlock .linkLine
	{
		margin-top: calc(14px + (24 - 14) * var(--width-coefficient));
	}
	header.headerCD .fixedCartBlock .bottomBlock .buttonBlock .linkLine .link
	{
		line-height: calc(11px + (14 - 11) * var(--width-coefficient));
		font-size: calc(11px + (14 - 11) * var(--width-coefficient));
	}

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

	header.headerCD .catalogMenuBlock .innerWrapper
	{
		grid-template-columns: calc(50px + (350 - 50) * var(--width-coefficient)) auto;
		padding: calc(30px + (40 - 30) * var(--width-coefficient)) 0 calc(40px + (60 - 40) * var(--width-coefficient)) 0;
	}
	/**/
	header.headerCD .catalogMenuBlock .listBlock .itemBlock
	{
		position: relative;
		padding: 0 calc(0px + (70 - 0) * var(--width-coefficient));
	}
	header.headerCD .catalogMenuBlock .listBlock ul li a
	{
		line-height: 1.8rem;
		font-size: 1.5rem;
	}
	header.headerCD .catalogMenuBlock .listBlock ul li ul li
	{
		margin-top: 20px;
	}
	header.headerCD .catalogMenuBlock .listBlock ul li ul li a
	{
		font-size: 1.6rem;
	}

}
@media (max-width: 1440px)
{
	header.headerCD .headerTopBlock .delCol.d0
	{
		display: none;
	}
	header.headerCD .headerTopBlock .delCol.d1
	{
		display: none;
	}
	header.headerCD .headerTopBlock .delCol.d2
	{
		display: none;
	}
}
@media (max-width: 1200px)
{
	header.headerCD .headerTopBlock .logoCol
	{
		-ms-flex: 0 0 150px;
		flex: 0 0 150px;
		max-width: 150px;
	}
	header.headerCD .headerTopBlock .navCol nav ul
	{
		gap: calc(10px + (25 - 10) * var(--width-coefficient));
	}

	header.headerCD .catalogMenuBlock .innerWrapper
	{
		grid-template-columns: 1fr;
	}
	header.headerCD .catalogMenuBlock .imageBlock
	{
		display: none;
	}
	header.headerCD .catalogMenuBlock .listBlock .itemBlock
	{
		padding: 0 15px;
	}
}
@media (max-width: 991px)
{
	header.headerCD .headerTopBlock
	{
		padding: 12px 0;
		border-bottom: none;
	}
	header.headerCD .headerTopBlock .col
	{
		padding-left: 10px;
		padding-right: 10px;
	}
	header.headerCD .headerTopBlock .burgerBtnCol
	{
		display: block;
	}
	header.headerCD .headerTopBlock .burgerBtnCol .burgerBtn .burger
	{
		height: 24px;
	}
	header.headerCD .headerTopBlock .logoCol
	{
		-ms-flex: 0 0 134px;
		flex: 0 0 134px;
		max-width: 134px;
	}
	
	header.headerCD .headerTopBlock .searchCol
	{
		display: block;
	}

	header.headerCD .headerTopBlock .navCol
	{
		padding: 0;
	}
	header.headerCD .headerTopBlock .navCol nav,
	header.headerCD .headerTopBlock .socialNetworkCol,
	header.headerCD .headerTopBlock .currencyCol,
	header.headerCD .headerTopBlock .langCol,
	header.headerCD .headerTopBlock .phoneBlock
	{
		display: none;
	}

	header.headerCD .headerBottomBlock
	{
		display: none;
	}
}
@media (max-width: 375px)
{
	header.headerCD .headerTopBlock .burgerBtnCol
	{
		-ms-flex: 0 0 40px;
		flex: 0 0 40px;
		max-width: 40px;
	}
	header.headerCD .headerTopBlock .searchCol
	{
		-ms-flex: 0 0 30px;
		flex: 0 0 30px;
		max-width: 30px;
	}
}

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

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

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

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

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


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

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

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

/***/

header.headerCD .mobileMenuBlock .itemBlock
{
	padding: 15px;
	border-bottom: 1px solid var(--color_5);
}
header.headerCD .mobileMenuBlock .itemBlock .logoCol
{
	text-align: center;
}
header.headerCD .mobileMenuBlock .itemBlock .burgerBtnCol
{
	-ms-flex: 0 0 0;
	flex: 0 0 0;
	max-width: 0;
}

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

/***/

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

/***/

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

/***/

header.headerCD .mobileMenuBlock .profileBlock
{
	background-color: var(--color_5);
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .icoBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .icoBlock svg
{
	max-width: 10px;
	max-height: 10px;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock
{
	padding-left: 15px;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul
{
	display: -ms-flex;
	display: flex;
	align-items: center;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li
{
	display: inline-block;
	line-height: 1.5rem;
	font-size: 1.1rem;
}
header.headerCD .mobileMenuBlock .profileBlock .innerWrapper .infoBlock ul li.separator
{
	display: inline-block;
	background-color: var(--color_1);
	margin: 0 10px;
	width: 1px;
	height: 20px;
}

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

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

/***/

header.headerCD .mobileMenuBlock .mainLinkBlock
{
	padding: 0;
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul
{
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li
{
}
header.headerCD .mobileMenuBlock .mainLinkBlock ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	border-top: 1px solid var(--color_5);
	padding: 16px 18px;
	letter-spacing: 0.6px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 14px; /* 116.667% */
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .linkWithIcoBlock ul li a:hover
{
	color: var(--color_2);
}

/***/

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

/***/

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

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

/***/

header.headerCD .mobileMenuBlock .socialNetworkBlock
{
	background-color: var(--color_1);
}
header.headerCD .mobileMenuBlock .socialNetworkBlock .socialNetworkList
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 10px;
}

/***/

header.headerCD .mobileMenuBlock .otherLinkBlock
{
}
header.headerCD .mobileMenuBlock .otherLinkBlock .title
{
	margin-bottom: 15px;
	letter-spacing: 0.6px;
	line-height: 1.4rem;
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul
{
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li
{
	margin-top: 15px;
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li:first-child
{
	margin-top: 0;
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a
{
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color_1);
}
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a:hover,
header.headerCD .mobileMenuBlock .otherLinkBlock ul li a.active
{
	color: var(--color_2);
}

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

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

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

header.headerCD .mobileSubBlock
{
	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 .mobileSubBlock.open
{
	display: block;
	z-index: 1000;
}
/**/
header.headerCD .mobileSubBlock .closeBG
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
/**/
header.headerCD .mobileSubBlock .mobileContent
{
	position: absolute;
	display: block;
	border-radius: 4px;
	background-color: var(--color_white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	overflow: auto;
}
header.headerCD .mobileSubBlock.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 .mobileSubBlock .titleBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color_3);
	padding: 15px;
}
header.headerCD .mobileSubBlock .titleBlock .title
{
	line-height: 1.5;
	font-size: 1.8rem;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .mobileSubBlock .titleBlock .title .arrow
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	margin-right: 15px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
header.headerCD .mobileSubBlock .titleBlock button
{
	border: none;
	background-color: transparent;
	width: 30px;
	height: 30px;
}
header.headerCD .mobileSubBlock .titleBlock button
{
	border: none;
	background-color: transparent;
	width: 30px;
	height: 30px;
}

/***/

header.headerCD .mobileSubBlock .mobileContent ul
{
}
header.headerCD .mobileSubBlock .mobileContent ul li
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color_4);
	padding: 0 15px;
}
header.headerCD .mobileSubBlock .mobileContent ul li a
{
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 0;
	width: 100%;
	letter-spacing: 0.6px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 14px; /* 116.667% */
	text-transform: uppercase;
	text-align: left;
	color: var(--color_1);
}
header.headerCD .mobileSubBlock .mobileContent ul li a:hover
{
	color: var(--color_2);
}
header.headerCD .mobileSubBlock .mobileContent ul li a .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}
header.headerCD .mobileSubBlock .mobileContent ul li .toggleBtn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 2rem;
	color: var(--color_1);
	cursor: pointer;
}
/**/
header.headerCD .mobileSubBlock .mobileContent ul .backBtn
{
	padding: 15px;
}
header.headerCD .mobileSubBlock .mobileContent ul .backBtn a
{
	line-height: 1.5;
	font-size: 1.4rem;
	text-transform: uppercase;
}
header.headerCD .mobileSubBlock .mobileContent ul .backBtn a i
{
	margin-right: 10px;
}
/**/
header.headerCD .mobileSubBlock .mobileContent ul li .toggleBtn:hover
{
	color: var(--color_2);
}
header.headerCD .mobileSubBlock .mobileContent ul li .subCatalogBlock
{
	display: none;
	position: absolute;
	background-color: var(--color_white);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}
header.headerCD .mobileSubBlock .mobileContent ul li .subCatalogBlock.open
{
	display: block;
}

/***********************************************************************/
/*****  npBlock  *****/
/***********************************************************************/

.npBlock
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.npBlock .navigationLine
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	order: 1;
}
.npBlock .el_pageTitle_71438808
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	order: 2;
}
.npBlock.rt .navigationLine
{
	order: 2;
}
.npBlock.rt .el_pageTitle_71438808
{
	order: 1;
}

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

.navigationLine
{
}
.navigationLine .breadcrumbs
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 30px 0 24px 0;
}
.navigationLine .breadcrumbs li
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	letter-spacing: 0.5px;
	font-size: 1.1rem;
	color: var(--color_1);
}
.navigationLine .breadcrumbs li a
{
	color: var(--color_3);
}
.navigationLine .breadcrumbs li a:hover
{
	color: var(--color_2);
}
.navigationLine .breadcrumbs li .separator
{
	color: var(--color_3);
}

/***/

.navigationLine.offer .siteWidth
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 580px;
	column-gap: 100px;
}
.navigationLine.offer .offerInfoBlock
{
	border-left: 1px solid var(--color_3);
	padding-left: 20px;
}

/*****/

@media (max-width: 1730px)
{
	.navigationLine.offer .siteWidth
	{
		grid-template-columns: 1fr calc(140px + (580 - 140) * var(--width-coefficient));
		column-gap: calc(30px + (100 - 30) * var(--width-coefficient));
	}
}

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

	.navigationLine.offer .siteWidth
	{
		grid-template-columns: 1fr;
	}
	.navigationLine.offer .offerInfoBlock
	{
		display: none;
	}
}

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

.el_pageTitle_71438808
{
}
.el_pageTitle_71438808 h1
{
	padding: 16px 0 24px 0;
	font-family: var(--font-family-1);
	line-height: 5rem;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color_1);
}

/***/

.el_pageTitle_71438808.image
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 0;
	min-height: 420px;
}
.el_pageTitle_71438808.image::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1_30);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.el_pageTitle_71438808.image > *
{
	position: relative;
	z-index: 2;
}
.el_pageTitle_71438808.image h1
{
	text-align: center;
	color: var(--color_white);
}

/***/

.el_pageTitle2_71438808 h1
{
}
.el_pageTitle2_71438808 h1
{
	padding: 16px 0 24px 0;
	font-family: var(--font-family-1);
	letter-spacing: 1px;
	line-height: 2.8rem;
	font-size: 2.2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}

/*****/

@media (max-width: 1560px)
{
	.el_pageTitle_71438808.image
	{
		padding: calc(30px + (50 - 30) * var(--width-coefficient)) 0;
		min-height: calc(80px + (420 - 80) * var(--width-coefficient));
	}

	.el_pageTitle_71438808 h1
	{
		padding-bottom: calc(15px + (30 - 15) * var(--width-coefficient));

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

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

.asideBlockCD
{
}
.asideBlockCD .asideContent
{
	margin-bottom: 40px;
}

/****/

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

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

.asideBlockCD .asideMenuButtonsBlock button
{
	display: block;
	width: calc(50% - 10px);
	height: 32px;
	margin: 0 5px;
	font-family: var(--font-family-1);
	cursor: pointer;
}
.asideBlockCD .asideMenuButtonsBlock button .amount
{
	display: inline-block;
	border-radius: 100%;
	background-color: var(--color_2);
	min-width: 14px;
	height: 14px;
	padding: 2px;
	line-height: 8px;
	font-size: 0.8rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_white);
}
.asideBlockCD .asideMenuButtonsBlock button .amount.hide
{
	display: none;
}

/****/

.asideBlockCD .asideWidget
{
	border-bottom: 1px solid var(--color_3);
}
.asideBlockCD .asideWidget:first-child
{
	border-top: 1px solid var(--color_3);
}

/***/

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

	padding: 15px 0;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color_1);
	cursor: pointer;
}
.asideBlockCD .asideTitle.open
{
}
.asideBlockCD .asideTitle::after
{
	position: absolute;
	display: block;
	content: "\f107";
	font-family: "FontAwesome";
	font-size: 2rem;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.asideBlockCD .asideTitle.open::after
{
	content: "\f106";
}

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

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

/**/

.asideBlockCD .content
{
	display: none;
	border-bottom: none;
	padding-bottom: 15px;
}
.asideBlockCD .content.open
{
	display: block;
	border-bottom: 1px solid var(--color_4);
}

/***/

.asideBlockCD .content ul
{
}
.asideBlockCD .content ul li
{
	position: relative;
	margin-top: 10px;
}
.asideBlockCD .content ul li:first-child
{
	margin-top: 0;
}
.asideBlockCD .content ul li a
{
	display: inline-block;
	border-bottom: 1px solid transparent;
	padding-bottom: 4px;
	line-height: 1.2;
	font-size: 1.6rem;
	color: var(--color_1);
}
.asideBlockCD .content ul li a:hover,
.asideBlockCD .content ul li a.active
{
	border-color: var(--color_2);
}
.asideBlockCD .content ul li a .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
	width: 20px;
	height: 20px;
	line-height: 1;
	font-size: 1.9rem;
	color: var(--color_1);
}
.asideBlockCD .content ul li a:hover .ico,
.asideBlockCD .content ul li a.active .ico
{
	color: var(--color_2);
}
.asideBlockCD .content ul li a .ico svg
{
	width: 20px;
	height: 20px;
}
.asideBlockCD .content ul li a .ico svg.wishlistSvg path
{
	stroke: var(--color_1);
}
.asideBlockCD .content ul li a .ico .ico svg.compareSvg path
{
	fill: var(--color_1);
}
.asideBlockCD .content ul li a:hover .ico svg.wishlistSvg path,
.asideBlockCD .content ul li a.active .ico svg.wishlistSvg path
{
	stroke: var(--color_2);
}
.asideBlockCD .content ul li a:hover .ico .ico svg.compareSvg path,
.asideBlockCD .content ul li a.active .ico .ico svg.compareSvg path
{
	fill: var(--color_2);
}
.asideBlockCD .content ul li .toggleBtn
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	top: 0;
	right: 0;
	width: 14px;
	height: 20px;
	font-size: 2rem;
	cursor: pointer;
}
.asideBlockCD .content ul li .toggleBtn::before
{
	display: block;
	content: "\f107";
	font-family: "FontAwesome";
}
.asideBlockCD .content ul li .toggleBtn.open::before
{
	content: "\f106";
}
.asideBlockCD .content ul li ul
{
	display: none;
	padding-left: 15px;
}
.asideBlockCD .content ul li ul.open
{
	display: block;
}
.asideBlockCD .content ul li ul li,
.asideBlockCD .content ul li ul li:first-child
{
	margin-top: 10px;
}
.asideBlockCD .content ul li ul li a
{
}

/******/

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

/******/

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

/**/

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

/***/

.asideMenuParameterBlock .parameterListBlock .filterBlock
{
}
.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
{
	position: relative;
	display: inline-block;
	border: none;
	padding: 5px 0 5px 25px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.checked
{
	color: var(--color_2);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled
{
	opacity: 0.7;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled:hover
{
	color: var(--color_1);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a i
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	border: 1px solid var(--color_1);
	background-color: transparent;
	top: 6px;
	left: 0;
	width: 18px;
	height: 18px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a:hover i,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.checked i
{
	background-color: var(--color_1);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a i::before
{
	content: "";
	font-family: "FontAwesome";
	line-height: 1;
	font-size: 1rem;
	color: var(--color_1);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a:hover i::before,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.checked i::before
{
	content: "\f00c";
	color: var(--color_white);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled i::before
{
	position: relative;
	content: "\f05e";
	top: -1px;
	color: var(--color_1_50);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul li a.disabled:hover i::before
{
	color: var(--color_white_50);
}

/*****/

.asideMenuParameterBlock .parameterListBlock .filterBlock ul.size
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	row-gap: 4px;
	padding-right: 15%;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.size li
{
	margin: 0;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.size li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border: 1px solid var(--color_1);
	padding: 8px 10px;
	height: 100%;
	color: var(--color_1);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.size li a:hover,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.size li a.checked
{
	background-color: var(--color_1);
	color: var(--color_white);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.size li a i
{
	display: none;
}

/*****/

.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL
{
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li
{
	display: block;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a
{
	display: -ms-grid;
	display: grid;
	align-items: center;
	grid-template-columns: 30px auto;
	gap: 10px;
	padding: 0;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a:hover,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a.checked
{
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a span
{
	position: relative;
	display: block;
	border-radius: 100%;
	border: 1px solid transparent;
	width: 24px;
	height: 24px;
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a span::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	border: 1px solid transparent;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a:hover span::before,
.asideMenuParameterBlock .parameterListBlock .filterBlock ul.colorUL li a.checked span::before
{
	border-color: var(--color_1);
}

/*****/

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

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

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

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

.moreItem
{
}
.moreItem .innerWrapper
{
	position: relative;
	display: -ms-flex !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	height: 100%;
	min-height: 100px;
}
.moreItem .innerWrapper::before
{
	display: none !important;
}
.moreItem .innerWrapper > a
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
	text-align: center;
}
.moreItem .innerWrapper a > span
{
}
.moreItem .innerWrapper a .showMore
{
	display: block;
	border-bottom: 1px solid var(--color_6);
	padding-bottom: 7px;
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color_6);
}
.moreItem .innerWrapper a:hover .showMore
{
	border-color: var(--color_2);
	color: var(--color_2);
}
/**/
.moreItem .innerWrapper a .ico
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: var(--color_white);
	border-radius: 100%;
	width: 32px;
	height: 32px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.10);
}
.moreItem .innerWrapper a:hover .ico
{
	background-color: var(--color_2);
}
.moreItem .innerWrapper a .ico svg
{
	width: 10px;
	height: 10px;
}
.moreItem .innerWrapper a.show .ico svg
{
	transform: rotate(180deg);
}
.moreItem .innerWrapper a .ico svg path[stroke]
{
	stroke: var(--color_1);
}
.moreItem .innerWrapper a:hover .ico svg path[stroke]
{
	stroke: var(--color_white);
}
.moreItem .innerWrapper a .ico svg path[fill]
{
	fill: var(--color_1);
}
.moreItem .innerWrapper a:hover .ico svg path[fill]
{
	fill: var(--color_white);
}

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

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

.indexTopBanner
{
}
.indexTopBanner > div
{
	margin: 0 auto;
	max-width: 1920px;
}
.indexTopBanner .initBanner
{
	position: relative;
	margin: 0;
	width: 100%;
	max-height: 828px;
	overflow: hidden;
}
.indexTopBanner .initBanner .item
{
	display: none;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	min-height: 828px;
}
.indexTopBanner .initBanner .item::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1_20);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.indexTopBanner .initBanner .item video
{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.indexTopBanner .initBanner .item:first-child,
.indexTopBanner .initBanner.slick-slider .item
{
	display: -ms-flex;
	display: flex;
}
.indexTopBanner .initBanner .item .infoBlock
{
	position: relative;
	display: -ms-grid;
	display: grid;
	grid-template-columns: 36.2% 1fr;
	align-items: flex-end;
	width: 100%;
	padding-bottom: 240px;
	z-index: 2;
}
.indexTopBanner .initBanner .item .infoBlock .d2
{
	padding-left: 130px;
	padding-right: calc((100vw - var(--site-width-max-width)) / 2 + 15px);
}
.indexTopBanner .initBanner .item .infoBlock .title
{
	margin-top: 24px;
	line-height: 7rem;
	font-size: 6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_white);
}
.indexTopBanner .initBanner .item .infoBlock .btn
{
	margin-top: 24px;
}

@media (max-width: 1730px)
{
	.indexTopBanner .initBanner
	{
		max-height: calc(138px + (828 - 138) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item
	{
		min-height: calc(138px + (828 - 138) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item .infoBlock
	{
		grid-template-columns: calc(32% + (36.2 - 32) * var(--width-coefficient)) 1fr;
		padding-bottom: calc(50px + (240 - 50) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item .infoBlock .d2
	{
		padding-left: calc(0 + (130 - 0) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item .infoBlock .title
	{
		margin-top: calc(14px + (24 - 14) * var(--width-coefficient));
		line-height: calc(24px + (70 - 24) * var(--width-coefficient));
		font-size: calc(20px + (60 - 20) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item .infoBlock .btn
	{
		margin-top: calc(14px + (24 - 14) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.indexTopBanner .initBanner .item
	{
		background-position: center right;
	}
	.indexTopBanner .initBanner .item .infoBlock
	{
		grid-template-columns: 1fr;
	}
	.indexTopBanner .initBanner .item .infoBlock .d2
	{
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media (max-width: 480px)
{
	.indexTopBanner .initBanner .item .infoBlock .btn
	{
		width: auto;
		max-width: unset;
		height: 28px;
		font-size: 1.2rem;
	}
}

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

.el_ourMissionBlock_71438808
{
}
.el_ourMissionBlock_71438808 .innerWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: calc((100vw - var(--site-width-max-width)) / 2 + 15px) 30% 1fr;
	min-height: calc((100vw * 0.3302083333333333) + 1px);
}
/**/
.el_ourMissionBlock_71438808 .clearBlock
{
}
/**/
.el_ourMissionBlock_71438808 .infoBlock
{
	display: -ms-flex;
	display: flex;
	align-items: flex-end;
	padding: 80px 80px 80px 0;
}
.el_ourMissionBlock_71438808 .infoBlock .lmIco
{
	margin-bottom: 20px;
}
.el_ourMissionBlock_71438808 .infoBlock .el_titleBlock_71438808 span
{
	position: relative;
	left: -3px;
}
.el_ourMissionBlock_71438808 .infoBlock .text
{
	max-width: 400px;
}
.el_ourMissionBlock_71438808 .infoBlock .btnLine
{
	margin-top: 44px;
}
/**/
.el_ourMissionBlock_71438808 .imgBlock
{
	height: 100%;
}
.el_ourMissionBlock_71438808 .imgBlock img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*****/

@media (max-width: 1730px)
{
	.el_ourMissionBlock_71438808 .innerWrapper
	{
	}
	/**/
	.el_ourMissionBlock_71438808 .infoBlock
	{
		padding: calc(50px + (80 - 50) * var(--width-coefficient)) calc(70px + (80 - 70) * var(--width-coefficient)) calc(50px + (80 - 50) * var(--width-coefficient)) 0;
	}
	.el_ourMissionBlock_71438808 .infoBlock .lmIco
	{
		margin-bottom: calc(12px + (20 - 12) * var(--width-coefficient));
	}
	.el_ourMissionBlock_71438808 .infoBlock .btnLine
	{
		margin-top: calc(30px + (44 - 30) * var(--width-coefficient));
	}
}
@media (max-width: 767px)
{
	.el_ourMissionBlock_71438808 .innerWrapper
	{
		grid-template-areas: "imgBlock imgBlock"
							  "clearBlock infoBlock";
		grid-template-columns: calc((100vw - var(--site-width-max-width)) / 2 + 15px) 1fr;
		min-height: auto;
	}
	.el_ourMissionBlock_71438808 .clearBlock
	{
		grid-area: clearBlock;
		order: 2;
	}
	.el_ourMissionBlock_71438808 .infoBlock
	{
		grid-area: infoBlock;
		order: 2;
	}
	.el_ourMissionBlock_71438808 .imgBlock
	{
		grid-area: imgBlock;
		grid-column-start: 1;
		grid-column-end: 3;
		min-height: calc((100vw * 0.625) + 1px);
		height: auto;
		order: 1;
	}
}
@media (max-width: 575px)
{
	.el_ourMissionBlock_71438808 .innerWrapper
	{
		grid-template-columns: 1fr;
	}
	.el_ourMissionBlock_71438808 .clearBlock
	{
		display: none;
	}
	.el_ourMissionBlock_71438808 .infoBlock
	{
		padding: 50px 15px;
	}
}

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

.el_offerSliderBlock_71438808
{
}

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

.el_catalogsBlock_71438808
{
	margin: 0 auto;
	max-width: 1920px;
	overflow: hidden;
}
.el_pageTitle_71438808 + .el_catalogsBlock_71438808
{
	padding-top: 0 !important;
}


.el_catalogsBlock_71438808 .catalogListBlock
{
}
.el_catalogsBlock_71438808 .catalogListBlock.slick-slider::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_5);
	top: -1px;
	left: calc(((100vw - var(--site-width-max-width)) / 2 + 15px) * -1);
	bottom: -1px;
	width: calc((100vw - var(--site-width-max-width)) / 2 + 15px);
	z-index: 5;
}
.el_catalogsBlock_71438808 .catalogListBlock.slick-slider .slick-list
{
	overflow: unset;
}

@media (max-width: 575px)
{
	.el_catalogsBlock_71438808 .catalogListBlock
	{
		padding-right: 40%;
	}
}

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

.el_shopAdvantage_71438808
{
}
.el_shopAdvantage_71438808 .shopAdvantageList
{
}
.el_shopAdvantage_71438808 .shopAdvantageList::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	z-index: 5;
}

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

.el_shopAdvantageListItem_71438808
{
	position: relative;
	float: left;
	padding: 0 50px 50px 50px;
	width: calc(100% / 3);
	height: 100%;
}
.el_shopAdvantageListItem_71438808::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_2);
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	z-index: 1;
}
.el_shopAdvantageListItem_71438808 .innerWrapper
{
	margin: 0 auto;
	max-width: 400px;
}

/**/
.el_shopAdvantageListItem_71438808 .imageBlock
{
	margin: 0 auto;
	max-width: 80px;
}
/**/
.el_shopAdvantageListItem_71438808 .title
{
	margin-top: 18px;
	letter-spacing: 2px;
	line-height: 2rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_white);
}
.el_shopAdvantageListItem_71438808 .description
{
	margin-top: 22px;
}
.el_shopAdvantageListItem_71438808 .description,
.el_shopAdvantageListItem_71438808 .description *
{
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 300;
	text-align: center;
	color: var(--color_white);
}

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

@media (max-width: 1730px)
{
	.el_shopAdvantageListItem_71438808
	{
		padding: 0 calc(30px + (50 - 30) * var(--width-coefficient)) calc(30px + (50 - 30) * var(--width-coefficient)) calc(30px + (50 - 30) * var(--width-coefficient));
	}
	/**/
	.el_shopAdvantageListItem_71438808 .imageBlock
	{
		max-width: calc(50px + (80 - 50) * var(--width-coefficient));
	}
	/**/
	.el_shopAdvantageListItem_71438808 .title
	{
		line-height: calc(14px + (20 - 14) * var(--width-coefficient));
		font-size: calc(12px + (16 - 12) * var(--width-coefficient));
	}
	.el_shopAdvantageListItem_71438808 .description
	{
		margin-top: calc(8px + (22 - 8) * var(--width-coefficient));
	}
	.el_shopAdvantageListItem_71438808 .description,
	.el_shopAdvantageListItem_71438808 .description *
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (14 - 11) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_shopAdvantageListItem_71438808
	{
		width: 50%;
	}
}
@media (max-width: 767px)
{
	.el_shopAdvantageListItem_71438808
	{
		width: 100%;
	}
}

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

.el_subCatalogListBlock_71438808
{
	margin-bottom: 30px;
}

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

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

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

.el_subCatalogListBlock_71438808
{
	margin-bottom: 24px;
}
.el_subCatalogListBlock_71438808 .catalogListBlock
{
}

.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.moreItem.hidden.h0
{
	display: none;
}

@media (max-width: 1730px)
{
	.el_subCatalogListBlock_71438808 .catalogListBlock.row
	{
		margin-left: calc((5px + (15 - 5) * var(--width-coefficient)) * -1);
		margin-right: calc((5px + (15 - 5) * var(--width-coefficient)) * -1);
	}
	.el_subCatalogListBlock_71438808 .catalogListBlock .col
	{
		padding-left: calc(5px + (15 - 5) * var(--width-coefficient));
		padding-right: calc(5px + (15 - 5) * var(--width-coefficient));
	}
}
@media (min-width: 1441px)
{
	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.hidden.h1920,
	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.moreItem.hidden.mh1920
	{
		display: none;
	}

	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.moreItem .innerWrapper a .showMore.mh1920,
	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.moreItem .innerWrapper a .showing.mh1920
	{
		display: block;
	}
}
@media (max-width: 1440px) and (min-width: 1367px)
{
	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.hidden.h1440,
	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.moreItem.hidden.mh1440
	{
		display: none;
	}

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

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

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

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

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

	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.moreItem .innerWrapper a .showMore.mh480,
	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.moreItem .innerWrapper a .showing.mh480
	{
		display: block;
	}
}


/*******/


@media (max-width: 767px)
{
	.el_subCatalogListBlock_71438808 .catalogListBlock .el_catalogListItem2_71438808.moreItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

.typeContentBlock1.inRow3 .el_catalogListItem_71438808
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}

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

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

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

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

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

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

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

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

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

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

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

.el_catalogListItem_71438808
{
	float: left;
	width: calc(100% / 3);
}
.el_catalogListItem_71438808 .innerWrapper
{
	position: relative;
}
.el_catalogListItem_71438808 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1_20);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	-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;
}
.el_catalogListItem_71438808 .innerWrapper:hover::before
{
	background-color: var(--color_1_50);
}

/**/
.el_catalogListItem_71438808 .innerWrapper .imageBlock
{
}
.el_catalogListItem_71438808 .innerWrapper .imageBlock .img_wrap
{
}
.el_catalogListItem_71438808 .innerWrapper .imageBlock .img_wrap .el
{
	overflow: hidden;
}
.el_catalogListItem_71438808 .innerWrapper .imageBlock .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;

	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_71438808 .innerWrapper .imageBlock:hover .img_wrap .el img
{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
/**/
.el_catalogListItem_71438808 .innerWrapper .infoBlock
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 17px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.el_catalogListItem_71438808 .innerWrapper .infoBlock > span
{
	display: block;
	width: 100%;
}
.el_catalogListItem_71438808 .innerWrapper .title
{
	display: block;
	line-height: 2.8rem;
	font-size: 2.2rem;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_white);
}
.el_catalogListItem_71438808 .innerWrapper .btnLine
{
	display: block;
	opacity: 0;
	margin-top: 0;
	height: 0;
	text-align: center;
	-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;
}
.el_catalogListItem_71438808 .innerWrapper:hover .btnLine
{
	opacity: 1;
	margin-top: 17px;
	height: 100%;
}
.el_catalogListItem_71438808 .innerWrapper .btnLine .btn
{
}

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

@media (max-width: 1730px)
{
	.el_catalogListItem_71438808 .innerWrapper .infoBlock
	{
		gap: 17px;
	}
	.el_catalogListItem_71438808 .innerWrapper .title
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}
	.el_catalogListItem_71438808 .innerWrapper:hover .btnLine
	{
		margin-top: 17px;
	}
}
@media (max-width: 991px)
{
	.el_catalogListItem_71438808
	{
		width: 50%;
	}
	.el_catalogListItem_71438808 .innerWrapper .btnLine .btn
	{
		max-width: 90%;
	}
}
@media (max-width: 575px)
{
	.el_catalogListItem_71438808
	{
		width: 100%;
	}
}

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

.typeContentBlock1.inRow8 .el_catalogListItem2_71438808
{
	-ms-flex: 0 0 calc(100% / 8);
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
	margin-bottom: 24px;
}
@media (max-width: 1440px)
{
	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808
	{
		-ms-flex: 0 0 calc(100% / 7);
		flex: 0 0 calc(100% / 7);
		max-width: calc(100% / 7);
	}
}
@media (max-width: 1366px)
{
	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808
	{
		-ms-flex: 0 0 calc(100% / 7);
		flex: 0 0 calc(100% / 7);
		max-width: calc(100% / 7);
	}
}
@media (max-width: 1200px)
{
	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808
	{
		-ms-flex: 0 0 calc(100% / 5);
		flex: 0 0 calc(100% / 5);
		max-width: calc(100% / 5);
	}
}
@media (max-width: 991px)
{
	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808.moreItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 0;
	}
	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808.moreItem .innerWrapper
	{
		min-height: auto;
	}
}
@media (max-width: 767px)
{
	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 480px)
{
	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
/*@media (max-width: 360px)*/
/*{*/
/*	.typeContentBlock1.inRow8 .el_catalogListItem2_71438808*/
/*	{*/
/*		-ms-flex: 0 0 calc(100% / 2);*/
/*		flex: 0 0 calc(100% / 2);*/
/*		max-width: calc(100% / 2);*/
/*	}*/
/*}*/

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

.el_catalogListItem2_71438808
{
}
.el_catalogListItem2_71438808.hidden
{
}
.el_catalogListItem2_71438808 .innerWrapper
{
	position: relative;
	display: block;
	background-color: var(--color_4);
	padding: 20px;
	height: 100%;
}
.el_catalogListItem2_71438808 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: transparent;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	-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;
}
.el_catalogListItem2_71438808 .innerWrapper:hover::before
{
	background-color: var(--color_1_25);
}
.el_catalogListItem2_71438808 .innerWrapper .img_wrap
{
	/*padding-bottom: 115.3846153846154%;*/
}
.el_catalogListItem2_71438808 .innerWrapper .img_wrap .el
{
}
.el_catalogListItem2_71438808 .innerWrapper .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.el_catalogListItem2_71438808 .innerWrapper:hover .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/**/
.el_catalogListItem2_71438808 .innerWrapper .title
{
	display: block;
	margin-top: 20px;
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	color: var(--color_1);
}
.el_catalogListItem2_71438808 .innerWrapper:hover .title
{
	color: var(--color_1);
}

@media (max-width: 1730px)
{
	.el_catalogListItem2_71438808 .innerWrapper
	{
		padding: calc(10px + (20 - 10) * var(--width-coefficient)) calc(5px + (20 - 5) * var(--width-coefficient));
	}
	.el_catalogListItem2_71438808 .innerWrapper .title
	{
		font-size: calc(10px + (14 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 1440px)
{
	.el_catalogListItem2_71438808.moreItem .innerWrapper
	{
		padding: calc(10px + (20 - 10) * var(--width-coefficient)) !important;
	}
}
@media (max-width: 991px)
{
	.el_catalogListItem2_71438808.moreItem .innerWrapper
	{
		padding: 0 !important;
		background-color: transparent;
	}
	.el_catalogListItem2_71438808.moreItem .innerWrapper a .ico
	{
		display: none;
	}
}

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

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

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

/*****/

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

/*****/

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

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

.el_servicesBlock_71438808
{
}
.el_servicesBlock_71438808 .servicesList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

@media (max-width: 991px)
{
	.el_servicesBlock_71438808 .servicesList
	{
		grid-template-columns: 1fr;
	}
}

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

.el_serviceListItem_71438808
{
}
.el_serviceListItem_71438808:nth-child(3n)
{
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: 1;
	grid-row-end: 3;
}
.el_serviceListItem_71438808 .itemWrapper
{
	position: relative;
	height: 100%;
}
.el_serviceListItem_71438808 .itemWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1_20);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	-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;
}
.el_serviceListItem_71438808 .itemWrapper:hover::before
{
	background-color: var(--color_1_50);
}
/**/
.el_serviceListItem_71438808 .itemWrapper .imageBlock
{
}
.el_serviceListItem_71438808 .itemWrapper .imageBlock .img_wrap
{
	padding-bottom: 48.68891537544696%;
}
.el_serviceListItem_71438808:nth-child(3n) .itemWrapper .imageBlock .img_wrap
{
	padding-bottom: 100%;
}
.el_serviceListItem_71438808 .itemWrapper .imageBlock .img_wrap .el
{
	overflow: hidden;
}
.el_serviceListItem_71438808 .itemWrapper .imageBlock .img_wrap .el img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;

	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_serviceListItem_71438808 .itemWrapper .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_serviceListItem_71438808 .itemWrapper .infoBlock
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 17px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.el_serviceListItem_71438808 .itemWrapper .infoBlock > div
{
	display: block;
	width: 100%;
}
.el_serviceListItem_71438808 .itemWrapper .title
{
	display: block;
	line-height: 2.8rem;
	font-size: 2.2rem;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_white);
}
.el_serviceListItem_71438808 .itemWrapper .text
{
	margin-top: 11px;
	text-align: center;
}
.el_serviceListItem_71438808 .itemWrapper .btnLine
{
	display: block;
	opacity: 0;
	margin-top: 0;
	height: 0;
	text-align: center;
	transition: all 0.35s ease;
}
.el_serviceListItem_71438808 .itemWrapper:hover .btnLine
{
	opacity: 1;
	margin-top: 17px;
	height: 100%;
	transition: all 0.35s ease;
}
.el_serviceListItem_71438808 .itemWrapper .btnLine .btn
{
}

/*****/

@media (max-width: 1730px)
{
	.el_serviceListItem_71438808 .itemWrapper .title
	{
		line-height: calc(18px + (28 - 18) * var(--width-coefficient));
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}
	.el_serviceListItem_71438808 .itemWrapper .text
	{
		margin-top: calc(5px + (11 - 5) * var(--width-coefficient));
	}
	.el_serviceListItem_71438808 .itemWrapper:hover .btnLine
	{
		margin-top: calc(10px + (17 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_serviceListItem_71438808:nth-child(3n)
	{
		grid-column-start: unset;
		grid-column-end: unset;
		grid-row-start: unset;
		grid-row-end: unset;
	}
	.el_serviceListItem_71438808:nth-child(3n) .itemWrapper .imageBlock .img_wrap
	{
		padding-bottom: 48.68891537544696%;
	}
	.el_serviceListItem_71438808 .itemWrapper .btnLine
	{
		opacity: 1;
		margin-top: calc(10px + (17 - 10) * var(--width-coefficient));
		height: 100%;
	}
	.el_serviceListItem_71438808 .itemWrapper .btnLine .btn
	{
		max-width: 90%;
		width: auto;
		min-width: 120px;
	}
}

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

.el_ourClientsBlock_71438808
{
}
.el_ourClientsBlock_71438808 .ourClientsList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
.el_ourClientsBlock_71438808 .ourClientsList .el_articleListItem2_71438808
{
}

.el_ourClientsBlock_71438808 .ourClientsList .el_articleListItem2_71438808:nth-child(2n) .itemWrapper
{
	background-color: var(--color_1);
}

.el_ourClientsBlock_71438808 .linkLine
{
	margin-top: 30px;
	text-align: center;
}
.el_ourClientsBlock_71438808 .linkLine.hidden
{
	display: none;
}
.el_ourClientsBlock_71438808 .linkLine a
{
	font-weight: 700;
	text-decoration: underline;
}

/*****/

@media (min-width: 768px)
{
	.el_ourClientsBlock_71438808 .ourClientsList .el_articleListItem2_71438808.hidden.h1920
	{
		display: none;
	}
}

@media (max-width: 767px)
{
	.el_ourClientsBlock_71438808 .ourClientsList .el_articleListItem2_71438808.hidden.h767
	{
		display: none;
	}

	.el_ourClientsBlock_71438808 .ourClientsList
	{
		grid-template-columns: repeat(3, 1fr);
	}
}

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

.el_becomePartnerBlock_71438808
{
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.el_becomePartnerBlock_71438808::before
{
	position: absolute;
	display: block;
	background-color: var(--color_1_50);
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.el_becomePartnerBlock_71438808 .innerWrapper
{
	position: relative;
	max-width: 1415px;
	z-index: 5;
}
.el_becomePartnerBlock_71438808 .becomePartnerList
{
	position: relative;
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-content: center;
	column-gap: 130px;
	row-gap: 65px;
	margin: 0 auto;
	padding: 0 40px;
}
.el_becomePartnerBlock_71438808 .line
{
	border-color: var(--color_2);
	margin: 70px 0;
}
.el_becomePartnerBlock_71438808 .btnLine
{
	text-align: center;
}

/*****/

@media (max-width: 1730px)
{
	.el_becomePartnerBlock_71438808 .becomePartnerList
	{
		column-gap: calc(60px + (130 - 60) * var(--width-coefficient));
		row-gap: calc(50px + (65 - 50) * var(--width-coefficient));
		padding: 0 calc(0 + (40 - 0) * var(--width-coefficient));
	}
	.el_becomePartnerBlock_71438808 .line
	{
		margin: calc(45px + (70 - 45) * var(--width-coefficient)) 0;
	}
}
@media (max-width: 767px)
{
	.el_becomePartnerBlock_71438808 .becomePartnerList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.el_becomePartnerListItem_71438808
{
}
.el_becomePartnerListItem_71438808 .title
{
	line-height: 5rem;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_white);
}
.el_becomePartnerListItem_71438808 .title span
{
	line-height: 2.9rem;
	font-size: 2.2rem;
	text-transform: unset;
}
.el_becomePartnerListItem_71438808 .text
{
	margin-top: 5px;
	text-align: center;
}

/*****/

@media (max-width: 1730px)
{
	.el_becomePartnerListItem_71438808 .title
	{
		line-height: calc(24px + (50 - 24) * var(--width-coefficient));
		font-size: calc(20px + (40 - 20) * var(--width-coefficient));
	}
	.el_becomePartnerListItem_71438808 .title span
	{
		line-height: calc(14px + (29 - 14) * var(--width-coefficient));
		font-size: calc(12px + (22 - 12) * var(--width-coefficient));
	}
	.el_becomePartnerListItem_71438808 .text
	{
		margin-top: calc(2px + (5 - 2) * var(--width-coefficient));
	}
}

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

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

.offerOrderBlockCD
{
	margin-bottom: 30px;
}

/***/

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

/***/

.offerOrderBlockCD .innerWrapper
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}
/**/
.offerOrderBlockCD .innerWrapper > div
{
	position: relative;
}
.offerOrderBlockCD .innerWrapper .title
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 0;
	font-size: 1.5rem;
	color: var(--color_1);
	cursor: pointer;
}
.offerOrderBlockCD .innerWrapper .title::after
{
	display: block;
	content: "\f107";
	font-family: "FontAwesome";
}
.offerOrderBlockCD .innerWrapper .title.open::after
{
	content: "\f106";
}
.offerOrderBlockCD .innerWrapper ul
{
	position: absolute;
	display: none;
	background-color: var(--color_4);
	top: 100%;
	right: 0;
	padding: 20px;
	min-width: 180px;
	box-shadow: 0 5px 15px var(--color_1_10);
	z-index: 100;
}
.offerOrderBlockCD .innerWrapper ul.open
{
	display: block;
}
.offerOrderBlockCD .innerWrapper ul li
{
	margin-top: 8px;
	letter-spacing: 1px;
	line-height: 1.8rem;
	font-size: 1.4rem;
	text-align: right;
	color: var(--color_1);
	cursor: pointer;
}
.offerOrderBlockCD .innerWrapper ul li:first-child
{
	margin-top: 0;
}
.offerOrderBlockCD .innerWrapper ul li:hover,
.offerOrderBlockCD .innerWrapper ul li.active
{
	color: var(--color_2);
}

@media (max-width: 991px)
{
	.offerOrderBlockCD
	{
		position: fixed;
		border: 1px solid var(--color_2);
		background-color: var(--color_white);
		border-radius: 0;
		top: 0;
		right: -100%;
		padding: 0 10px 20px 10px;
		height: 100%;
		width: 100%;
		opacity: 0;
		overflow: auto;
		z-index: 1000;
		transition: all 0.7s ease 0s;
	}
	.offerOrderBlockCD.open
	{
		right: 0;
		opacity: 1;
	}
	.offerOrderBlockCD.open .closeButton
	{
		display: -ms-flex;
		display: flex;
		justify-content: flex-end;
	}
	.offerOrderBlockCD .innerWrapper
	{
		display: block;
	}
	.offerOrderBlockCD .innerWrapper .title
	{
		display: block;
		margin-bottom: 15px;
		text-align: right;
	}
	.offerOrderBlockCD .innerWrapper .title::after
	{
		display: none;
	}
	.offerOrderBlockCD .innerWrapper ul
	{
		position: static;
		display: block;
	}
}

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

.el_activeFilterBlock_71438808
{
	margin-bottom: 20px;
}
.el_activeFilterBlock_71438808 .innerWrapper
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.el_activeFilterBlock_71438808 a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	line-height: 1;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_activeFilterBlock_71438808 a:hover
{
	color: var(--color_2);
}
.el_activeFilterBlock_71438808 a svg
{
	width: 14px;
	height: 14px;
}
.el_activeFilterBlock_71438808 a svg path[fill]
{
	fill: var(--color_1);
}
.el_activeFilterBlock_71438808 a svg path[stroke]
{
	fill: var(--color_1);
}
.el_activeFilterBlock_71438808 a:hover svg path[fill]
{
	fill: var(--color_2);
}
.el_activeFilterBlock_71438808 a:hover svg path[stroke]
{
	fill: var(--color_2);
}
.el_activeFilterBlock_71438808 a.resetFilters
{
	border-bottom: 1px solid var(--color_2);
	padding-bottom: 4px;
	color: var(--color_2);
}
.el_activeFilterBlock_71438808 a.resetFilters:hover
{
	border-color: var(--color_6);
	color: var(--color_6);
}

/*****/

@media (max-width: 1730px)
{
	.el_activeFilterBlock_71438808 a
	{
		font-size: calc(13px + (16 - 13) * var(--width-coefficient));
	}
	.el_activeFilterBlock_71438808 a svg
	{
		width: calc(10px + (15 - 10) * var(--width-coefficient));
		height: calc(10px + (15 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_activeFilterBlock_71438808
	{
		margin-bottom: 15px;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

.typeContentBlock2.inRow3 .el_offerListItem_71438808
{
	-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_71438808
{
	margin-bottom: 0;
}

@media (max-width: 767px)
{
	.typeContentBlock2.inRow3 .el_offerListItem_71438808
	{
		-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;

	background-color: var(--color_1);
	padding: 2px 8px 3px 8px;
	width: auto;
	min-height: 24px;
	letter-spacing: 2px;
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_white);
}
/*.wobbler.text.newArrival*/
/*{*/
/*	background-color: var(--color_5);*/
/*	color: var(--color_white);*/
/*}*/
/*.wobbler.text.action*/
/*{*/
/*	background-color: var(--color_8);*/
/*	color: var(--color_white);*/
/*}*/
/*.wobbler.text.superPrice*/
/*{*/
/*	background-color: var(--color_7);*/
/*	color: var(--color_white);*/
/*}*/
/*.wobbler.topSales*/
/*{*/
/*	background-color: var(--color_6);*/
/*	color: var(--color_white);*/
/*}*/
.wobbler.text.discount
{
}
.wobbler.text.discount.hidden
{
	display: none;
}

/*** wobbler 2 ***/

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

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

@media (max-width: 1730px)
{
	.wobbler.text
	{
		min-height: calc(14px + (24 - 14) * var(--width-coefficient));
		font-size: calc(8px + (14 - 8) * var(--width-coefficient)) !important;
	}
}
/*@media (max-width: 500px)*/
/*{*/
/*	.el_offerListItem_71438808 .wobbler.text*/
/*	{*/
/*		padding: 5px 5px;*/
/*		width: auto;*/
/*		height: 20px;*/
/*		line-height: 1.1em;*/
/*		font-weight: 600;*/
/*		font-size: 1rem;*/
/*	}*/
/*}*/
@media (max-width: 400px)
{
	.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton a
	{
		font-size: 1.4rem;
	}
}
/*@media (max-width: 360px)*/
/*{*/
/*	.el_offerListItem_71438808 .wobbler.text*/
/*	{*/
/*		padding: 3px 3px;*/
/*		height: 18px;*/
/*		line-height: 1;*/
/*		font-size: 0.8rem;*/
/*	}*/
/*}*/

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

.offerListBlock
{
}
.offerListBlock.emptyList
{
}

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

.el_offerListItem_71438808
{
}
.el_offerListItem_71438808.hide
{
	display: none;
}
.el_offerListItem_71438808 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.el_offerListItem_71438808 .innerWrapper:hover
{
	z-index: 20;
}
.el_offerListItem_71438808.slick-slide .innerWrapper
{
}
.el_offerListItem_71438808 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_white);
	top: 50%;
	left: 50%;
	width: calc(100% + 44px);
	height: calc(100% + 44px);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.el_offerListItem_71438808 .innerWrapper:hover::before
{
	opacity: 1;
	z-index: 3;
}
.el_offerListItem_71438808.slick-slide .innerWrapper::before
{
	background-color: transparent;
}

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

/**/
.el_offerListItem_71438808 .innerWrapper .combinedGoodsColorsBlock
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	gap: 10px;
	background-color: var(--color_white);
	padding: 4px;
	left: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
	z-index: -1;
}
.el_offerListItem_71438808 .innerWrapper:hover .combinedGoodsColorsBlock
{
	opacity: 1;
	z-index: 5;
}
.el_offerListItem_71438808 .innerWrapper .combinedGoodsColorsBlock .element
{
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	width: 26px;
	height: 26px;
}
/**/
.el_offerListItem_71438808 .innerWrapper .infoBlock
{
	position: relative;
	padding-top: 10px;
	z-index: 5;
}
/**/
.el_offerListItem_71438808 .innerWrapper .title
{
	height: 48px;
	overflow: hidden;
}
.el_offerListItem_71438808 .innerWrapper .title a
{
	display: inline-block;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color_1);
}
.el_offerListItem_71438808 .innerWrapper .title a:hover
{
	color: var(--color_2);
}
/**/
.el_offerListItem_71438808 .innerWrapper .priceLineBlock
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	row-gap: 15px;
	margin-top: 12px;
}
.el_offerListItem_71438808 .innerWrapper .priceLine
{
}
.el_offerListItem_71438808 .innerWrapper .priceLine .price,
.el_offerListItem_71438808 .innerWrapper .priceLine .price0
{
	display: inline-block;
	letter-spacing: 0.55px;
	line-height: 2.8rem;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color_1);
}
.el_offerListItem_71438808 .innerWrapper .priceLine .oldPrice,
.el_offerListItem_71438808 .innerWrapper .priceLine .oldPrice0
{
	display: inline-block;
	margin-left: 5px;
	line-height: 1.2;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: line-through;
	color: var(--color_2);
}
.el_offerListItem_71438808 .innerWrapper .priceLine .oldPrice.hide,
.el_offerListItem_71438808 .innerWrapper .priceLine .oldPrice0.hide
{
	display: none;
}
.el_offerListItem_71438808 .innerWrapper .priceTitle
{
	letter-spacing: 0.5px;
	line-height: 1.2rem;
	font-size: 1rem;
	font-weight: 500;
	color: var(--color_1);
}
/**/
.el_offerListItem_71438808 .innerWrapper .rateBlock
{
	margin-top: 10px;
}
.el_offerListItem_71438808 .innerWrapper .rateBlock > a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}
.el_offerListItem_71438808 .innerWrapper .rateBlock > a .amount
{
	letter-spacing: 1px;
	line-height: 1;
	font-size: 0.9rem;
	color: var(--color_1);
}
/**/
.el_offerListItem_71438808 .innerWrapper .openBlock
{
	position: absolute;
	display: none;
	background-color: var(--color_white);
	top: 100%;
	left: -22px;
	padding: 10px 22px 22px 22px;
	width: calc(100% + 44px);
	z-index: 10;
}
.el_offerListItem_71438808 .innerWrapper:hover .openBlock
{
	display: block;
}
.el_offerListItem_71438808.slick-slide .innerWrapper:hover .openBlock
{
	display: none;
}
/**/
.el_offerListItem_71438808 .innerWrapper .buyBlock
{
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .modifications
{
	margin-top: 10px;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .modifications li
{
	border: 1px solid var(--color_1);
	padding: 4px 6px;
	font-size: 1.1rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_1);
	cursor: pointer;
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .modifications li:hover,
.el_offerListItem_71438808 .innerWrapper .buyBlock .modifications li.active
{
	border: 1px solid var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .modifications li.notAvailable
{
	border: 1px solid var(--color_1);
	color: var(--color_7);
}
/**/
.el_offerListItem_71438808 .innerWrapper .buyBlock .addСartBtn
{
	position: relative;
	margin-top: 10px;
	width: 100%;
	z-index: 21; /*Что бы тень не обрезалась openBlock*/
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .addСartBtn svg
{
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .addСartBtn svg path[stroke]
{
	stroke: var(--color_white);
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .addСartBtn svg path[fill]
{
	fill: var(--color_white);
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .addСartBtn.disabled svg path[stroke]
{
	stroke: var(--color_2_50);
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .addСartBtn.disabled svg path[fill]
{
	fill: var(--color_2_50);
}
/**/
.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton
{
	margin-top: 10px;
	text-align: center;
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton a.disabled
{
	color: var(--color_2_50);
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton a svg
{
	margin-right: 5px;
	width: 21px;
	height: 22px;
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton a svg path
{
	stroke: var(--color_2);
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton a:hover svg path
{
	stroke: var(--color_1);
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton a.disabled svg path
{
	stroke: var(--color_2_50);
}
.el_offerListItem_71438808 .innerWrapper .buyBlock .fastOrderButton a span
{
	position: relative;
	top: 2px;
}

/*****/

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

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

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

	.el_offerListItem_71438808 .innerWrapper:hover .openBlock
	{
		display: none;
	}
}
@media (max-width: 520px)
{
	.el_offerListItem_71438808 .innerWrapper .priceLineBlock
	{
		grid-template-columns: 1fr;
	}
}

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

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

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

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

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

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

.el_articleCatalogListBlock_71438808
{
}

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

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

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

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

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

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

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

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

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

.el_articleListBlock_71438808
{
}

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

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

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

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

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

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

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

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

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

.el_articleListItem2_71438808
{
}
.el_articleListItem2_71438808 .itemWrapper
{
	padding: 10px;
}

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

.el_articleContent_71438808
{
}
/**/
.el_articleContent_71438808 .textBlock
{
	margin: 0 auto;
	max-width: 840px;
}
/**/
.el_articleContent_71438808 .btnLine
{
	margin-top: 50px;
	text-align: center;
}

/***********************************************************************/
/*****                     serviceContent                          *****/
/***********************************************************************/

.el_serviceContent_71438808
{
}
.el_serviceContent_71438808 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
	min-height: calc((100vw * 0.4479166666666667) + 1px);
}
.el_serviceContent_71438808 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1_30);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.el_serviceContent_71438808 .innerWrapper > *
{
	position: relative;
	z-index: 5;
}
/***/
.el_serviceContent_71438808 .innerWrapper .pageTitle
{
	max-width: 840px;
}
.el_serviceContent_71438808 .innerWrapper .pageTitle h1
{
	color: var(--color_white);
}
.el_serviceContent_71438808 .innerWrapper .text
{
	max-width: 840px;
}
.el_serviceContent_71438808 .innerWrapper .text.staticText
{
	color: var(--color_white);
}
.el_serviceContent_71438808 .innerWrapper .btnLine
{
	margin-top: 50px;
	text-align: center;
}

/********/

@media (max-width: 575px)
{
	.el_serviceContent_71438808 .innerWrapper
	{
		background-image: none !important;
	}
	.el_serviceContent_71438808 .innerWrapper::before
	{
		background-color: var(--color_1_50);
	}
	/*.el_serviceContent_71438808 .innerWrapper .pageTitle h1*/
	/*{*/
	/*	color: var(--color_1);*/
	/*}*/
	/*.el_serviceContent_71438808 .innerWrapper .text.staticText*/
	/*{*/
	/*	color: var(--color_1);*/
	/*}*/
}

/***********************************************************************/
/*****                     ourPartnersList                         *****/
/***********************************************************************/

.el_ourPartnersListBlock_71438808
{
}
.el_ourPartnersListBlock_71438808 .ourPartnersList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 145px;
	row-gap: 110px;
}

/*****/

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

/*******/

.ourPartnersItem
{
}
.ourPartnersItem .innerWrapper
{
	/*display: -ms-flex;*/
	/*display: flex;*/
	/*flex-direction: column;*/
	/*width: 100%;*/
	/*min-height: 100%;*/
}
/**/
.ourPartnersItem .title
{
	letter-spacing: 0.5px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
.ourPartnersItem .adres
{
	margin-top: 5px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}
.ourPartnersItem .phone
{
	margin-top: 5px;
	letter-spacing: 2px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color_1);
}
.ourPartnersItem .phone a
{
	color: var(--color_1);
}
.ourPartnersItem .phone a:hover
{
	color: var(--color_2);
}
.ourPartnersItem .siteLink
{
	margin-top: 10px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}
.ourPartnersItem .siteLink a
{
	color: var(--color_6);
}
.ourPartnersItem .siteLink a:hover
{
	color: var(--color_2);
}

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

@media (max-width: 1730px)
{
	.el_ourPartnersListBlock_71438808 .ourPartnersList
	{
		column-gap: calc(46px + (145 - 46) * var(--width-coefficient));
		row-gap: calc(46px + (110 - 46) * var(--width-coefficient));
	}
	/**/
	.ourPartnersItem .title
	{
		min-height: calc(30px + (48 - 30) * var(--width-coefficient));

		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.ourPartnersItem .adres
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.ourPartnersItem .phone
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.ourPartnersItem .siteLink
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}

	/***/

	.el_ourPartnersListBlock_71438808 .mapBlock
	{
		margin-top: calc(40px + (110 - 40) * var(--width-coefficient));
	}
}
@media (max-width: 1440px)
{
	.el_ourPartnersListBlock_71438808 .ourPartnersList
	{
		grid-template-columns: repeat(3, 1fr);
		column-gap: calc(46px + (100 - 46) * var(--width-coefficient));
		row-gap: calc(46px + (90 - 46) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.el_ourPartnersListBlock_71438808 .ourPartnersList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 991px)
{
	.el_ourPartnersListBlock_71438808 .mapBlock > div
	{
		padding-bottom: 56.25%;
	}
}
@media (max-width: 767px)
{
	.el_ourPartnersListBlock_71438808 .ourPartnersList
	{
		grid-template-columns: 1fr;
	}
}

/***********************************************************************/
/*****                     vacanciesList                         *****/
/***********************************************************************/

.el_vacanciesListBlock_71438808
{
}
.el_vacanciesListBlock_71438808 .textBlock
{
	margin: 0 auto 30px auto;
	padding: 30px;
	max-width: 840px;
}
.el_vacanciesListBlock_71438808 .vacanciesList
{
	margin: 0 auto;
	max-width: 840px;
}

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

.el_vacanciesFormBlock_71438808
{
	padding-left: 15px;
	padding-right: 15px;
}
.el_vacanciesFormBlock_71438808 .note
{
	font-family: var(--font-family-1);
	line-height: 2.8rem;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_2);
}
.el_vacanciesFormBlock_71438808 form
{
	margin-top: 40px;
}
.el_vacanciesFormBlock_71438808 form .buttonForm
{
}
.el_vacanciesFormBlock_71438808 form .buttonForm .btn
{
	width: 100%;
}

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

@media (max-width: 1730px)
{

	.el_vacanciesFormBlock_71438808 .note
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.el_vacanciesFormBlock_71438808 form
	{
		margin-top: calc(30px + (40 - 30) * var(--width-coefficient));
	}
}

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

.el_accordionItem_71438808
{
	margin-bottom: 24px;
}
.el_accordionItem_71438808 .innerWrapper
{
	background-color: var(--color_white);
}
.el_accordionItem_71438808 .titleItem
{
	position: relative;
	border-bottom: 1px solid transparent;
	padding: 35px 90px 30px 50px;
	letter-spacing: 0.5px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
	cursor: pointer;
}
.el_accordionItem_71438808 .titleItem:hover,
.el_accordionItem_71438808 .titleItem.open
{
	color: var(--color_2);
}
.el_accordionItem_71438808 .titleItem.open
{
	border-color: var(--color_1);
}
.el_accordionItem_71438808 .titleItem .btnToggle
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	top: 35px;
	right: 50px;
	width: 30px;
	height: 30px;
}
.el_accordionItem_71438808 .titleItem .btnToggle::before,
.el_accordionItem_71438808 .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_71438808 .titleItem .btnToggle::before
{
	width: 21px;
	height: 4px;
}
.el_accordionItem_71438808 .titleItem .btnToggle::after
{
	width: 4px;
	height: 21px;
}
.el_accordionItem_71438808 .titleItem.open .btnToggle::after
{
	display: none;
}
/**/
.el_accordionItem_71438808 .titleItem ul
{
	margin-top: 10px;
}
.el_accordionItem_71438808 .titleItem ul li
{
	display: inline-block;
	position: relative;
	margin-right: 70px;
	padding-left: 10px;
	line-height: 1.8rem;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_accordionItem_71438808 .titleItem ul li:last-child
{
	margin-right: 0;
}
.el_accordionItem_71438808 .titleItem ul li::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background-color: var(--color_2);
	top: 6px;
	left: 0;
	width: 5px;
	height: 5px;
}

/**/
.el_accordionItem_71438808 .textItem
{
	display: none;
	padding: 30px 50px;
}

.el_accordionItem_71438808 .textItem .btnLine
{
	margin-top: 30px;
}
.el_accordionItem_71438808 .textItem .btnLine .btn
{
}

@media (max-width: 1200px)
{
	.el_accordionItem_71438808 .titleItem
	{
		padding-top: calc(15px + (35 - 15) * var(--width-coefficient));
		padding-right: calc(50px + (90 - 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 + (24 - 18) * var(--width-coefficient));
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}
	.el_accordionItem_71438808 .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_71438808 .titleItem .btnToggle::before
	{
		width: calc(10px + (21 - 10) * var(--width-coefficient));
		height: calc(2px + (4 - 2) * var(--width-coefficient));
	}
	.el_accordionItem_71438808 .titleItem .btnToggle::after
	{
		width: calc(2px + (4 - 2) * var(--width-coefficient));
		height: calc(10px + (21 - 10) * var(--width-coefficient));
	}

	.el_accordionItem_71438808 .textItem
	{
		padding-top: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-right: calc(25px + (50 - 25) * var(--width-coefficient));
		padding-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
		padding-left: calc(25px + (50 - 25) * var(--width-coefficient));
	}
	.el_accordionItem_71438808 .textItem .btnLine
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}

	.el_accordionItem_71438808 .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 + (18 - 16) * var(--width-coefficient));
		font-size: calc(12px + (14 - 12) * var(--width-coefficient));
	}
	.el_accordionItem_71438808 .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));
	}
}

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

.staticPage
{
}
.staticPage .textBlock
{
	margin: 0 auto;
	max-width: 840px;
}
.staticPage .btnLine
{
	margin-top: 50px;
	text-align: center;
}

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

.contactsPageContent
{
}

.contactsPageContent .contactsBlock
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 145px;
	row-gap: 110px;
}
.contactsPageContent .contactsBlock .contactsItem
{
}
.contactsPageContent .contactsBlock .contactsItem .innerWrapper
{
	/*display: -ms-flex;*/
	/*display: flex;*/
	/*flex-direction: column;*/
	/*width: 100%;*/
	/*min-height: 100%;*/
}
/**/
.contactsPageContent .contactsBlock .contactsItem .title
{
	/*display: -ms-flex;*/
	/*display: flex;*/
	/*flex: 1 1 auto;*/
	min-height: 48px;

	letter-spacing: 0.5px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
.contactsPageContent .contactsBlock .contactsItem .phone
{
	margin-top: 5px;
	letter-spacing: 2px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color_1);
}
.contactsPageContent .contactsBlock .contactsItem .phone a
{
	color: var(--color_1);
}
.contactsPageContent .contactsBlock .contactsItem .phone a:hover
{
	color: var(--color_2);
}
.contactsPageContent .contactsBlock .contactsItem .text
{
	margin-top: 5px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}
.contactsPageContent .contactsBlock .contactsItem.address .text
{
	letter-spacing: 2px;
}
.contactsPageContent .contactsBlock .contactsItem .email
{
	margin-top: 12px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}
.contactsPageContent .contactsBlock .contactsItem .email a
{
	color: var(--color_6);
}
.contactsPageContent .contactsBlock .contactsItem .email a:hover
{
	color: var(--color_2);
}

/***/

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

/***/

.contactsPageContent .socialNetworkList
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 7px;
}
.contactsPageContent .socialNetworkList li
{
	display: inline-block;
	background-color: var(--color_1);
	width: 46px;
	height: 46px;
}
.contactsPageContent .socialNetworkList li .img_wrap
{
}
.contactsPageContent .socialNetworkList li .img_wrap .el
{
	padding: 5px;
}

/***/

.contactsPageContent .mapBlock
{
	margin-top: 110px;
}
.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;
}

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

.el_contactsFormBlock_71438808
{
	padding-left: 15px;
	padding-right: 15px;
}
.el_contactsFormBlock_71438808 .note
{
	font-family: var(--font-family-1);
	line-height: 2.8rem;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	color: var(--color_2);
}
.el_contactsFormBlock_71438808 form
{
	margin-top: 40px;
}
.el_contactsFormBlock_71438808 form .buttonForm
{
}
.el_contactsFormBlock_71438808 form .buttonForm .btn
{
	width: 100%;
}

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

@media (max-width: 1730px)
{
	.contactsPageContent .contactsBlock
	{
		column-gap: calc(46px + (145 - 46) * var(--width-coefficient));
		row-gap: calc(46px + (110 - 46) * var(--width-coefficient));
	}
	/**/
	.contactsPageContent .contactsBlock .contactsItem .title
	{
		min-height: calc(30px + (48 - 30) * var(--width-coefficient));

		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.contactsPageContent .contactsBlock .contactsItem .phone
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.contactsPageContent .contactsBlock .contactsItem .text
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.contactsPageContent .contactsBlock .contactsItem .email
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}

	/***/

	.contactsPageContent .textBlock
	{
		margin-top: calc(40px + (110 - 40) * var(--width-coefficient));
	}

	/***/

	.contactsPageContent .socialNetworkList li
	{
		width: calc(36px + (46 - 36) * var(--width-coefficient));
		height: calc(36px + (46 - 36) * var(--width-coefficient));
	}

	/***/

	.contactsPageContent .mapBlock
	{
		margin-top: calc(40px + (110 - 40) * var(--width-coefficient));
	}

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

	.el_contactsFormBlock_71438808 .note
	{
		line-height: calc(15px + (28 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.el_contactsFormBlock_71438808 form
	{
		margin-top: calc(30px + (40 - 30) * var(--width-coefficient));
	}
}
@media (max-width: 1440px)
{
	.contactsPageContent .contactsBlock
	{
		grid-template-columns: repeat(3, 1fr);
		column-gap: calc(46px + (100 - 46) * var(--width-coefficient));
		row-gap: calc(46px + (90 - 46) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.contactsPageContent .contactsBlock
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 991px)
{
	.contactsPageContent .mapBlock > div
	{
		padding-bottom: 56.25%;
	}
}
@media (max-width: 767px)
{
	.contactsPageContent .contactsBlock
	{
		grid-template-columns: 1fr;
	}
	.contactsPageContent .contactsBlock .contactsItem .title
	{
		min-height: auto;
	}
}

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

.entityContent
{
}
.entityContent .entityWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
	min-height: calc((100vw * 0.4479166666666667) + 1px);
}
.entityContent .entityWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1_30);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.entityContent .entityWrapper > *
{
	position: relative;
	z-index: 5;
}
.entityContent .innerWrapper
{
	background-color: var(--color_white);
	padding: 80px 100px;
	margin: 0 auto;
	max-width: 812px;
}
.entityContent.authorization .innerWrapper,
.entityContent.registration .innerWrapper,
.entityContent.recoveryPassword .innerWrapper
{
	border-bottom: 4px solid var(--color_2);
	box-shadow: 0 5px 15px var(--color_1_15);
	max-width: 780px;
}
.entityContent .innerWrapper .text
{
}
.entityContent .innerWrapper .stitchedText
{
	letter-spacing: 2px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
.entityContent .innerWrapper .ico
{
	margin-bottom: 30px;
	font-size: 8rem;
	color: var(--color_2);
	text-align: center;
}
.entityContent .innerWrapper .ico i
{
	line-height: 1;
}
.entityContent .innerWrapper .ico svg
{
	max-width: 140px;
	max-height: 120px;
}
.entityContent .innerWrapper .btnLine
{
	margin-top: 38px;
}
/***/
.entityContent .innerWrapper .linkLine
{
	margin-top: 24px;
	margin-bottom: 24px;
}
/***/

.entityContent .innerWrapper .linkBlock
{
	margin-top: 24px;
	text-align: center;
}
.entityContent .innerWrapper .linkBlock li
{
	margin-top: 10px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color_1);
}
.entityContent .innerWrapper .linkBlock li a
{
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color_6);
}
.entityContent .innerWrapper .linkBlock li a:hover
{
	color: var(--color_2);
}

/*****/

@media (max-width: 1730px)
{
	.entityContent .entityWrapper
	{
		padding: calc(30px + (80 - 30) * var(--width-coefficient)) 0;
		min-height: calc((100vw * 0.4479166666666667) + 1px);
	}
	.entityContent .innerWrapper
	{
		padding: calc(15px + (80 - 15) * var(--width-coefficient)) calc(15px + (100 - 15) * var(--width-coefficient));
		max-width: 812px;
	}
	.entityContent .innerWrapper .stitchedText
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.entityContent .innerWrapper .ico
	{
		margin-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
		font-size: calc(30px + (80 - 30) * var(--width-coefficient));
	}
	.entityContent .innerWrapper .ico svg
	{
		max-width: calc(40px + (140 - 40) * var(--width-coefficient));
		max-height: calc(40px + (120 - 40) * var(--width-coefficient));
	}
	.entityContent .innerWrapper .btnLine
	{
		margin-top: calc(20px + (38 - 20) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.entityContent .entityWrapper
	{
		padding: 0;
		min-height: 100%;
	}
	.entityContent .entityWrapper .siteWidth.container-fluid
	{
		padding: 0;
		max-width: 100%;
	}
	.entityContent.authorization .innerWrapper,
	.entityContent.registration .innerWrapper,
	.entityContent.recoveryPassword .innerWrapper
	{
		min-width: 100%;
	}

}

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

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

.el_loginContent_71438808 .btn_wrap .btn i
{
	margin-right: 7px;
}

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


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

.compareListCD
{
}

/***/

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

/*****/

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

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

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

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

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

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

/****/

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

.compareListCD .offerCompareList .compareBlock .headCol.ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid transparent;
}
.compareListCD .offerCompareList .compareBlock .item.headCol p
{
	font-size: 1.5rem;
	text-align: left;
}
.compareListCD .offerCompareList .compareBlock .headCol.ico p
{
	font-size: 2rem;
	color: var(--color_2);
}
.compareListCD .offerCompareList .compareBlock .headCol.ico p a
{
	font-size: 1.5rem;
	color: var(--color_2);
}
.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_2);
}

/***/
.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_71438808
{
}
.el_page404Content_71438808 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
	min-height: calc((100vw * 0.3729166666666667) + 1px);
}
/*.el_page404Content_71438808 .innerWrapper::before*/
/*{*/
/*	position: absolute;*/
/*	display: block;*/
/*	content: "";*/
/*	background-color: var(--color_1_30);*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	z-index: 2;*/
/*}*/
.el_page404Content_71438808 .innerWrapper > *
{
	position: relative;
	z-index: 5;
}

.el_page404Content_71438808 .numbers
{
	line-height: 1;
	font-size: 15rem;
	font-weight: bold;
	color: var(--color_1);
}
.el_page404Content_71438808 .t1
{
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
}

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

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

.staticText
{
	font-family: var(--font-family-1);
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}
.bgDark .staticText,
.staticText.white
{
	color: var(--color_white);
}
.staticText *
{
	margin-bottom: 24px;
	font-family: inherit;
	line-height: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}
.staticText *:first-child
{
	margin-top: 0;
}
.staticText *:last-child,
.staticText br
{
	margin-bottom: 0;
}
.staticText br
{
	line-height: 1;
	height: 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: 24px;
	margin-bottom: 24px;
	font-family: var(--font-family-1);
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}

.staticText h1,
.staticText .h1,
.staticText h2,
.staticText .h2
{
	line-height: 5rem;
	font-size: 4rem;
}
.staticText h3,
.staticText .h3
{
	line-height: 2.8rem;
	font-size: 2.2rem;
}
.staticText h4,
.staticText .h4
{
	line-height: 2.6rem;
	font-size: 2rem;
}
.staticText h5,
.staticText .h5
{
	line-height: 2.4rem;
	font-size: 1.8rem;
}
.staticText h6,
.staticText .h6
{
	line-height: 2.4rem;
	font-size: 1.6rem;
}

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

.staticText a
{
	color: var(--color_6);
}
.staticText a:hover
{
	color: var(--color_2);
}

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

.staticText table
{
	margin: 24px auto;
	width: auto;
}
.staticText table tr
{
	border-bottom: 1px solid var(--color_3);
}
.staticText table thead tr:first-child
{
	border-bottom: 1px solid var(--color_2);
}
.staticText table tr:last-child
{
	border-bottom: none;
}
.staticText table tr th
{
	background-color: var(--color_4);
}
.staticText table tr td,
.staticText table tr th
{
	padding: 9px 12px;
	text-transform: uppercase;
	text-align: center;
}
.staticText table thead tr:first-child td
{
	font-weight: 700;
}
.staticText table tr td:first-child,
.staticText table tr th:first-child
{
	font-weight: 700;
	text-align: left;
}

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

.staticText .brick::before
{
	display: inline-block;
	content: "";
	background-color: var(--color_2);
	alignment-baseline: bottom;
	width: 20px;
	height: 10px;
}

@media (max-width: 1730px)
{
	.staticText
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}

	.staticText h1,
	.staticText .h1,
	.staticText h2,
	.staticText .h2
	{
		line-height: calc(24px + (50 - 24) * var(--width-coefficient));
		font-size: calc(20px + (40 - 20) * var(--width-coefficient));
	}
	.staticText h3,
	.staticText .h3
	{
		line-height: calc(20px + (28 - 20) * var(--width-coefficient));
		font-size: calc(16px + (22 - 16) * var(--width-coefficient));
	}
	.staticText h4,
	.staticText .h4
	{
		line-height: calc(18px + (26 - 18) * var(--width-coefficient));
		font-size: calc(14px + (20 - 14) * var(--width-coefficient));
	}
	.staticText h5,
	.staticText .h5
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(13px + (18 - 13) * var(--width-coefficient));
	}
	.staticText h6,
	.staticText .h6
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}

}

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

.el_paginationBlock_71438808
{
	margin-top: 80px;
	margin-bottom: 80px;
}
.el_paginationBlock_71438808 ul
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 10px;
	justify-content: center;
}
.el_paginationBlock_71438808 ul li
{
	text-align: center;
}
.el_paginationBlock_71438808 ul li a,
.el_paginationBlock_71438808 ul li span
{
	display: inline-block;
	background-color: transparent;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	box-shadow: none;
	padding: 3px 1px;
	font-family: var(--font-family-1);
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	font-style: normal;
	color: var(--color_3);
}
.el_paginationBlock_71438808 ul li a:hover,
.el_paginationBlock_71438808 ul li span
{
	border-bottom-color: var(--color_2);
	color: var(--color_1);
}
.el_paginationBlock_71438808 ul li a.prev,
.el_paginationBlock_71438808 ul li a.next,
.el_paginationBlock_71438808 ul li span.prev,
.el_paginationBlock_71438808 ul li span.next
{
	font-size: 2.2rem;
}
.el_paginationBlock_71438808 ul li a.prev:hover,
.el_paginationBlock_71438808 ul li a.next:hover,
.el_paginationBlock_71438808 ul li span.prev,
.el_paginationBlock_71438808 ul li span.next
{
	border-bottom-color: transparent;
	color: var(--color_1);
}

@media (max-width: 1760px)
{
	.el_paginationBlock_71438808
	{
		margin-top: calc(40px + (80 - 40) * var(--width-coefficient));
		margin-bottom: calc(40px + (80 - 40) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_paginationBlock_71438808 ul li a,
	.el_paginationBlock_71438808 ul li span
	{
		min-width: 36px;
		height: 36px;
		line-height: 34px;
	}
}

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

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

	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 900;
}
.dimensionalGridBlock .closeBlock
{
	position: absolute;
	display: block;
	background-color: var(--color_1_20);
	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);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.20);

	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 600px;
	height: 100vh;
	overflow: auto;
	z-index: 2;
}
.dimensionalGridBlock .innerWrapper::-webkit-scrollbar
{
	width: 6px; /* ширина всей полосы прокрутки */
}
.dimensionalGridBlock .innerWrapper::-webkit-scrollbar-track
{
	background: var(--color_5); /* цвет зоны отслеживания */
}
.dimensionalGridBlock .innerWrapper::-webkit-scrollbar-thumb
{
	background-color: var(--color_2); /* цвет бегунка */
	border-radius: 20px;			  /* округлось бегунка */
	border: 1px solid var(--color_2); /* отступ вокруг бегунка */
}

.dimensionalGridBlock .innerWrapper .closeButton
{
	position: absolute;
	top: 10px;
	right: 50px;
}
.dimensionalGridBlock .innerWrapper .title
{
	border-bottom: 1px solid var(--color_1);
	padding: 24px 90px 24px 60px;
	line-height: 2.8rem;
	font-size: 2.2rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: left;
	color: var(--color_1);
}
.dimensionalGridBlock .innerWrapper .content
{
	padding: 40px 60px 50px 60px;
}
.dimensionalGridBlock .innerWrapper .linkLine
{
	margin-top: 40px;
	text-align: center;
}
.dimensionalGridBlock .innerWrapper .linkLine a
{
	display: inline-block;
	line-height: 1.2;
	font-size: 1.4rem;
	font-weight: 400;
	text-decoration-line: underline;
	color: var(--color_1);
}
.dimensionalGridBlock .innerWrapper .linkLine a span
{
	display: block;
}

@media (max-width: 1730px)
{
	.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: 0;
	padding: 80px;
	max-width: 650px;
	width: 100%;
	color: var(--color_1);
}
.fancybox-content.mw1050
{
	max-width: 1050px;
}
.fancybox-content.mw830
{
	max-width: 830px;
}
.fancybox-content.mw540
{
	max-width: 540px;
}
.fancybox-content .fancybox-close-small
{
	padding: 0;
	width: 60px;
	height: 60px;
}
.fancybox-content .fancybox-close-small svg path[fill]
{
	fill: var(--color_1);
}

.fancybox-error p
{
	color: var(--color_red);
}

.fancybox-content .alert
{
	font-weight: normal;
	text-transform: none;
	text-align: left;
}
.fancybox-content .fancybox-button svg path
{
	fill: var(--color_1);
}
.fancybox-content .btn_wrap .btn,
.fancybox-content .buttonForm .btn
{
	max-width: 100%;
}

.fancybox-content .modalContent
{
	font-family: var(--font-family-1);
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_1);
}
.fancybox-content .modalContent a:not(.btn)
{
	color: var(--color_6);
}
.fancybox-content .modalContent a:not(.btn):hover
{
	color: var(--color_2);
}
.fancybox-content .modalContent .input_wrapper
{
	text-align: left;
}

/******/

.fancybox-content .btn_wrap,
.fancybox-content .buttonForm
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	gap: 15px;
	margin-top: 36px;
}

/******/

@media (max-width: 1730px)
{
	.fancybox-content
	{
		padding-left: calc(15px + (80 - 15) * var(--width-coefficient));
		padding-right: calc(15px + (80 - 15) * var(--width-coefficient));
	}

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

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

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

.addBrandingFormModal
{
}
.addBrandingFormModal .input_wrapper.checkbox
{
	margin-top: 24px;
}
.addBrandingFormModal .input_wrapper label
{
	display: block;
	width: 100%;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	text-transform: none;
}
.addBrandingFormModal .note
{
	margin-top: 24px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	text-transform: none;
}
.addBrandingFormModal .input_wrapper.file
{
	margin-top: 24px;
}
.addBrandingFormModal .addBrandingFileBlock
{
	display: none;
}

.addBrandingFormModal .buttonForm
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	justify-content: space-around;
	gap: 30px;
}
.addBrandingFormModal .buttonForm .btn
{
}

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

.cartOfferDeleteConfirmModal
{
}

.cartOfferDeleteConfirmModal .btn_wrap
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	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;
	}
}

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

.offerInfoMoModal .offerImage
{
	-ms-flex: 0 0 180px;
	flex: 0 0 180px;
	max-width: 180px;
}
.offerInfoMoModal .offerImage .imageBlock
{
}
/***/
.offerInfoMoModal .infoBlock
{
	padding-left: 15px;
}
.offerInfoMoModal .infoBlock .title
{
}
.offerInfoMoModal .infoBlock .title a
{
	display: inline-block;
	line-height: 2.2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.offerInfoMoModal .infoBlock .title a:hover
{
	color: var(--color_2);
}
/**/
.offerInfoMoModal .infoBlock .priceBlock
{
	margin-top: 5px;
}
/**/
.offerInfoMoModal .infoBlock .bonusLine
{
	margin-top: 15px;
}
/**/
.offerInfoMoModal .infoBlock .priceLine
{
	margin-top: 15px;
}
.offerInfoMoModal .infoBlock .priceLine .price
{
	display: inline-block;
	letter-spacing: -0.02em;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color_1);
}
.offerInfoMoModal .infoBlock .priceLine .oldPrice
{
	display: inline-block;
	margin-left: 5px;
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: line-through;
	color: var(--color_2);
}
.offerInfoMoModal .infoBlock .priceLine .oldPrice.hide
{
	display: none;
}
/**/
.offerInfoMoModal .infoBlock .modifications
{
	margin-top: 15px;
}
.offerInfoMoModal .infoBlock .modifications select
{
	border: 1px solid var(--color_4);
	width: 100%;
	height: 42px;
	font-size: 1.4rem;
	text-align: left;
	color: var(--color_1);
}
.offerInfoMoModal .infoBlock .modifications select option
{
	font-size: 1.4rem;
}
/**/
.offerInfoMoModal .infoBlock .amountBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-top: 15px;
}
.offerInfoMoModal .infoBlock .amountBlock .qtText
{
	padding-right: 15px;
}
.offerInfoMoModal .infoBlock .amountBlock .amount
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	-ms-flex: 0 0 100px;
	flex: 0 0 100px;
	max-width: 100px;
}
.offerInfoMoModal .infoBlock .amountBlock .amount input
{
	padding: 0 5px;
	height: 22px;
	text-align: center;
}
.offerInfoMoModal .infoBlock .amountBlock .amount button
{
	display: block;
	padding: 0;
	-ms-flex: 0 0 22px;
	flex: 0 0 22px;
	max-width: 22px;
	width: 22px;
	height: 22px;
}
.offerInfoMoModal .infoBlock .amountBlock .amount .plus
{
}
.offerInfoMoModal .infoBlock .amountBlock .amount .minus
{
}

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

.addToCartFormModal
{
}

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

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

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

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

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

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

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

.userOrderLeaveRreviewModel
{
	max-width: 867px;
	text-align: center;
}

.userOrderLeaveRreviewModel .modalContent
{
	font-family: var(--font-family-1);
	line-height: unset;
	font-size: unset;
	font-weight: unset;
	text-transform: unset;
	text-align: left;
	color: unset;
}
.userOrderLeaveRreviewModel .modalContent .userOrderOfferListBlock
{
}
.userOrderLeaveRreviewModel .modalContent .userOrderOfferListBlock .linkLine
{
	margin-bottom: 24px;
}
.userOrderLeaveRreviewModel .modalContent .userOrderOfferListBlock .linkLine .btn
{
	min-width: 277px;
}

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

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

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

.rateStar
{
	position: relative;
	display: inline-block !important;
}
.rateStar .starsPassive i
{
	color: var(--color_1);
}
.rateStar .starsActive i
{
	color: var(--color_1);
}
.rateStar > div > div
{
	display: -ms-flex;
	display: flex;
	align-items: center;
}

/*****/
.rateStar.smallStar,
.rateStar.smallStar > div > div
{
	width: 42px;
	height: 9px;
}
.rateStar.smallStar > div
{
	position: absolute;
	top: 0;
	left: 0;
	height: 9px;
	width: 0;
	overflow: hidden;
}
.rateStar.smallStar > .starsPassive
{
	width: 42px;
}
/**/
.rateStar.smallStar > div i
{
	margin: 0;
	font-size: 9px !important;
}
/***/
.rateStar.mediumStar,
.rateStar.mediumStar > div > div
{
	width: 65px;
	height: 14px;
}
.rateStar.mediumStar > div
{
	position: absolute;
	top: 0;
	left: 0;
	height: 14px;
	width: 0;
	overflow: hidden;
}
.rateStar.mediumStar > .starsPassive
{
	width: 65px;
}
/**/
.rateStar.mediumStar > div i
{
	margin: 0;
	font-size: 14px !important;
}

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

.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_2);
}
.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_2);
}
.filesList .filesListItem a .info .cName
{
	display: block;
	line-height: 1.6rem;
	font-size: 1.2rem;
	color: var(--color_2);
}

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

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

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

.commentListCD
{
}

/***/

.commentListCD .commentListEmpty
{
	text-align: center;
}
.commentListCD .commentListEmpty .text
{
	margin-top: 110px;
	letter-spacing: 2px;
	line-height: 2.8rem;
	font-size: 2.2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_3);
}
.commentListCD .commentListEmpty .imageBlock
{
	margin-top: 65px;
}

/***/

.commentListCD .commentItem
{
}
.commentListCD .commentItem .innerWrapper
{
	border-bottom: 1px solid var(--color_3);
	padding: 30px 0;
}
.commentListCD .commentItem .innerWrapper .name
{
	letter-spacing: 2px;
	line-height: 2.8rem;
	font-size: 2.2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
.commentListCD .commentItem .innerWrapper .rdBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
	margin-top: 8px;
}
.commentListCD .commentItem .innerWrapper .rateBlock
{
}
.commentListCD .commentItem .innerWrapper .date
{
	line-height: 2.4rem;
	font-size: 1.8rem;
	color: var(--color_1);
}

.commentListCD .commentItem .innerWrapper .commentText
{
	margin-top: 7px;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_1);
}
.commentListCD .commentItem .innerWrapper .commentText.textPlus > span,
.commentListCD .commentItem .innerWrapper .commentText.textMinus > span
{
	font-weight: 700;
}

/***/

.commentListCD .commentItem .innerWrapper .answerMenuLine
{
	margin-top: 20px;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .blRow
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .btnCol
{
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .btnCol .answerButton
{
	background-color: transparent;
	border: none;
	padding: 0;
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color_6);
}
/**/
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol
{
	text-align: right;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 12px;
	line-height: 2rem;
	font-size: 1.4rem;
	color: var(--color_1);
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock > span
{
	display: none;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border: none;
	background-color: transparent;
	padding: 0;
	font-size: 1.4rem;
	text-align: center;
	color: var(--color_1);
	cursor: pointer;
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button:hover
{
	color: var(--color_2);
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button i
{
	color: var(--color_1);
}
.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock button:hover i
{
	color: var(--color_2);
}

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

.commentListCD .commentItem .answerBlock
{
}
.commentListCD .commentItem .answerBlock .commentItem
{
}
.commentListCD .commentItem .answerBlock .commentItem .innerWrapper
{
	position: relative;
	border-top: 1px solid var(--color_3);
	padding: 20px 0 20px 90px;
}
.commentListCD .commentItem .answerBlock .commentItem:first-child .innerWrapper
{
	border: none;
}
.commentListCD .commentItem .answerBlock .commentItem .innerWrapper .ico
{
	position: absolute;
	top: 24px;
	left: 60px;
	width: 23px;
	height: 19px;
}
.commentListCD .commentItem .answerBlock .commentItem .innerWrapper .date
{
	margin-top: 5px;
}

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

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

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

.addCommentFormCD
{
}
.addCommentFormCD.open
{
	background-color: var(--color_white);
	padding: 50px;
}

.addCommentFormCD .innerWrapper
{
	display: none;
	margin: 0 auto;
	max-width: 695px;
}
.addCommentFormCD.open .innerWrapper
{
	display: block;
}

.addCommentFormCD .titleAndCloseBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/**/
.addCommentFormCD .titleAndCloseBlock .addCommentFormTitle
{
	line-height: 50px;
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
/**/
.addCommentFormCD .titleAndCloseBlock .closeBtn
{
}
.addCommentFormCD .titleAndCloseBlock .closeBtn a
{
}
.addCommentFormCD .titleAndCloseBlock .closeBtn a:hover svg path
{
	fill: var(--color_2);
}

/***/

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

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

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

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

@media (max-width: 1730px)
{
	.addCommentFormCD.open
	{
		padding: calc(15px + (50 - 15) * var(--width-coefficient));
	}
	.addCommentFormCD .titleAndCloseBlock .addCommentFormTitle
	{
		line-height: calc(24px + (50 - 24) * var(--width-coefficient));
		font-size: calc(20px + (40 - 20) * var(--width-coefficient));
	}

	.commentListCD .commentItem .innerWrapper
	{
		padding: calc(15px + (30 - 15) * var(--width-coefficient)) 0;
	}
	.commentListCD .commentItem .innerWrapper .name
	{
		line-height: calc(14px + (28 - 14) * var(--width-coefficient));
		font-size: calc(12px + (22 - 12) * var(--width-coefficient));
	}
	.commentListCD .commentItem .innerWrapper .rdBlock
	{
		gap: calc(9px + (24 - 9) * var(--width-coefficient));
	}
	.commentListCD .commentItem .innerWrapper .date
	{
		line-height: calc(11px + (24 - 11) * var(--width-coefficient));
		font-size: calc(8px + (18 - 8) * var(--width-coefficient));
	}

	.commentListCD .commentItem .innerWrapper .commentText
	{
		line-height: calc(15px + (24 - 15) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}

	.commentListCD .commentItem .innerWrapper .answerMenuLine .likeCol .likeBlock
	{
		gap: calc(10px + (12 - 10) * var(--width-coefficient));
		line-height: calc(15px + (20 - 15) * var(--width-coefficient));
		font-size: calc(11px + (14 - 11) * var(--width-coefficient));
	}

	.commentListCD .commentItem .answerBlock .commentItem .innerWrapper
	{
		padding-left: calc(40px + (90 - 40) * var(--width-coefficient));
	}
	.commentListCD .commentItem .answerBlock .commentItem .innerWrapper .ico
	{
		top: calc(20px + (24 - 20) * var(--width-coefficient));
		left: calc(20px + (60 - 20) * var(--width-coefficient));
		width: calc(10px + (23 - 10) * var(--width-coefficient));
		height: calc(8px + (19 - 8) * var(--width-coefficient));
	}
	.commentListCD .commentItem .answerBlock .commentItem .innerWrapper .date
	{
		margin-top: 5px;
	}
}

@media (max-width: 991px)
{
}
@media (max-width: 767px)
{
}
@media (max-width: 575px)
{
	.addCommentFormCD .innerWrapper form .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.addCommentFormCD.siteComment .innerWrapper form textarea[name="siteCommentText"]
	{
		height: 100px;
	}

	.addCommentFormCD .innerWrapper form .btn_wrap,
	.addCommentFormCD.siteComment .innerWrapper form .btn_wrap
	{
		margin-top: 15px;
	}
}

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


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

.siteCommentCD
{
}

/*****/

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

footer.footerCD
{
	background-color: var(--color_1);
	color: var(--color_white);
}

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

.footerTop
{
	padding: 110px 0 20px 0;
}
.footerTop .col
{
	margin-bottom: 40px;
}

/***/

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

.footerTop .logoCol .btnLine
{
	margin-top: 30px;
}

/***/

.footerTop .itemCol
{
}
.footerTop .itemCol.contactsCol
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	order: 1;
}
.footerTop .itemCol.contactsCol .itemWrapper
{
	border-top: 1px solid var(--color_2);
	border-bottom: 1px solid var(--color_2);
	padding: 40px 0;
}
.footerTop .itemCol.socialNetworkCol
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
/***/
.footerTop .itemTitle
{
	margin-bottom: 10px;
	line-height: 2rem;
	font-size: 1.6rem;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_white);
}

.footerTop .itemTitle.contacts
{
	display: none;
}
/***/
.footerTop .itemTitle .toggleBtn
{
	display: none;
	padding: 0 15px;
	cursor: pointer;
}
.footerTop .itemTitle .toggleBtn::before
{
	display: inline-block;
	content: "\f107";
	font-family: "FontAwesome";
}
.footerTop .itemTitle .toggleBtn.open:before
{
	content: "\f106";
}

/***/

.footerTop .itemContent
{
}
.footerTop .itemContent ul
{
}
.footerTop .itemContent ul li
{
	margin-top: 16px;
}
.footerTop .itemContent ul li:first-child
{
	margin-top: 0;
}
.footerTop .itemContent ul li a
{
	display: inline-block;
	line-height: 1;
	font-size: 1.4rem;
	color: var(--color_white);
}
.footerTop .itemContent ul li a:hover,
.footerTop .itemContent ul li a:focus,
.footerTop .itemContent ul li a.active
{
	color: var(--color_2);
}

/***/

.footerTop .itemContent.contacts
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
/***/
.footerTop .itemContent .contactsItem
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 5px;
}
/**/
.footerTop .itemContent .contactsItem .ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color_white_10);
	height: 36px;
}
.footerTop .itemContent .contactsItem .ico svg
{
}
.footerTop .itemContent .contactsItem .ico svg path[fill]
{
	fill: var(--color_white);
}
.footerTop .itemContent .contactsItem .ico svg path[stroke]
{
	stroke: var(--color_white);
}
/**/
.footerTop .itemContent .contactsItem .title
{
	line-height: 1;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color_white);
}

.footerTop .itemContent .contactsItem .link
{
}
.footerTop .itemContent .contactsItem .link a
{
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_white);
}
.footerTop .itemContent .contactsItem .link a:hover
{
	color: var(--color_2);
}
/**/
.footerTop .itemContent .contactsItem .text
{
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--color_white);
}

/***/

.footerTop .socialNetworkCol
{
}
.footerTop .socialNetworkBlock .socialNetworkList
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 7px;
}
.footerTop .socialNetworkBlock .socialNetworkList li
{
	padding: 0;
}

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

.footerBottom
{
	padding: 20px 0 110px 0;
}
.footerBottom .row
{
	align-items: center;
}

/**/

.footerBottom .copyright
{
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_white);
}
.footerBottom .copyright a
{
	color: var(--color_white);
}

/***/

.footerBottom .systemCol
{
}
.footerBottom .systemBlock
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 23px 1fr;
	align-items: center;
	justify-content: center;
	gap: 5px;
	line-height: 1.21rem;
	font-size: 1rem;
	font-weight: normal;
	color: var(--color_5);
	text-align: left;
}
.footerBottom .systemBlock .imgBlock
{
	margin-right: 5px;
}
.footerBottom .systemBlock .imgBlock img
{
	max-width: 23px;
	max-height: 23px;
}
.footerBottom .systemBlock a
{
	color: var(--color_white);
}
.footerBottom .systemBlock a:hover
{
	color: var(--color_2);
}

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

@media (max-width: 1730px)
{
	.footerTop
	{
		padding: calc(50px + (110 - 50) * var(--width-coefficient)) 0 20px 0;
	}

	.footerTop .itemTitle
	{
		line-height: calc(14px + (20 - 14) * var(--width-coefficient));
		font-size: calc(12px + (16 - 12) * var(--width-coefficient));
	}

	.footerTop .itemContent .contactsItem
	{
		grid-template-columns: calc(32px + (36 - 32) * var(--width-coefficient)) 1fr;
	}
	.footerTop .itemContent .contactsItem .ico
	{
		height: calc(32px + (36 - 32) * var(--width-coefficient));
	}
	.footerTop .itemContent .contactsItem .title
	{
		line-height: calc(14px + (24 - 14) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	.footerTop .itemContent .contactsItem .link a
	{
		line-height: calc(14px + (24 - 14) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}
	/**/
	.footerTop .itemContent .contactsItem .text
	{
		line-height: calc(14px + (24 - 14) * var(--width-coefficient));
		font-size: calc(11px + (16 - 11) * var(--width-coefficient));
	}

	/*****/

	.footerBottom
	{
		padding: 20px 0 calc(50px + (110 - 50) * var(--width-coefficient)) 0;
	}

	.footerBottom .copyright
	{
		font-size: calc(11px + (14 - 11) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.footerTop .logoCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

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

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

	.footerTop .itemCol .itemWrapper
	{
		border-top: 1px solid var(--color_2);
		padding: 20px 0;
	}
	.footerTop .itemCol.contactsCol .itemWrapper
	{
		padding: 20px 0;
	}
	.footerTop .itemCol:last-child .itemWrapper
	{
		border-bottom: 1px solid var(--color_2);
	}

	.footerTop .itemTitle
	{
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 0;
	}
	.footerTop .itemTitle .toggleBtn
	{
		display: block;
	}

	.footerTop .itemContent
	{
		display: none;
		padding: 20px 0;
	}
	.footerTop .itemContent.open
	{
		display: block;
	}
	.footerTop .itemContent.contacts
	{
		display: none;
	}
	.footerTop .itemContent.contacts.open
	{
		display: -ms-grid;
		display: grid;
	}

	.footerTop .itemTitle.contacts
	{
		display: -ms-flex;
		display: flex;
	}
	.footerTop .itemContent.contacts
	{
		grid-template-columns: repeat(2, 1fr);
	}
	.footerTop .itemCol.socialNetworkCol
	{
		order: 2;
	}
}

@media (max-width: 767px)
{
	.footerBottom .row
	{
		height: auto;
	}

	.footerTop .itemContent.contacts
	{
		grid-template-columns: repeat(1, 1fr);
	}

	.footerBottom .systemCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 30px;
		text-align: center;
		order: 2;
	}
	.footerBottom .socialNetworkCol
	{
		text-align: center;
		order: 1;
	}
	.footerBottom .systemBlock .text
	{
		margin: 0 auto;
	}

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

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

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

/***/

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

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

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

/*****/

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

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

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

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

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

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

/***/

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

/***/

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

/****/

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

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

/**/

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

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

/***/

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

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

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

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

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

/**/

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

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