/*
Используемые цвета на сайте
	855E90
	B498BC
	EAE4EC
    F8F6F9

    C3C3C3 - Пассивная звездочка
    95527D - Активная звездочка
*/
:root
{
	--color_1: #855E90;
	--color_2: #B498BC;
	--color_3: #EAE4EC;
	--color_4: #F8F6F9;
	--color_5: #C3C3C3;
	--color_6: #95527D;
	--color_7: #332233;
	--color_8: #8C8C8C;
	--color_9: #28C75D;
	--color_10: #DC4E41;
	--color_11: #EEEEEE;
	--color_12: #555555;
	--color_13: #DDDDDD;

	--color_white: #FFFFFF;
	--color_black: #000000;
	--color_red: #FF0000;

	--font-family-1: 'Montserrat', sans-serif;
	--font-family-2: 'Lora', sans-serif;

	--site-width-max-width: 1200px;
	--width-coefficient: calc((100vw - 320px) / (1200 - 320));
}

@media (max-width: 1200px)
{
	:root
	{
		--site-width-max-width: 970px;
	}
}
@media (max-width: 991px)
{
	:root
	{
		--site-width-max-width: 750px;
	}
}
@media (max-width: 767px)
{
	:root
	{
		--site-width-max-width: 560px;
	}
}
@media (max-width: 575px)
{
	:root
	{
		--site-width-max-width: 100%;
	}
}

body
{
	margin: 0;
	padding: 0;
	width: 100%;
	min-width: 320px;
	line-height: 1;
	font-family: var(--font-family-1);
	font-size: 1.4rem;
	font-weight: normal;
	color: #161616;
}

body.open
{
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6, strong, b
{
	font-weight: 700;
}
h1
{
	font-size: 2.4rem;
}
h3
{
	font-size: 1.8rem;
}
h4
{
	font-size: 1.6rem;
}
img
{
	max-width: 100%;
	max-height: 100%;
}
a
{
	color: #222222;
}
a:focus,
input:focus
{
	outline: none;
	text-decoration: none;
}
a:hover
{
	text-decoration: none;
	color: var(--color_1);
}

.clearfix:before,
.clearfix:after
{
	content: "";
	display: table;
	border-collapse: collapse;
}
.clearfix:after
{
	clear: both;
}

.hide
{
	display: none;
}

.lineBlock
{
	background-color: #EEEEEE;
	margin: 30px auto;
	width: 100%;
	height: 1px;
}

/*************/

.text-center
{
	text-align: center;
}
.text-left
{
	text-align: left;
}
.text-right
{
	text-align: right;
}

/*************/

.m-t-15
{
	margin-top: 15px;
}

.m-b-15
{
	margin-bottom: 15px;
}

/**************************************************/

input,
select,
textarea
{
	display: block;
	border-radius: 10px;
	background-color: var(--color_white);
	border: 1px solid var(--color_13);
	padding: 0 20px;
	width: 100%;
	height: 42px;
	line-height: 1.625;
	font-family: var(--font-family-2);
	font-size: 1.6rem;
	font-style: italic;
	color: var(--color_8);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
input:focus,
select:focus,
textarea:focus
{
	border-color: var(--color_13);
	box-shadow: none;
	outline: none;
}
textarea
{
	padding: 5px 20px;
	height: 100px;
	resize: vertical;
}

/*****/

.fakeFieldBlock
{
}
.fakeFieldBlock .fakeField
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;

	border-radius: 10px;
	background-color: var(--color_white);
	border: 1px solid var(--color_13);
	width: 100%;
	max-width: 100%;
	padding: 0 20px;
	height: 42px;
	line-height: 1.625;
	font-family: var(--font-family-2);
	font-size: 1.6rem;
	font-style: italic;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--color_8);
	-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_4) 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%);
}

/*************/

form .cf-turnstile
{
	margin-bottom: 15px;
}

/*****/

.input_wrapper
{
	position: relative;
	display: block;
	margin-bottom: 15px;
}
.input_wrapper label
{
	display: block;
	margin-bottom: 5px;
	font-family: var(--font-family-2);
	font-size: 1.6rem;
	font-weight: 400;
	font-style: italic;
	text-align: left;
	color: var(--color_7);
	cursor: pointer;
}
.input_wrapper.checkbox input
{
	float: left;
	width: auto;
	height: auto;
	margin-right: 15px;
}

.simpleForm
{
	margin: 0 auto;
	max-width: 630px;
}
.simpleForm .btn_wrap
{
	text-align: center;
}

/*************************/

.btn,
.staticText .btn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: var(--color_1);
	border: 1px solid var(--color_1);
	border-radius: 5px;
	box-shadow: none;
	padding: 0 20px;
	height: 42px;
	line-height: 1;
	font-family: var(--font-family-1);
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	font-style: normal;
	color: var(--color_white);
}
.btn:hover,
.staticText .btn:hover
{
	background-color: transparent;
	color: var(--color_1);
}
.btn.type2,
.staticText .btn.type2
{
	background-color: transparent;
	color: var(--color_1);
}
.btn.type2:hover,
.staticText .btn.type2:hover
{
	background-color: var(--color_1);
	border: 1px solid var(--color_1);
	color: var(--color_white);
}
.btn.type3,
.staticText .btn.type3
{
}
.btn.type3:hover,
.staticText .btn.type3:hover
{
	background-color: #e19824;
	border: 1px solid #e19824;
	color: var(--color_white);
}

.btn[disabled="disabled"],
.staticText .btn[disabled="disabled"]
{
	background-color: var(--color_8);
	border: 1px solid var(--color_8);
	color: #FFFFFF;
	cursor: not-allowed;
}

/**************************************************/

.img_wrap
{
	position: relative;
	display: block;
	width: 100%;
	padding-bottom: 100%;
}
.img_wrap .el
{
	position: absolute;
	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;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}

/************************************************************************************/
/*** MAIN ***/
/*************************************************************************************/

.container-fluid
{
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
}
.row
{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.col
{
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.container-fluid10
{
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
}
.row10
{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}
.col10
{
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 10px;
	padding-right: 10px;
}

.container-fluid-5
{
	margin-right: auto;
	margin-left: auto;
	padding-right: 5px;
	padding-left: 5px;
	width: 100%;
}
.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;
}

/*****/

.siteWidth
{
	margin: 0 auto;
	max-width: var(--site-width-max-width);
}

/*=================== MAIN =========================*/

main #left_side
{
	-ms-flex: 0 0 270px;
	flex: 0 0 270px;
	max-width: 270px;
	margin-bottom: 40px;
}
main #content
{
	margin-bottom: 30px;
}
main #right_side
{
	-ms-flex: 0 0 270px;
	flex: 0 0 270px;
	max-width: 270px;
	margin-bottom: 40px;
}

@media (max-width: 991px)
{
	main #left_side
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	main #right_side
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_titleBlock_14108807
{
	position: relative;
	margin: 50px 0;
	text-align: center;
}
.el_titleBlock_14108807::before
{
	position: absolute;
	display: block;
	background-color: #EEEEEE;
	content: "";
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
}
.el_titleBlock_14108807 span
{
	position: relative;
	display: inline-block;
	background-color: var(--color_white);
	padding: 0 20px;
	line-height: 1.4;
	font-size: 3.6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_7);
	z-index: 5;
}

/***/

.el_titleBlock2_14108807
{
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 25px;
	font-family: var(--font-family-1);
	line-height: 1.4;
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	font-style: normal;
	color: var(--color_7);
}
.el_titleBlock2_14108807::before
{
	position: absolute;
	background-color: var(--color_1);
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
}
.el_titleBlock2_14108807 .toggleButton
{
	display: none;
	position: absolute;
	background-color: transparent;
	border: none;
	top: 0;
	right: 0;
	font-size: 2rem;
	cursor: pointer;
}
.el_titleBlock2_14108807 .toggleButton::after
{
	display: inline-block;
	content: "\f067";
	font-family: "FontAwesome";
}
.el_titleBlock2_14108807 .toggleButton.open::after
{
	content: "\f068";
}

@media (max-width: 1200px)
{
	.el_titleBlock_14108807
	{
		margin-top: calc(30px + (50 - 30) * ((100vw - 320px) / (1510 - 320)));
		margin-bottom: calc(30px + (50 - 30) * ((100vw - 320px) / (1510 - 320)));
	}
	.el_titleBlock_14108807 span
	{
		padding-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1510 - 320)));
		padding-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1510 - 320)));
		font-size: calc(26px + (36 - 26) * ((100vw - 320px) / (1510 - 320)));
	}
}
@media (max-width: 991px)
{
	.el_titleBlock2_14108807 .toggleButton
	{
		display: block;
	}
}

/***********************************************************************/
/***********************************************************************/

.slick-slider,
.slick-slider .draggable,
.slick-slider .draggable .slick-track
{
	min-width: 100%;
	min-height: 1px;
}

/***/
.slick-slider.type1 .slick-arrow
{
	width: 30px;
	height: 60px;
	z-index: 25;
	transition: all 0.3s ease 0s;
}
.slick-slider.type1 .slick-arrow.slick-prev
{
	left: 25px;
}
.slick-slider.type1 .slick-arrow.slick-next
{
	right: 25px;
}
.slick-slider.type1 .slick-arrow.slick-prev:hover
{
	left: 15px;
}
.slick-slider.type1 .slick-arrow.slick-next:hover
{
	right: 15px;
}
.slick-slider.type1 .slick-arrow::before
{
	font-family: "FontAwesome";
	font-size: 6rem;
	text-align: center;
	color: var(--color_white);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.slick-slider.type1 .slick-arrow.slick-prev::before
{
	content: "\f104";
}
.slick-slider.type1 .slick-arrow.slick-next::before
{
	content: "\f105";
}
.slick-slider.type1 .slick-arrow:hover::before
{
	color: var(--color_1);
}

/***/

.slick-slider.type1 .slick-dots
{
	position: absolute;
	display: block;
	padding: 0;
	margin: 0;
	bottom: 15px;
	width: 100%;
	list-style: none;
	text-align: center;
}
.slick-slider.type1 .slick-dots li
{
	width: 12px;
	height: 12px;
	text-align: center;
}
.slick-slider.type1 .slick-dots li button
{
	border: 1px solid var(--color_white);
	border-radius: 100%;
	margin: auto;
	padding: 0;
	width: 10px;
	height: 10px;
}
.slick-slider.type1 .slick-dots li button:hover,
.slick-slider.type1 .slick-dots li.slick-active button
{
	background-color: var(--color_white);
	width: 12px;
	height: 12px;
}
.slick-slider.type1 .slick-dots li button::before
{
	display: none;
}

/***/

.slick-slider.type2 .slick-arrow
{
	position: absolute;
	border: 1px solid #EEEEEE;
	background-color: #EEEEEE;
	border-radius: 8px;
	width: 45px;
	height: 45px;
	text-align: center;
	z-index: 25;
	cursor: pointer;

	-webkit-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.slick-slider.type2 .slick-arrow:hover
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}
.slick-slider.type2 .slick-arrow.slick-prev
{
	left: 0;
}
.slick-slider.type2 .slick-arrow.slick-next
{
	right: 0;
}
.slick-slider.type2 .slick-arrow::before
{
	font-family: "FontAwesome";
	font-size: 2.5rem;
	color: #666666;
}
.slick-slider.type2 .slick-arrow:hover::before
{
	color: var(--color_white);
}
.slick-slider.type2 .slick-arrow.slick-prev::before
{
	content: "\f104";
}
.slick-slider.type2 .slick-arrow.slick-next::before
{
	content: "\f105";
}

/***/

.slick-slider.type2 .slick-dots
{
	position: absolute;
	display: block;
	padding: 0;
	margin: 0;
	bottom: 15px;
	width: 100%;
	list-style: none;
	text-align: center;
}
.slick-slider.type2 .slick-dots li
{
}
.slick-slider.type2 .slick-dots li button
{
}
.slick-slider.type2 .slick-dots li button::before
{
	font-size: 12px;
	color: #666666;
	opacity: 1;
}
.slick-slider.type2 .slick-dots li.slick-active button::before,
.slick-slider.type2 .slick-dots li button:hover::before
{
	color: #FF9000;
}

/***********************************************************************/
/***********************************************************************/

header.headerCD
{
	position: relative;
	z-index: 600;
}

/*****/

header.headerCD .el_headerTop_14108807
{
	background-color: var(--color_7);
	color: var(--color_white);
}
/***/
header.headerCD .el_headerTop_14108807 .leftBlock
{
}
header.headerCD .el_headerTop_14108807 .leftBlock ul
{
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li
{
	position: relative;
	display: inline-block;
	padding: 0 15px;
}
header.headerCD .el_headerTop_14108807 .leftBlock > ul > li
{
	border-left: 1px solid #424548;
	line-height: 60px;
}
header.headerCD .el_headerTop_14108807 .leftBlock > ul > li:last-child
{
	border-right: 1px solid #424548;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li a,
header.headerCD .el_headerTop_14108807 .leftBlock ul li span
{
	padding: 0 5px;
	font-size: 1.3rem;
	font-weight: 300;
	text-transform: uppercase;
	color: var(--color_13);
	cursor: pointer;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li span.toggleButtom
{
	padding: 0 5px 0 0;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li a
{
	color: var(--color_8);
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem .titleShort
{
	display: none;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem > a,
header.headerCD .el_headerTop_14108807 .leftBlock ul li a:hover,
header.headerCD .el_headerTop_14108807 .leftBlock ul li span
{
	color: var(--color_13);
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem > span::after
{
	display: inline-block;
	content: "\f107";
	margin-left: 3px;
	font-family: "FontAwesome";

}
header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem > span.open::after
{
	content: "\f106";
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li a i
{
	margin-right: 5px;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li ul
{
	display: none;
	position: absolute;
	margin-top: 10px;
	background-color: var(--color_7);
	border: 1px solid #CCCCCC;
	top: 100%;
	left: 0;
	z-index: 100;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li ul#phoneList
{
	min-width: 180px;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li ul.open
{
	display: block;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li ul li
{
	display: block;
	border-bottom: 1px solid #444444;
	line-height: 50px;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li ul li.first
{
	display: none;
}
header.headerCD .el_headerTop_14108807 .leftBlock ul li ul li:last-child
{
	border-bottom: none;
}

@media (max-width: 500px)
{
	header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem
	{
		padding: 0 10px;
	}
	header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem .title
	{
		display: none;
	}
	header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem .titleShort
	{
		display: inline-block;
	}

	header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem .phoneItem > i
	{
		margin: 0;
	}
	/*header.headerCD .el_headerTop_14108807 .leftBlock ul li.mainItem .phoneItem > span*/
	/*{*/
	/*	display: none;*/
	/*}*/
	header.headerCD .el_headerTop_14108807 .leftBlock ul li ul li.first
	{
		display: block;
	}
}

/**********/

header.headerCD .el_headerTop_14108807 .loginCol
{
	position: relative;
	display: -ms-flex;
	display: flex;
	justify-content: flex-end;

	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
	max-width: 300px;
}
/**/
header.headerCD .el_headerTop_14108807 .loginCol .loginToggleButtonBlock
{
	display: none;
	border-right: 1px solid #424548;
	border-left: 1px solid #424548;
	padding: 0 10px;
	height: 60px;
	line-height: 60px
}
header.headerCD .el_headerTop_14108807 .loginCol .loginToggleButtonBlock button
{
	background-color: transparent;
	border: none;
	color: var(--color_13);
	cursor: pointer;
}
header.headerCD .el_headerTop_14108807 .loginCol .loginToggleButtonBlock button::after
{
	display: inline-block;
	content: "\f107";
	margin-left: 3px;
	font-family: "FontAwesome";

}
header.headerCD .el_headerTop_14108807 .loginCol .loginToggleButtonBlock button.open::after
{
	content: "\f106";
}


/**/
header.headerCD .el_headerTop_14108807 .loginCol ul
{
	border-right: 1px solid #424548;
	border-left: 1px solid #424548;
	padding: 0 20px;
	height: 60px;
	line-height: 60px
}
header.headerCD .el_headerTop_14108807 .loginCol ul li
{
	display: inline-block;
}
header.headerCD .el_headerTop_14108807 .loginCol ul li.or
{
	margin: 0 5px;
}
header.headerCD .el_headerTop_14108807 .loginCol ul li a,
header.headerCD .el_headerTop_14108807 .loginCol ul li span
{
	font-size: 1.1rem;
	font-weight: 300;
	text-transform: uppercase;
	cursor: pointer;
}
header.headerCD .el_headerTop_14108807 .loginCol ul li a
{
	color: var(--color_white);
}
header.headerCD .el_headerTop_14108807 .loginCol ul li a:hover,
header.headerCD .el_headerTop_14108807 .loginCol ul li a.active
{
	color: var(--color_1);
}
header.headerCD .el_headerTop_14108807 .loginCol ul li span
{
	color: var(--color_3);
}

@media (max-width: 767px)
{
	header.headerCD .el_headerTop_14108807 .loginCol
	{
		-ms-flex: 0 0 75px;
		flex: 0 0 75px;
		max-width: 75px;
	}

	header.headerCD .el_headerTop_14108807 .loginCol .loginToggleButtonBlock
	{
		display: block;
	}
	header.headerCD .el_headerTop_14108807 .loginCol ul
	{
		display: none;
		position: absolute;
		background-color: var(--color_7);
		border: 1px solid #CCCCCC;
		margin-top: 10px;
		top: 100%;
		right: 15px;
		min-width: 200px;
		height: auto;
		z-index: 100;
	}
	header.headerCD .el_headerTop_14108807 .loginCol ul.open
	{
		display: block;
	}

	header.headerCD .el_headerTop_14108807 .loginCol ul li
	{
		display: block;
		border-bottom: 1px solid #444444;
		line-height: 50px;
	}
	header.headerCD .el_headerTop_14108807 .loginCol ul li:last-child
	{
		border-bottom: none;
	}
	header.headerCD .el_headerTop_14108807 .loginCol ul li.or
	{
		display: none;
	}
	header.headerCD .el_headerTop_14108807 .loginCol ul li a
	{
		color: var(--color_8);
	}
	header.headerCD .el_headerTop_14108807 .loginCol ul li a:hover,
	header.headerCD .el_headerTop_14108807 .loginCol ul li a.active
	{
		color: var(--color_13);
	}
}

/*************************/

header.headerCD .el_headerMiddle_14108807
{
	background-color: var(--color_white);
}
header.headerCD .el_headerMiddle_14108807 .row
{
	align-items: center;
}

/***/

header.headerCD .el_headerMiddle_14108807 .logoCol
{
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
	max-width: 300px;
	padding-top: 5px;
	padding-bottom: 5px;
}
header.headerCD .el_headerMiddle_14108807 .logoCol a
{
	display: inline-block;
	max-width: 200px;
	max-height: 70px;
}
header.headerCD .el_headerMiddle_14108807 .logoCol a img
{
	max-width: 100%;
	max-height: inherit;
}

@media (max-width: 575px)
{
	header.headerCD .el_headerMiddle_14108807 .logoCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 15px;
		text-align: center;
	}
}

/***/

header.headerCD .el_headerMiddle_14108807 .mobileMenuBtnCol
{
	display: none;
}

@media (max-width: 1200px)
{
	header.headerCD .el_headerMiddle_14108807 .mobileMenuBtnCol
	{
		display: block;
	}
}
@media (max-width: 575px)
{
	header.headerCD .el_headerMiddle_14108807 .mobileMenuBtnCol
	{
		padding: 15px 15px;
	}
}

/***/

header.headerCD .el_headerMiddle_14108807 .navCol
{
	padding: 0;
}
@media (max-width: 1200px)
{
	header.headerCD .el_headerMiddle_14108807 .navCol
	{
		display: none;
	}
}

header.headerCD .el_headerMiddle_14108807 .navCol nav
{
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul
{
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li
{
	position: relative;
	display: inline-block;
	padding: 0 15px;
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li a
{
	display: block;
	padding: 0 5px;
	line-height: 60px;
	font-size: 1.4rem;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--color_12);
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li a:hover,
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li a.active
{
	color: var(--color_1);
}

header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul
{
	display: none;
	position: absolute;
	background-color: var(--color_7);
	border: 1px solid rgba(0, 0, 0, 0.15);
	top: 100%;
	left: 0;
	min-width: 250px;
	z-index: 30;
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul ul
{
	top: -1px;
	left: 100%;
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li:hover > ul
{
	display: block;
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul:hover
{
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul li
{
	display: block;
	border-bottom: 1px solid #444444;
	padding: 0 0;
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul li a
{
	position: relative;
	display: block;
	padding: 15px 15px;
	width: 100%;
	line-height: 1.4;
	font-size: 1.1rem;
	text-transform: uppercase;
	color: var(--color_white);
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul li:hover > a,
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul li a:hover,
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul li a.active
{
	color: var(--color_13);
}
header.headerCD .el_headerMiddle_14108807 .navCol nav ul li ul li a i
{
	position: absolute;
	top: 17px;
	right: 5px;
}

/***/

header.headerCD .el_headerMiddle_14108807 .searchCol
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
	max-width: 60px;
	padding: 0;
}
header.headerCD .el_headerMiddle_14108807 .searchCol .toggleSearchButton
{
	position: relative;
	background-color: transparent;
	border: transparent;
	top: -4px;
	font-size: 2rem;
	color: var(--color_12);
	cursor: pointer;
}
header.headerCD .el_headerMiddle_14108807 .searchCol .toggleSearchButton:hover,
header.headerCD .el_headerMiddle_14108807 .searchCol .toggleSearchButton.open
{
	color: var(--color_1);
}
header.headerCD .el_headerMiddle_14108807 .searchCol .searchBlock
{
	display: none;
	position: absolute;
	background-color: var(--color_7);
	top: 100%;
	right: 0;
	min-width: 320px;
}
header.headerCD .el_headerMiddle_14108807 .searchCol .searchBlock.open
{
	display: block;
}
header.headerCD .el_headerMiddle_14108807 .searchCol .searchBlock input
{
	float: left;
	background-color: var(--color_7);
	border: none;
	padding: 0 15px;
	width: calc(100% - 30px);
	height: 40px;
	color: var(--color_8);
}
header.headerCD .el_headerMiddle_14108807 .searchCol .searchBlock button
{
	float: right;
	background-color: var(--color_7);
	border: none;
	width: 30px;
	height: 40px;
	font-size: 1.8rem;
	color: var(--color_8);
	cursor: pointer;
}

@media (max-width: 575px)
{
	header.headerCD .el_headerMiddle_14108807 .searchCol
	{
		padding: 15px 0;
	}
}

@media (max-width: 480px)
{
	header.headerCD .el_headerMiddle_14108807 .searchCol .searchBlock
	{
		right: 50%;
		min-width: 270px;
		-webkit-transform: translate(50%, 0);
		-ms-transform: translate(50%, 0);
		transform: translate(50%, 0);
	}
}

/***/

header.headerCD .el_headerMiddle_14108807 .wishlistCol
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
	max-width: 60px;
	padding: 0;
}
header.headerCD .el_headerMiddle_14108807 .wishlistCol a.wishlistBtn
{
	position: relative;
	display: block;
	top: -4px;
	font-size: 2rem;
	color: var(--color_12);
}
header.headerCD .el_headerMiddle_14108807 .wishlistCol a.wishlistBtn span
{
	position: absolute;
	display: inline-block;
	background-color: #E19824;
	border-radius: 50%;
	box-shadow: 1px 2px 2px #CDCDCD;
	text-shadow: 1px 2px 2px #CDCDCD;
	top: -10px;
	right: -12px;
	height: 18px;
	width: 18px;
	font-family: var(--font-family-2) !important;
	line-height: 18px;
	font-size: 0.9rem;
	text-align: center;
	color: var(--color_white);
}

@media (max-width: 575px)
{
	header.headerCD .el_headerMiddle_14108807 .wishlistCol
	{
		padding: 15px 0;
	}
}

/***/

header.headerCD .el_headerMiddle_14108807 .cartCol
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
	max-width: 60px;
	padding: 0;
}
header.headerCD .el_headerMiddle_14108807 .cartCol a.cart
{
	position: relative;
	display: block;
	top: -4px;
	font-size: 2rem;
	color: var(--color_12);
}
header.headerCD .el_headerMiddle_14108807 .cartCol a.cart span
{
	position: absolute;
	display: inline-block;
	background-color: #E19824;
	border-radius: 50%;
	box-shadow: 1px 2px 2px #CDCDCD;
	text-shadow: 1px 2px 2px #CDCDCD;
	top: -10px;
	right: -12px;
	height: 18px;
	width: 18px;
	font-family: var(--font-family-2) !important;
	line-height: 18px;
	font-size: 0.9rem;
	text-align: center;
	color: var(--color_white);
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock
{
	position: absolute;
	display: none;
	background-color: var(--color_7);
	top: 100%;
	right: 15px;
	padding: 10px 0;
	width: 300px;
}
header.headerCD .el_headerMiddle_14108807 .cartCol:hover .cartInfoBlock
{
	display: block;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock
{
	height: auto;
	max-height: 300px;
	overflow-y: auto;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item
{
	border-bottom: 1px solid #444444;
	padding: 20px 20px;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item:last-child
{
	border-bottom: none;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .imageBlock
{
	float: left;
	padding-right: 20px;
	width: 120px;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .infoBlock
{
	float: left;
	width: calc(100% - 120px);
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .infoBlock p
{
	margin-top: 7px;
	font-size: 1.1rem;
	color: var(--color_8);
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .infoBlock p:first-child
{
	margin-top: 0;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .infoBlock .title a
{
	line-height: 1.4;
	font-family: var(--font-family-2);
	font-size: 1.1rem;
	font-style: italic;
	color: var(--color_white);
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .infoBlock .title a:hover
{
	color: var(--color_13);
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .infoBlock .price
{
	font-weight: bold;
	color: #CCCCCC;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .infoBlock .delete
{
	margin-top: 7px;
	background-color: transparent;
	border: none;
	font-size: 1.1rem;
	color: var(--color_8);
	cursor: pointer;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .offerBlock .item .infoBlock .delete:hover
{
	color: #FF0000;
}
/**/
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .empty
{
	border-bottom: 1px solid #444444;
	margin: 0 20px;
	padding: 20px 0;
	line-height: 1.4;
	font-size: 1.4rem;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--color_13);
}
/**/
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .totalBlock
{
	border-bottom: 1px solid #444444;
	margin: 0 20px;
	padding: 20px 0;
	line-height: 3.4rem;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--color_13);
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .totalBlock span
{
	margin-right: 5px;
}
/**/
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .buttonBlock
{
	margin: 0 20px;
	padding: 20px 0;
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .buttonBlock a
{
	/*background-color: var(--color_1);*/
	/*border: 1px solid var(--color_1);*/
	/*border-radius: 8px;*/
	/*padding: 0 20px;*/
	/*font-weight: bold;*/
	/*text-transform: uppercase;*/
	/*color: var(--color_white);*/
}
header.headerCD .el_headerMiddle_14108807 .cartCol .cartInfoBlock .buttonBlock a:hover
{
	background-color: #e19824;
	border: 1px solid #e19824;
	color: var(--color_white);
}

@media (max-width: 575px)
{
	header.headerCD .el_headerMiddle_14108807 .cartCol
	{
		padding: 15px 15px 15px 0;
	}
}

/************************************/

header.headerCD #showMenuButton,
header.headerCD #closeMenuButton
{
	cursor: pointer;
}
header.headerCD #showMenuButton
{
	background-color: var(--color_white);
	border: 1px solid var(--color_white);
	border-radius: 4px;
	width: 42px;
	height: 42px;
	line-height: 40px;
	font-size: 2.8rem;
	text-align: center;
	color: #666666;
}

header.headerCD #closeMenuButton
{
	position: absolute;
	top: 10px;
	right: 8px;
	width: 30px;
	height: 30px;
	font-size: 2rem;
	background-color: transparent;
	border: none;
}

header.headerCD .mobileMenuBlock
{
	position: fixed;
	display: block;
	background-color: var(--color_white);
	top: 0;
	left: -100%;
	padding: 50px 15px 30px 15px;
	height: 100%;
	width: 70%;
	overflow: auto;
	z-index: 1000;
	transition: all 0.5s ease 0s;
	box-shadow: 0 0 10px 5px rgba(0,0,0, 0.5);
}
header.headerCD .mobileMenuBlock.open
{
	left: 0;
}
header.headerCD .mobileMenuBlock ul
{
}
header.headerCD .mobileMenuBlock ul li
{
	position: relative;
	border-bottom: 1px solid #dddddd;
}
header.headerCD .mobileMenuBlock ul li .toggleBtn
{
	position: absolute;
	display: inline-block;
	top: 7px;
	right: 10px;
	font-size: 20px;
	padding: 5px;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
header.headerCD .mobileMenuBlock ul li .toggleBtn:before
{
	display: inline-block;
	content: '\f196';
	font-family: "FontAwesome";
}
header.headerCD .mobileMenuBlock ul li .toggleBtn.open:before
{
	content: '\f147';
}

header.headerCD .mobileMenuBlock ul li a
{
	display: block;
	position: relative;
	padding: 10px 30px 10px 0;
	line-height: 25px;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_12);
}
header.headerCD .mobileMenuBlock ul li:hover > a,
header.headerCD .mobileMenuBlock ul li > a.active
{
	color: var(--color_8);
}

header.headerCD .mobileMenuBlock ul li ul
{
	display: none;
	padding-left: 10px;
}
header.headerCD .mobileMenuBlock ul li ul.open
{
	display: block;
	padding-left: 16px;
}
header.headerCD .mobileMenuBlock ul ul li
{
	border-bottom: none;

}
header.headerCD .mobileMenuBlock ul ul li a
{
	text-transform: none;
	font-weight: 700;
	color: var(--color_12);
}
header.headerCD .mobileMenuBlock ul ul li ul li a
{
	text-transform: none;
	font-weight: 400;
	color: red;
}
header.headerCD .mobileMenuBlock ul ul li ul li a
{
	font-family: var(--font-family-2) !important;
	line-height: 1;
	font-size: 1.4rem;
	font-style: italic;
	transition: all 0.5s ease-out 0s;
	color: var(--color_12);
}
header.headerCD .mobileMenuBlock ul ul li ul li a:hover
{
	padding-left: 15px;
	color: var(--color_8);
}

@media (max-width: 575px)
{
	header.headerCD .mobileMenuBlock
	{
		width: 95%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_pageTitle_14108807
{
}
.el_pageTitle_14108807 h1
{
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 25px;
	font-family: var(--font-family-1);
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	font-style: normal;
	color: var(--color_7);
}
/**/
.el_pageTitle2_14108807
{
}
.el_pageTitle2_14108807 h1
{
	margin-bottom: 10px;
	line-height: 2rem;
	font-family: var(--font-family-2);
	font-size: 1.8rem;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	color: var(--color_2);
}

/***********************************************************************/
/***********************************************************************/

.navigationLineCD
{
}
.navigationLineCD ul
{
	background-color: var(--color_white);
	margin: 20px 0;
	padding-left: 0;
	padding-right: 0;
}
.navigationLineCD ul li
{
	display: inline-block;
}
.navigationLineCD ul li a,
.navigationLineCD ul li span
{
	display: inline-block;
	font-family: var(--font-family-2);
	font-style: italic;
	color: var(--color_1);
}
.navigationLineCD ul li a,
.navigationLineCD ul li a *
{
	color: var(--color_12);
}
.navigationLineCD ul li a:hover,
.navigationLineCD ul li a:hover *
{
	color: var(--color_1);
}

/***********************************************************************/
/***********************************************************************/

/***********************************************************************/
/*****  ASIDE  *****/
/***********************************************************************/

.asideBlockCD
{
}

.asideBlockCD .showLeftMenuButton
{
	display: none;
	min-width: 150px;
}
.asideBlockCD .showLeftMenuButton i
{
	margin-right: 10px;
}

.asideBlockCD .asideMenuButtonsBlock
{
	display: none;
	position: relative;
	height: 60px;
}
.asideBlockCD .asideMenuButtonsBlock.offerList > div
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-around;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 0;
}
.asideBlockCD .asideMenuButtonsBlock.scroll > div
{
	position: fixed;
	background-color: var(--color_white);
	top: 0;
	/*top: 72px;*/
	padding: 10px 10px;
	box-shadow: 2px 2px 5px rgba(63,63,63, 0.5);
	z-index: 100;
}

.asideBlockCD .asideMenuButtonsBlock button
{
	display: block;
	width: calc(50% - 5px);
	margin-right: 5px;
	cursor: pointer;
}
.asideBlockCD .asideMenuButtonsBlock button:hover
{
}

/******/

.asideMenuParameterBlock
{
}
.asideMenuParameterBlock .parameterListBlock
{
	position: relative;
}
.asideMenuParameterBlock .parameterListBlock .closeButton
{
	display: none;
	position: fixed;
	top: 0;
	left: -100%;
	width: 320px;
	height: 40px;
	opacity: 0;
	transition: all 0.7s ease 0s;
	z-index: 2;
}
.asideMenuParameterBlock .parameterListBlock .closeButton .closeParameterButton
{
	position: absolute;
	top: 8px;
	right: 10px;
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 28px;
}
.asideMenuParameterBlock .parameterListBlock .closeButton .closeParameterButton i
{
}

.asideBlockCD .quickSearchBrandBlock
{
	margin-bottom: 10px;
}
.asideBlockCD .quickSearchBrandBlock input
{
}

/***********************************************************************/

.el_catalogBlock_14108807
{
	margin-bottom: 30px;
}
.el_catalogBlock_14108807 ul
{
}
.el_catalogBlock_14108807 ul li
{
	position: relative;
	display: block;
	border-bottom: 1px solid var(--color_11);
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.el_catalogBlock_14108807 ul li .toggle
{
	position: absolute;
	background-color: transparent;
	border: none;
	top: 0;
	right: 0;
	font-size: 1.6rem;
	cursor: pointer;
}
.el_catalogBlock_14108807 ul li .toggle::after
{
	display: inline-block;
	content: "\f067";
	font-family: "FontAwesome";
}
.el_catalogBlock_14108807 ul li .toggle.open::after
{
	content: "\f068";
}
.el_catalogBlock_14108807 ul li a
{
	display: inline-block;
	padding-right: 15px;
	font-family: var(--font-family-1);
	line-height: 1.2;
	font-size: 1.4rem;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	color: var(--color_7);
}
.el_catalogBlock_14108807 ul li ul
{
	display: none;
	padding-top: 15px;
}
.el_catalogBlock_14108807 ul li ul.open
{
	display: block;
}
.el_catalogBlock_14108807 ul li ul li
{
	border-bottom: none;
	margin-bottom: 0;
}
.el_catalogBlock_14108807 ul li ul li a
{
	font-family: var(--font-family-2);
	font-style: italic;
	font-weight: 400;
	text-transform: capitalize;
	color: #666666;
	transition: all 0.3s ease-out 0s;
}
.el_catalogBlock_14108807 ul li ul li a:hover
{
	margin-left: 15px;
	color: var(--color_1);
}
.el_catalogBlock_14108807 ul li ul li ul
{
	padding-left: 15px;
}

/**/

.el_asideBlock_14108807 .filterBlock
{
	margin-bottom: 30px;
}
.el_asideBlock_14108807 .filterBlock:last-child
{
	/*margin-bottom: 0;*/
}
.el_asideBlock_14108807 .filterBlock .el_filterBlockTitle_14108807
{
	position: relative;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-family: var(--font-family-1);
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	font-style: normal;
	color: var(--color_7);
}
.el_asideBlock_14108807 .filterBlock .el_filterBlockTitle_14108807 .toggleButton
{
	display: none;
	position: absolute;
	background-color: transparent;
	border: none;
	top: 0;
	right: 0;
	font-size: 1.5rem;
	cursor: pointer;
}
.el_asideBlock_14108807 .filterBlock .el_filterBlockTitle_14108807 .toggleButton::after
{
	display: inline-block;
	content: "\f067";
	font-family: "FontAwesome";
}
.el_asideBlock_14108807 .filterBlock .el_filterBlockTitle_14108807 .toggleButton.open::after
{
	content: "\f068";
}
.el_asideBlock_14108807 .filterBlock ul li
{
}
.el_asideBlock_14108807 .filterBlock ul li.hidden
{
	display: none;
}
.el_asideBlock_14108807 .filterBlock ul li.shown
{
	display: block;
}
.el_asideBlock_14108807 .filterBlock ul li a
{
}
.el_asideBlock_14108807 .filterBlock .showAndHideParameter
{
	padding: 15px 0 10px 0;
}
.el_asideBlock_14108807 .filterBlock .showAndHideParameter a
{
	display: inline-block;
	position: relative;
	border-bottom: 1px dashed #E19824;
	padding-bottom: 3px;
	font-size: 1.4rem;
	color: #E19824;
	cursor: pointer;
}
.el_asideBlock_14108807 .filterBlock .showAndHideParameter a:hover
{
	border-color: var(--color_1);
	color: var(--color_1);
}
.el_asideBlock_14108807 .filterBlock .showAndHideParameter a i
{
	position: absolute;
	top: 50%;
	left: calc(100% + 5px);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

/**/

.el_asideBlock_14108807
{
	margin-bottom: 30px;
}
.el_asideBlock_14108807:last-child
{
	margin-bottom: 0;
}
.el_asideBlock_14108807 ul
{
}
.el_asideBlock_14108807 ul li
{
	margin-top: 10px;
}
.el_asideBlock_14108807 ul li:first-child
{
	margin-top: 0;
}
.el_asideBlock_14108807 ul li a
{
	display: inline-block;
	font-family: var(--font-family-2);
	line-height: 1.4;
	font-size: 1.6rem;
	font-weight: 400;
	font-style: italic;
	text-transform: capitalize;
	color: #666666;
}
.el_asideBlock_14108807 ul li a:hover,
.el_asideBlock_14108807 ul li a.active,
.el_asideBlock_14108807 ul li a.checked
{
	color: var(--color_1);
}
.el_asideBlock_14108807 ul li a.disabled
{
	opacity: 0.7;
	cursor: not-allowed;
}

/**/

.el_offerPopularBlock_14108807
{
	margin-bottom: 20px;
}
.el_offerPopularBlock_14108807 .sliderBlock
{
}
.el_offerPopularBlock_14108807 .sliderBlock .el_offerShortView_14108807
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

/**/

.el_asideBannerBlock_14108807
{
	margin-bottom: 30px;
}
.el_asideBannerBlock_14108807 .initBanner
{
	max-width: 240px;
	max-height: 240px;
	overflow: hidden;
}
.el_asideBannerBlock_14108807 .initBanner .item
{
	width: 100%;
	height: 100%;
}
.el_asideBannerBlock_14108807 .initBanner .item a
{
	display: flex;
	justify-content: center;
	align-items:center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 100%;
	width: 100%;
}

/**********/

@media (max-width: 991px)
{
	.asideBlockCD .asideMenuButtonsBlock
	{
		display: block;
	}

	.asideBlockCD > .content
	{
		display: block;
		position: fixed;
		top: 0;
		left: -100%;
		bottom: 0;
		width: 0;
		z-index: 1000;
	}

	.asideBlockCD .parameterListBlock
	{
		position: fixed !important;
		background-color: var(--color_white);
		border: 1px solid var(--color_1);
		top: 0;
		left: -100%;
		padding: 50px 10px 20px 10px;
		height: 100%;
		width: 320px;
		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: block;
		left: 1px;
		opacity: 1;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_centralBanner_14108807
{
	margin-bottom: 30px;
}
.el_centralBanner_14108807 .initBanner
{
	position: relative;
	margin-bottom: 0;
	width: 100%;
	max-height: 740px;
	overflow: hidden;
}
.el_centralBanner_14108807 .initBanner .item
{
	width: 100%;
	height: 100%;
}
.el_centralBanner_14108807 .initBanner .item a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 0;
	padding-bottom: 38.54166666666667%;
}

@media (max-width: 767px)
{
	.el_centralBanner_14108807 .initBanner .item a
	{
		padding-bottom: 42%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_bannerBlock_14108807
{
}
.el_bannerBlock_14108807
{
}
.el_bannerBlock_14108807 .innerWrapper
{
}
.el_bannerBlock_14108807 .innerWrapper .bannerItem
{
	margin-bottom: 30px;
}
.el_bannerBlock_14108807 .innerWrapper .bannerItem .img_wrap
{
	padding-bottom: 28.08%;
}

/*************************/

.el_bannerBlock2_14108807
{
}
.el_bannerBlock2_14108807 .innerWrapper
{
}
.el_bannerBlock2_14108807 .innerWrapper .bannerItem
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	margin-bottom: 30px;
}
.el_bannerBlock2_14108807 .innerWrapper .bannerItem .img_wrap
{
	padding-bottom: 47.37%;
}

@media (max-width: 991px)
{
	.el_bannerBlock2_14108807 .innerWrapper .bannerItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*************************/

.el_bannerBlock3_14108807
{
}
.el_bannerBlock3_14108807 .innerWrapper
{
	justify-content: center;
}
.el_bannerBlock3_14108807 .innerWrapper .bannerItem
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 30px;
}
.el_bannerBlock3_14108807 .innerWrapper .bannerItem .img_wrap
{
	padding-bottom: 72.97%;
}

@media (max-width: 991px)
{
	.el_bannerBlock3_14108807 .innerWrapper .bannerItem
	{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}
@media (max-width: 575px)
{
	.el_bannerBlock3_14108807 .innerWrapper .bannerItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow5 .el_brandItem_14108807
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
	margin-bottom: 30px;
}
@media (max-width: 1200px)
{
	.typeContentBlock1.inRow5 .el_brandItem_14108807
	{
	}
}
@media (max-width: 991px)
{
	.typeContentBlock1.inRow5 .el_brandItem_14108807
	{
		-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_brandItem_14108807
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
@media (max-width: 500px)
{
	.typeContentBlock1.inRow5 .el_brandItem_14108807
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 360px)
{
	.typeContentBlock1.inRow5 .el_brandItem_14108807
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************/

.el_brandItem_14108807
{
}
.el_brandItem_14108807 .innerWrapper
{
	display: block;
}
.el_brandItem_14108807 .innerWrapper .title
{
	display: block;
	margin-top: 15px;
	min-height: 40px;
	line-height: 2rem;
	font-size: 1.4rem;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_12);
}
.el_brandItem_14108807 .innerWrapper:hover .title
{
	color: var(--color_1);
}

/***********************************************************************/
/***********************************************************************/

/***** smartFilterListBlock *****/

.smartFilterListBlock
{
}
.smartFilterListBlock .innerWrapper
{
	position: relative;
	float: left;
	margin-bottom: 16px;
	padding-bottom: 20px;
	width: calc(100% - 155px);
	max-height: 56px;
	overflow-x: auto;
	overflow-y: hidden;
}
.smartFilterListBlock .innerWrapper.open
{
	max-height: 100%;
	overflow: unset;
}
.smartFilterListBlock .innerWrapper::after
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	right: 0;
	width: 30px;
	height: 34px;
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
.smartFilterListBlock .innerWrapper.open::after
{
	display: none;
}

.smartFilterListBlock .innerWrapper::-webkit-scrollbar-track
{
	background-color: #F8F8F8;
}
.smartFilterListBlock .innerWrapper::-webkit-scrollbar-thumb
{
	background-color: rgba(0, 0, 0, 0.2);
}
.smartFilterListBlock .innerWrapper::-webkit-scrollbar-button
{
	background-color: var(--color_1);
}
.smartFilterListBlock .innerWrapper::-webkit-scrollbar-corner
{
	background-color: #000000;
}

.smartFilterListBlock .smartFilterList
{
	display: -ms-flex;
	display: flex;
	flex-wrap: nowrap;
}
.smartFilterListBlock .innerWrapper.open .smartFilterList
{
	display: block;
}
.smartFilterListBlock .smartFilterList li
{
	display: inline-block;
	white-space: nowrap;
	vertical-align: top;
	min-width: auto;
	margin-right: 10px;
	margin-bottom: 10px;
}
.smartFilterListBlock .innerWrapper.open .smartFilterList li
{
	white-space: unset;
	vertical-align: top;
	min-width: auto;
}
.smartFilterListBlock .smartFilterList a
{
	display: inline-block;
	border: 1px solid var(--color_1);
	border-radius: 8px;
	padding: 9px 20px 10px 20px;
	line-height: 1;
	font-size: 1.3rem;
	color: var(--color_1);
}
.smartFilterListBlock .smartFilterList a:hover,
.smartFilterListBlock .smartFilterList a.active
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}

/*****/

.smartFilterListBlock .buttonLine
{
	float: right;
}
.smartFilterListBlock .buttonLine a
{
	position: relative;
	padding: 0 25px;
}
.smartFilterListBlock .buttonLine a:hover
{
}
.smartFilterListBlock .buttonLine a i
{
}

/***********************************************************************/
/***********************************************************************/

.el_orderBlock_14108807
{
	margin-bottom: 30px;
}

/***/

.el_orderBlock_14108807 .closeButton
{
	display: none;
	position: fixed;
	top: 1px;
	right: -100%;
	width: 318px;
	height: 40px;
	opacity: 0;
	transition: all 0.7s ease 0s;
	z-index: 2;
}
.el_orderBlock_14108807 .closeButton .closeOrderButton
{
	position: absolute;
	top: 8px;
	right: 10px;
	padding: 0;
	min-width: 30px;
	height: 30px;
	line-height: 0;
}
.el_orderBlock_14108807 .closeButton .closeOrderButton i
{
	font-size: 1.5rem;
}

/***/

.el_orderBlock_14108807 .sortCol
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.el_orderBlock_14108807 .sortCol .title
{
	margin-right: 15px;
}
.el_orderBlock_14108807 .sortCol select
{
	background-color: var(--color_3);
	border: none;
	width: auto;
	min-width: 180px;
	height: 40px;
	font-family: var(--font-family-2);
	font-size: 1.4rem;
	font-style: italic;
	color: var(--color_7);
}
.el_orderBlock_14108807 .amountCol
{
	-ms-flex: 0 0 150px;
	flex: 0 0 150px;
	max-width: 150px;
}
.el_orderBlock_14108807 .amountCol p
{
	border-bottom: 1px solid #b2b2b2;
	padding-bottom: 8px;
	font-family: var(--font-family-2);
	font-size: 1.3rem;
	text-align: center;
	font-style: italic;
}

@media (max-width: 991px)
{
	.el_orderBlock_14108807
	{
		position: fixed;
		background-color: var(--color_white);
		border: 1px solid var(--color_1);
		border-radius: 0;
		top: 0;
		right: -100%;
		padding: 50px 10px 20px 10px;
		height: 100%;
		width: 320px;
		opacity: 0;
		overflow: auto;
		z-index: 1000;
		transition: all 0.7s ease 0s;
	}
	.el_orderBlock_14108807.open
	{
		right: 0;
		opacity: 1;
	}
	.el_orderBlock_14108807.open .closeButton
	{
		display: block;
		right: 1px;
		opacity: 1;
	}

	.el_orderBlock_14108807 .sortCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
	}

	.el_orderBlock_14108807 .amountCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 16px;
		order: 1;
	}

	.el_orderBlock_14108807 .orderTypeList
	{
		display: block;
	}
	.el_orderBlock_14108807 .orderTypeList p
	{
		margin-right: 0;
		margin-bottom: 20px;
		text-align: left;
	}
	.el_orderBlock_14108807 .orderTypeList select
	{
		width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_activeFilterBlock_14108807
{
	margin-bottom: 20px;
}
.el_activeFilterBlock_14108807 span
{
	border-bottom: 1px solid #eeeeee;
	margin: 0 15px 10px 0;
	padding-bottom: 10px;
	font-family: var(--font-family-1);
	font-size: 13px;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	color: var(--color_7);
}
.el_activeFilterBlock_14108807 a
{
	margin: 0 10px 10px 0;
}
.el_activeFilterBlock_14108807 a:hover i
{
	color: darkred;
}
.el_activeFilterBlock_14108807 a.resetFilters
{
	border-bottom: 1px solid #B2B2B2;
	padding-bottom: 8px;
	font-family: var(--font-family-2);
	font-size: 1.4rem;
	text-align: center;
	font-style: italic;
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow4 .el_offerShortView_14108807
{
	-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_offerShortView_14108807
{
	margin-bottom: 0;
}

@media (max-width: 991px)
{
	.typeContentBlock1.inRow4 .el_offerShortView_14108807
	{
		-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_offerShortView_14108807
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

/***********************************/

.typeContentBlock2.inRow3 .el_offerShortView_14108807
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 30px;
}
.typeContentBlock2.inRow3.slick-slider .el_offerShortView_14108807
{
	margin-bottom: 0;
}

@media (max-width: 767px)
{
	.typeContentBlock2.inRow3 .el_offerShortView_14108807
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}

/********/

@media (max-width: 1200px)
{
	.typeContentBlock1.inRow4
	{
		margin-left: calc((7px + (15 - 7) * var(--width-coefficient)) * -1);
		margin-right: calc((7px + (15 - 7) * var(--width-coefficient)) * -1);
	}
	.typeContentBlock1.inRow4 .el_offerShortView_14108807
	{
		margin-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	typeContentBlock2.inRow3
	{
		margin-left: calc((7px + (15 - 7) * var(--width-coefficient)) * -1);
		margin-right: calc((7px + (15 - 7) * var(--width-coefficient)) * -1);
	}
	.typeContentBlock2.inRow3 .el_offerShortView_14108807
	{
		padding-left: calc(7px + (15 - 7) * var(--width-coefficient));
		padding-right: calc(7px + (15 - 7) * var(--width-coefficient));
		margin-bottom: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

/*---------------------------------------- wobbler img -------------------*/

/*.wobbler*/
/*{*/
/*	position: absolute !important;*/
/*	display: inline-block;*/
/*	z-index: 15;*/
/*}*/

/*img.wobbler*/
/*{*/
/*	max-width: 100%;*/
/*	max-height: 100%;*/
/*}*/

/*---------------------------------------- wobbler MARK -------------------*/

.wobblerBlock
{
	position: absolute;
	top: 0;
	left: -10px;
	bottom: 42px;
	width: auto;
	z-index: 15;
}
.el_offerPage_14108807 .wobblerBlock
{
	left: 0;
}
.wobblerBlock li
{
	display: block;
	margin-bottom: 5px;
}
.wobblerBlock li span
{
	position: relative;
	display: inline-block;
	background-color: rgba(35,34,34, 0.09);
	border-radius: 0 0 5px 0;
	padding: 5px 10px;
	width: auto;
	line-height: 1.1em;
	font-weight: 700;
	font-size: 1.2rem;
	color: #191919;
}
.wobblerBlock li span::after
{
	position: absolute;
	display: block;
	content: "";
	top: 100%;
	left: 0;
	border-top: 5px solid #191919;
	border-left: 5px solid transparent;
	width: 0;
	height: 0;
}

.wobblerBlock li span.newArrival
{
	background-color: rgba(104,177,125, 0.9);
	color: var(--color_white);
}
.wobblerBlock li span.newArrival::after
{
	border-top: 5px solid #52643B;
}
.wobblerBlock li span.superPrice
{
	background-color: rgba(247, 61, 8, 0.9);
	color: var(--color_white);
}
.wobblerBlock li span.superPrice::after
{
	border-top: 5px solid #FF3300;
}
.wobblerBlock li span.topSales
{
	background-color: rgba(37, 45, 142, 0.9);
	color: var(--color_white);
}
.wobblerBlock li span.topSales::after
{
	border-top: 5px solid #060797;
}
.wobblerBlock li span.discount
{
	background-color: rgba(57,142,221, 0.9);
	color: var(--color_white);
}
.wobblerBlock li span.discount::after
{
	border-top: 5px solid #3166AD;
}

@media (max-width: 500px)
{
	.el_offerShortView_14108807 .wobblerBlock li span
	{
		padding: 5px 5px;
		width: auto;
		line-height: 1.1em;
		font-weight: 600;
		font-size: 1rem;
	}
}

/***/

.showMoreOffer
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 25px;
	text-align: center;
}

/***/

.el_offerShortView_14108807
{
}
.el_offerShortView_14108807 .innerWrapper
{
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	border: 1px solid var(--color_2);
	padding: 10px 10px;
	margin: 0 auto;
	max-width: 400px;
	height: 100%;
	transition: all 0.5s ease 0s;
}
.el_offerShortView_14108807:hover .innerWrapper
{
	background-color: var(--color_white);
	box-shadow: 0 0 3px 3px var(--color_2);
	margin-top: -15px;
	margin-bottom: 15px;
}
.el_offerShortView_14108807.slick-slide:hover .innerWrapper
{
	margin-top: 0;
	margin-bottom: 0;
}
/**/
.el_offerShortView_14108807 .imageBlock
{
	position: relative;
}
.el_offerShortView_14108807 .imageBlock .img_wrap
{
	padding-bottom: 75%;
}
.el_offerShortView_14108807 .imageBlock .img_wrap .el
{
	border-radius: 8px;
	overflow: hidden;
}
.el_offerShortView_14108807 .imageBlock img
{
	position: relative;
	transition: all 0.3s ease 0s;
}
.el_offerShortView_14108807 .imageBlock .first,
.el_offerShortView_14108807:hover .imageBlock .second
{
	position: static;
	opacity: 1;
	z-index: 2;
}
.el_offerShortView_14108807:hover .imageBlock .first,
.el_offerShortView_14108807 .imageBlock .second
{
	position: absolute;
	opacity: 0;
	z-index: 1;
}

.el_offerShortView_14108807 .imageBlock .parameterList
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 15;
}
.el_offerShortView_14108807 .imageBlock .parameterList li
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	width: calc(100% / 5);
}

/**/
.el_offerShortView_14108807 .title
{
	margin-top: 10px;
	margin-bottom: 10px;
	height: 50px;
	overflow: hidden;
}
.el_offerShortView_14108807 .title a
{
	display: inline-block;
	line-height: 1.4;
	font-family: var(--font-family-2);
	font-size: 1.8rem;
	font-style: italic;
	color: var(--color_2);
}
.el_offerShortView_14108807 .title a:hover
{
	color: var(--color_1);
}
/**/
.el_offerShortView_14108807 .offerModItem
{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color_11);
}
.el_offerShortView_14108807 .offerModItem .offerModTitle
{
	margin-top: 5px;
	line-height: 1.4;
	font-family: var(--font-family-2);
	font-size: 1.6rem;
	font-style: italic;
}
.el_offerShortView_14108807 .offerModItem .priceAndBtnBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-top: 10px;
}
.el_offerShortView_14108807 .offerModItem .priceLine
{
	font-family: var(--font-family-2);
	line-height: 1.4;
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--color_12);
}
.el_offerShortView_14108807 .offerModItem .priceLine .price
{
	color: #E19824;
}
.el_offerShortView_14108807 .offerModItem .priceLine .oldPrice
{
	margin-left: 5px;
	font-weight: 400;
	text-decoration: line-through;
	color: #999999;
}
.el_offerShortView_14108807 .offerModItem .cartButton
{
	height: 32px;
}
/**/
.el_offerShortView_14108807 .bottomBlock
{
	display: -ms-flex;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 15px;
	flex: 1 1 auto;
	margin-top: 15px;
}
.el_offerShortView_14108807 .bottomBlock .rateBlock
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	height: 32px;
}
.el_offerShortView_14108807 .bottomBlock .btnItem .btn
{
	height: 32px;
}

@media (max-width: 1200px)
{
	.el_offerShortView_14108807 .title
	{
		height: calc(46px + (50 - 46) * var(--width-coefficient));
	}
	.el_offerShortView_14108807 .title a
	{
		font-size: calc(16px + (18 - 16) * var(--width-coefficient));
	}

	.el_offerShortView_14108807 .offerModItem .offerModTitle
	{
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}

	.el_offerShortView_14108807 .offerModItem .priceAndBtnBlock
	{
		gap: calc(7px + (15 - 7) * var(--width-coefficient));
	}
	.el_offerShortView_14108807 .offerModItem .cartButton
	{
		padding: 0 calc(10px + (20 - 10) * var(--width-coefficient));
	}

	.el_offerShortView_14108807 .bottomBlock
	{
		gap: calc(7px + (15 - 7) * var(--width-coefficient));
		margin-top: calc(10px + (15 - 10) * var(--width-coefficient));
	}
	.el_offerShortView_14108807 .bottomBlock .btnItem .btn
	{
		padding: 0 calc(10px + (20 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 440px)
{
	.el_offerShortView_14108807 .imageBlock .parameterList li
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		width: calc(100% / 3);
	}
	.el_offerShortView_14108807 .priceAndRateBlock .rateCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.rateStar
{
	position: relative;
	display: inline-block !important;
}
.rateStar .starsPassive i
{
	color: var(--color_1);
}
.rateStar .starsActive i
{
	color: var(--color_1);
}

/******************************/

.rateStar.smallStar,
.rateStar.smallStar > div > div
{
	width: 70px;
	height: 15px;
	line-height: 15px;
}
.rateStar.smallStar > div
{
	position: absolute;
	top: 0;
	left: 0;
	height: 15px;
	line-height:15px;
	width: 0;
	overflow: hidden;
}
.rateStar.smallStar > .starsPassive
{
	width: 70px;
}
/**/
.rateStar.smallStar > div i
{
	margin: 0 0;
	font-size: 15px !important;
}
.rateStar.smallStar > div i:first-child
{
	margin-left: 0;
}
.rateStar.smallStar > div i:last-child
{
	margin-right: 0;
}
/******************************/
.rateStar.mediumStar,
.rateStar.mediumStar > div > div
{
	width: 95px;
	height: 20px;
	line-height: 20px;
}
.rateStar.mediumStar > div
{
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	line-height: 20px;
	width: 0;
	overflow: hidden;
}
.rateStar.mediumStar > .starsPassive
{
	width: 95px;
}
/**/
.rateStar.mediumStar > div i
{
	margin: 0 0;
	font-size: 20px !important;
}
.rateStar.mediumStar > div i:first-child
{
	margin-left: 0;
}
.rateStar.mediumStar > div i:last-child
{
	margin-right: 0;
}

/***********************************************************************/
/***********************************************************************/

.el_offerPage_14108807
{
}
.el_offerPage_14108807 .innerWrapper
{
}
.el_offerPage_14108807 .innerWrapper .leftCol
{
	margin-bottom: 20px;
}
.el_offerPage_14108807 .innerWrapper .leftCol .mainImageBlock
{
	margin-bottom: 20px;
	overflow: hidden;
}
.el_offerPage_14108807 .innerWrapper .leftCol .mainImageBlock .mainImage
{
	opacity: 0;
	z-index: 0;
}
.el_offerPage_14108807 .innerWrapper .leftCol .mainImageBlock .mainImage.viewed
{
	opacity: 1;
	z-index: 10;
}

/***/

.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock
{
}
.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider
{
	margin-bottom: 20px;
}
.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item
{
	-ms-flex: 0 0 calc(100% / 5);
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
	margin-bottom: 20px;
}
.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider.slick-slider .item
{
	margin-bottom: 0;
}
.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item .img_wrap
{
}
.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item:hover .img_wrap,
.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item.slick-current .img_wrap
{
}
.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item .img_wrap a
{
}

@media (max-width: 1200px)
{
	.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 991px)
{
	.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}
@media (max-width: 767px)
{
	.el_offerPage_14108807 .innerWrapper .leftCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item
	{
		-ms-flex: 0 0 calc(100% / 5);
		flex: 0 0 calc(100% / 5);
		max-width: calc(100% / 5);
	}
}
@media (max-width: 575px)
{
	.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item
	{
		-ms-flex: 0 0 calc(100% / 4);
		flex: 0 0 calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media (max-width: 380px)
{
	.el_offerPage_14108807 .innerWrapper .leftCol .previewImageBlock .bottomImgSlider .item
	{
		-ms-flex: 0 0 calc(100% / 3);
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

/******************/

.el_offerPage_14108807 .innerWrapper .rightCol
{
	margin-bottom: 20px;
}
.el_offerPage_14108807 .innerWrapper .rightCol .rateStarBlock
{
	margin-bottom: 20px;
}
.el_offerPage_14108807 .innerWrapper .rightCol .rateStarBlock a
{
	display: inline-block;
	margin: 5px 5px 0 0;
	font-family: var(--font-family-2);
	line-height: 18px;
	font-style: italic;
}
.el_offerPage_14108807 .innerWrapper .rightCol .rateStarBlock span
{
	margin: 5px 5px 0 0;
}

/**/

.el_offerPage_14108807 .innerWrapper .rightCol .infoBlock
{
	margin-bottom: 20px;
}
.el_offerPage_14108807 .innerWrapper .rightCol .infoBlock .item
{
	margin-top: 5px;
	font-family: var(--font-family-2);
	line-height: 1.4;
	font-size: 1.6rem;
	font-style: italic;
}
.el_offerPage_14108807 .innerWrapper .rightCol .infoBlock .item:first-child
{
	margin-top: 0;
}

/**/

.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock
{
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .price
{
	margin-bottom: 20px;
	line-height: 1.1;
	font-family: var(--font-family-2);
	font-size: 1.8rem;
	font-weight: 700;
	font-style: italic;
	color: #000000;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .price .priceOld
{
	margin-left: 10px;
	font-weight: 500;
	text-decoration: line-through;
	color: #999999;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .price .priceOld.hide
{
	display: none;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .modifications
{
	margin-bottom: 20px;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock
{
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .qtyWrapper
{
	float: left;
	position: relative;
	margin: 0 20px 20px 0;
	padding-right: 21px;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .qtyWrapper input
{
	float: left;
	max-width: 150px;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .qtyWrapper button
{
	position: absolute;
	display: block;
	background-color: var(--color_white);
	border: 1px solid var(--color_13);
	right: 0;
	width: 21px;
	height: 21px;
	font-size: 1.2rem;
	color: var(--color_12);
	cursor: pointer;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .qtyWrapper button:hover
{
	background: var(--color_1);
	border: 1px solid var(--color_1);
	color: #ffffff;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .qtyWrapper button.plus
{
	top: 0;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .qtyWrapper button.minus
{
	bottom: 0;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .btn
{
	float: left;
	margin: 0 20px 20px 0;
	text-transform: capitalize;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .btn:last-child
{
	margin: 0 0 20px 0;
}
.el_offerPage_14108807 .innerWrapper .rightCol .priceBlock .qtyAndButtonBlock .btn.others
{
	padding: 0 0;
	width: 42px;
	height: 42px;
	font-size: 1.6rem;
}

/**/

.el_offerPage_14108807 .orderInOneClickBlock
{
	margin-bottom: 30px;
}
.el_offerPage_14108807 .orderInOneClickBlock .btn
{
	position: relative;
	margin-top: 21px;
}
.el_offerPage_14108807 .orderInOneClickBlock .btn .preloader
{
	display: none;
	position: absolute;
	justify-content: center;
	align-items: center;
	background-color: rgba(221,221,221, 0.8);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	font-size: 50%;
	color: var(--color_1);
	z-index: 5;
}
.el_offerPage_14108807 .orderInOneClickBlock .btn.active .preloader
{
	display: flex;
}

@media (max-width: 991px)
{
	.el_offerPage_14108807 .orderInOneClickBlock .inputeCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_offerPage_14108807 .orderInOneClickBlock .btn
	{
		margin-top: 0;
	}
}

/**********************/

.el_offerPage_14108807 .el_tabBlock_14108807
{
	margin-top: 50px;
	margin-bottom: 30px;
}
.el_offerPage_14108807 .el_tabBlock_14108807 .tabs
{
}
.el_offerPage_14108807 .el_tabBlock_14108807 .tabs .tab
{
	position: relative;
	display: inline-block;
	padding-bottom: 20px;
	margin-right: 30px;
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_12);
	cursor: pointer;
}
.el_offerPage_14108807 .el_tabBlock_14108807 .tabs .tab:hover,
.el_offerPage_14108807 .el_tabBlock_14108807 .tabs .tab.active
{
	color: var(--color_1);
}
.el_offerPage_14108807 .el_tabBlock_14108807 .tabs .tab.active::before
{
	position: absolute;
	background-color: var(--color_1);
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
}

/***********************************/

.commentListCD
{
}
.commentListCD > div
{
	border: 1px solid #ECECEC;
	padding: 15px;
}

.commentListCD .writeReview
{
	display: none;
	margin-bottom: 15px;
}

@media (max-width: 991px)
{
	.commentListCD > div
	{
		margin-bottom: 30px;
	}

	.commentListCD .writeReview
	{
		display: inline-block;
	}
}

/***/

.commentListCD .commentItem
{
	border-bottom: 1px solid #e19824;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.commentListCD .commentItem:last-child
{
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
.commentListCD .commentItem .name
{
	font-family: var(--font-family-1);
	font-size: 1.6rem;
	font-weight: 700;
	font-style: normal;
	text-transform: capitalize;
	color: var(--color_7);
}
.commentListCD .commentItem .date
{
	line-height: 1.42857;
	font-size: 1.4rem;
	font-style: italic;
	text-align: right;
	color: var(--color_7);
}
.commentListCD .commentItem .rateBlock
{
	margin-top: 15px;
}
.commentListCD .commentItem .commentText
{
	margin-top: 15px;
	line-height: 2rem;
	font-size: 1.3rem;
}
.commentListCD .commentItem .commentText.textPlus span
{
	margin-right: 5px;
	font-weight: bold;
	color: #00CD6A;
}
.commentListCD .commentItem .commentText.textMinus span
{
	margin-right: 5px;
	font-weight: bold;
	color: #FF3535;
}
.commentListCD .commentItem .answerMenuLine
{
	margin-top: 15px;
}
.commentListCD .commentItem .answerMenuLine .answerButton
{
	float: left;
	margin-right: 15px;
	background-color: transparent;
	border: none;
	font-size: 1.5rem;
	font-style: italic;
	color: var(--color_1);
	cursor: pointer;
}
.commentListCD .commentItem .answerMenuLine .answerButton:hover
{
	color: #709047;
}

.commentListCD .commentItem .answerMenuLine .likeBlock
{
	float: right;
	line-height: 1.6rem;
	font-size: 1.1rem;
}
.commentListCD .commentItem .answerMenuLine .likeBlock button
{
	margin: 0 5px;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.commentListCD .commentItem .answerMenuLine .likeBlock button.like
{
	color: #00CD6A;
}
.commentListCD .commentItem .answerMenuLine .likeBlock button.dislike
{
	color: #FF3535;
}
.commentListCD .commentItem .answerMenuLine .likeBlock .addRateText
{
	color: var(--color_1);
}

/**/

.commentListCD .commentItem .answerForm
{
}
.commentListCD .commentItem .answerForm:not(empty)
{
	margin-bottom: 15px;
}

/**/

.commentListCD .commentItem .answerBlock
{
	padding-left: 30px;
}
.commentListCD .commentItem .answerBlock:empty
{
	padding-left: 0;
}

/**/

.commentListCD .answerForCommentFormCD
{
	margin: 15px auto;
}
.commentListCD .answerForCommentFormCD .or
{
	margin: 0 15px;
}

/************************************/

.el_tabBlock_14108807 .addCommentFormCD
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}

.addCommentFormCD .addCommentFormTitle
{
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_12);
	cursor: pointer;
}
.addCommentFormCD .addCommentFormTitle::before
{
	position: absolute;
	background-color: var(--color_1);
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
}
.addCommentFormCD .formRateStar
{
	font-size: 4rem;
}
.addCommentFormCD .formRateStar span
{
	cursor: pointer;
}
.addCommentFormCD .formRateStar .passiveStar
{
	color: #cccccc;
}
.addCommentFormCD .formRateStar .activeStar
{
	color: #e19824;
}

/***/

.addCommentFormCD .dignitys .openClose
{
	display: inline-block;
	margin: 15px auto;
}
.addCommentFormCD .dignitys .dignityBlock
{
	display: none;
}

.addCommentFormCD .btn_wrap
{
	margin-top: 15px;
}

@media (max-width: 991px)
{
	.addCommentFormCD
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/************************************************************************************/
/*** siteCommentCD ***/
/*************************************************************************************/

.siteCommentCD
{
}

.siteCommentCD .leftBlock
{
}
.siteCommentCD .rightBlock
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
@media (max-width: 991px)
{
	.siteCommentCD .rightBlock
	{
		-ms-flex: 0 0 300px;
		flex: 0 0 300px;
		max-width: 300px;
	}
}
@media (max-width: 767px)
{
	.siteCommentCD .rightBlock
	{
		margin-top: 30px;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*****/

.siteCommentCD .leftBlock .siteInfo
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 25px;
}
.siteCommentCD .leftBlock .siteInfo .rateStar
{
	margin-right: 15px;
}
.siteCommentCD .leftBlock .siteInfo .title
{
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color_12);
}

.siteCommentCD .leftBlock .addCommentButton
{
	display: none;
}
@media (max-width: 767px)
{
	.siteCommentCD .leftBlock .siteInfo .title
	{
		margin-right: 15px;
	}
	.siteCommentCD .leftBlock .addCommentButton
	{
		display: block;
	}
}

/***********************************************************************/
/***********************************************************************/

#ajaxAddAnswerForOfferCommentFormHide,
#ajaxAddAnswerForSiteCommentFormHide
{
	display: none !important;
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow3 .el_articleItem_14108807
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 30px;
}
@media (max-width: 991px)
{
	.typeContentBlock1.inRow3 .el_articleItem_14108807
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 500px)
{
	.typeContentBlock1.inRow3 .el_articleItem_14108807
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}


/***********************************/

.el_articleItem_14108807
{
}
.el_articleItem_14108807 .innerWrapper
{
}
.el_articleItem_14108807 .innerWrapper .imgBlock
{
}
.el_articleItem_14108807 .innerWrapper .imgBlock .img_wrap
{
	padding-bottom: 56.25%;
}
/**/
.el_articleItem_14108807 .innerWrapper .date
{
	margin-top: 15px;
	font-family: var(--font-family-2);
	line-height: 2rem;
	font-style: italic;
	color: #AAAAAA;
}
/**/
.el_articleItem_14108807 .innerWrapper .title
{
	margin-top: 15px;
	min-height: 40px;
	line-height: 2rem;
	font-size: 1.4rem;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--color_12);
}
/**/
.el_articleItem_14108807 .innerWrapper .description
{
	margin-top: 15px;
	font-family: var(--font-family-2);
	line-height: 2.2rem;
	font-style: italic;
	color: var(--color_8);
}
/**/
.el_articleItem_14108807 .innerWrapper .readMore
{
	margin-top: 15px;
}

/***********************************************************************/
/***********************************************************************/

.typeContentBlock1.inRow3 .el_articleItem2_14108807
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 30px;
}

@media (max-width: 991px)
{
	.typeContentBlock1.inRow3 .el_articleItem2_14108807
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 500px)
{
	.typeContentBlock1.inRow3 .el_articleItem2_14108807
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************/

.el_articleItem2_14108807
{
}
.el_articleItem2_14108807 .innerWrapper
{
}
.el_articleItem2_14108807 .innerWrapper .imgBlock
{
}
.el_articleItem2_14108807 .innerWrapper .imgBlock .img_wrap
{
	padding-bottom: 56.25%;
}
/**/
.el_articleItem2_14108807 .innerWrapper .title
{
	margin-top: 15px;
	min-height: 40px;
	line-height: 2rem;
	font-size: 1.4rem;
	text-transform: uppercase;
	color: var(--color_12);
}
/**/
.el_articleItem2_14108807 .innerWrapper .date
{
	margin-top: 15px;
	font-family: var(--font-family-2);
	line-height: 2rem;
	font-style: italic;
	color: #AAAAAA;
}
/**/
.el_articleItem2_14108807 .innerWrapper .readMore
{
	margin-top: 15px;
}

/***********************************************************************/
/*****                     articleContent                          *****/
/***********************************************************************/

.el_articleContent_14108807
{
}
.el_articleContent_14108807 .imgBlock
{
	max-height: 600px;
	text-align: center;
}
.el_articleContent_14108807 .imgBlock img
{
	max-height: inherit;
}
/**/
.el_articleContent_14108807 .date
{
	margin: 15px 0;
	font-family: var(--font-family-2);
	line-height: 2rem;
	font-style: italic;
	color: #AAAAAA;
}

/***********************************************************************/
/*****                     LOGIN CONTENT                           *****/
/***********************************************************************/

.el_loginContent_14108807
{
}
.el_loginContent_14108807 .forgotYourPassword
{
	display: inline-block;
	margin-top: 20px;
	font-family: var(--font-family-2);
	font-size: 1.4rem;
	font-style: italic;
	color: #96b76c;
}
.el_loginContent_14108807 .forgotYourPassword:hover
{
	color: #709047;
}

@media (max-width: 575px)
{
	.el_loginContent_14108807 .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
}

/***********************************************************************/
/*****                passwordRecover CONTENT                      *****/
/***********************************************************************/

.el_passwordRecoverContent_14108807
{
}
.el_passwordRecoverContent_14108807 .note
{
	margin-bottom: 30px;
}

/***********************************************************************/
/*****                   PROFILE CONTENT                           *****/
/***********************************************************************/

.el_profileContent_14108807
{
}
.el_profileContent_14108807 .innerWrapper
{
}
.el_profileContent_14108807 .innerWrapper .profileItem
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: 30px;
}
.el_profileContent_14108807 .innerWrapper .profileItem a
{
	display: block;
	border-radius: 0 0 8px 8px;
	margin: 0 auto;
	padding: 10px 10px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: all 0.5s ease 0s;
}
.el_profileContent_14108807 .innerWrapper .profileItem a:hover
{
	background-color: var(--color_white);
	box-shadow: 0 3px 3px #CCCCCC;
	margin-top: -15px;
	margin-bottom: 15px;
}
.el_profileContent_14108807 .innerWrapper .profileItem a i
{
	display: block;
	font-size: 3.5rem;
	text-align: center;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media (max-width: 767px)
{
	.el_profileContent_14108807 .innerWrapper .profileItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/*****                changePassword CONTENT                       *****/
/***********************************************************************/

.el_changePasswordContent_14108807
{
}

/***********************************************************************/
/*****                 userOrderList CONTENT                       *****/
/***********************************************************************/

.el_userOrderList_14108807
{
}
.el_userOrderList_14108807 .innerWrapper
{
}
.el_userOrderList_14108807 .innerWrapper .tableHeader
{
	background-color: #F4F4F4;
	border: 1px solid var(--color_11);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 0;
	margin-left: 0;
	margin-right: 0;

	font-size: 1.6rem;
	font-weight: bold;
	color: #000000;
}
.el_userOrderList_14108807 .innerWrapper .col
{
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}
.el_userOrderList_14108807 .innerWrapper .number
{
	text-align: left;
}
.el_userOrderList_14108807 .innerWrapper .tableRow
{
	margin-left: 0;
	margin-right: 0;
}
.el_userOrderList_14108807 .innerWrapper .tableRow .title
{
	display: none;
}
.el_userOrderList_14108807 .innerWrapper .tableRow:nth-child(even)
{
}
.el_userOrderList_14108807 .innerWrapper .tableRow:nth-child(odd)
{
	background-color: #F4F4F4;
}
.el_userOrderList_14108807 .innerWrapper .more
{
}

@media (max-width: 767px)
{
	.el_userOrderList_14108807 .innerWrapper .tableHeader
	{
		display: none;
	}
	.el_userOrderList_14108807 .innerWrapper .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;

		padding-top: 5px;
		padding-bottom: 5px;
		text-align: left;
	}
	.el_userOrderList_14108807 .innerWrapper .tableRow
	{
		border: 1px solid var(--color_11);
		padding: 10px;
		margin-bottom: 20px;
	}
	.el_userOrderList_14108807 .innerWrapper .tableRow .col
	{
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
	}
	.el_userOrderList_14108807 .innerWrapper .tableRow .col.more
	{
		display: -ms-flex;
		display: flex;
		justify-content: center;
	}
	.el_userOrderList_14108807 .innerWrapper .tableRow .title
	{
		display: inline-block;
	}
	.el_userOrderList_14108807 .innerWrapper .tableRow .value
	{
		text-align: right;
	}
	.el_userOrderList_14108807 .innerWrapper .more
	{
		text-align: center;
	}
}

/***********************************************************************/
/*****                 userOrderView CONTENT                       *****/
/***********************************************************************/

.el_userOrderView_14108807
{
}
.el_userOrderView_14108807 .innerWrapper
{
}
.el_userOrderView_14108807 .innerWrapper .tableHeader
{
	background-color: #F4F4F4;
	border: 1px solid var(--color_11);
	margin-left: 0;
	margin-right: 0;
	padding-top: 10px;
	padding-bottom: 10px;

	font-size: 1.6rem;
	font-weight: bold;
	color: #000000;
}
.el_userOrderView_14108807 .innerWrapper .tableRow
{
	margin-left: 0;
	margin-right: 0;
}
.el_userOrderView_14108807 .innerWrapper .tableRow .col
{
	padding-top: 10px;
	padding-bottom: 10px;
}
.el_userOrderView_14108807 .innerWrapper .tableRow:nth-child(even)
{
}
.el_userOrderView_14108807 .innerWrapper .tableRow:nth-child(odd)
{
	background-color: #F4F4F4
}
.el_userOrderView_14108807 .innerWrapper .topTable
{
	margin-bottom: 40px;
}
.el_userOrderView_14108807 .innerWrapper .topTable .tableRow .title
{
	text-align: left;
}

@media (max-width: 767px)
{
	.el_userOrderView_14108807 .innerWrapper .topTable .tableRow
	{
		border: 1px solid var(--color_11);
		margin-bottom: 10px;
	}
	.el_userOrderView_14108807 .innerWrapper .topTable .tableRow .col
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_userOrderView_14108807 .innerWrapper .topTable .tableRow .col.title
	{
		border-bottom: 1px dotted var(--color_11);
	}
	.el_userOrderView_14108807 .innerWrapper .topTable .tableRow .col.value
	{
		text-align: right;
	}
}

/*****/

.el_userOrderView_14108807 .innerWrapper .bottomTable
{
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .col
{
	text-align: center;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .col.product
{
	flex-grow: 2;
	text-align: left;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow
{
	padding-left: 10px;
	padding-right: 10px;
	align-items: center;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .product
{
	font-size: 1.4rem;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .product .row
{
	width: 100%;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .product .col
{
	padding-top: 0;
	padding-bottom: 0;
	text-align: left;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .product .left_side
{
	-ms-flex: 0 0 90px;
	flex: 0 0 90px;
	max-width: 90px;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .item .right_side
{
}

.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .product .img_wrap
{
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .product .img_wrap .el
{
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .product p
{
	margin-bottom: 5px;
	font-size: 1.3rem;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .product .offerTitle
{
	line-height: 1.4;
	font-family: var(--font-family-2);
	font-size: 1.4rem;
	font-style: italic;
	color: #777777;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .sum
{
	font-family: var(--font-family-1);
	color: #161616;
}
.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .title
{
	display: none;
}

@media(max-width: 767px)
{
	.el_userOrderView_14108807 .innerWrapper .bottomTable .tableHeader
	{
		display: none;
	}
	.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow
	{
		border: 1px solid var(--color_13);
		margin-bottom: 20px;
	}
	.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .qty,
	.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .sum
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.el_userOrderView_14108807 .innerWrapper .bottomTable .tableRow .title
	{
		display: inline-block;
	}
}

/***********************************************************************/

.cartEmptyBlock
{
}
.cartEmptyBlock .innerWrapper
{
	align-items: center;
}
.cartEmptyBlock .innerWrapper .bag
{
	-ms-flex: 0 0 150px;
	flex: 0 0 150px;
	max-width: 150px;
	font-size: 8rem;
	text-align: center;
}
.cartEmptyBlock .innerWrapper .text
{
	font-size: 1.4rem;
	line-height: 20px;
	color: #444444;
	font-weight: 600;
	padding: 20px 0;
}

@media (max-width: 400px)
{
	.cartEmptyBlock .innerWrapper .bag
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.cartEmptyBlock .innerWrapper .text
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding: 20px 15px;
	}
}

/***********************************************************************/

.cartCompleteBlock
{
	text-align: center;
	margin-bottom: 30px;
}

.cartCompleteBlock .thanks
{
	padding: 0 20px;
	line-height: 3rem;
	font-size: 3.6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_7);
}
.cartCompleteBlock .manager
{
	padding: 20px 0;
	line-height: 2.2rem;
	font-family: var(--font-family-2);
	font-size: 1.6rem;
	font-style: italic;
	color: var(--color_8);
}
.cartCompleteBlock .goToHom
{
}

/***********************************************************************/
/***********************************************************************/

.entityBlock
{
}
.entityBlock .innerWrapper
{
	align-items: center;
}
.entityBlock .innerWrapper .ico
{
	-ms-flex: 0 0 150px;
	flex: 0 0 150px;
	max-width: 150px;
	font-size: 8rem;
	text-align: center;
}
.entityBlock .innerWrapper .text
{
	font-size: 1.4rem;
	line-height: 20px;
	color: #444444;
	font-weight: 600;
	padding: 20px 0;
}

@media (max-width: 400px)
{
	.entityBlock .innerWrapper .ico
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.entityBlock .innerWrapper .text
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding: 20px 15px;
	}
}

/***********************************************************************/
/*****                       PAGINATION                            *****/
/***********************************************************************/

.el_paginationBlock_14108807
{
	margin: 25px auto;
}
.el_paginationBlock_14108807 ul
{
	text-align: center;
}
.el_paginationBlock_14108807 ul li
{
	display: inline-block;
	margin: 5px;
}
.el_paginationBlock_14108807 ul li a,
.el_paginationBlock_14108807 ul li span
{
	display: block;
	background-color: transparent;
	border: 1px solid var(--color_13);
	border-radius: 5px;
	box-shadow: none;
	padding: 0 5px;
	min-width: 42px;
	height: 42px;
	line-height: 40px;
	font-family: var(--font-family-1);
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	font-style: normal;
	color: var(--color_12);
}
.el_paginationBlock_14108807 ul li a:hover,
.el_paginationBlock_14108807 ul li span
{
	background-color: var(--color_1);
	border: 1px solid var(--color_1);
	color: var(--color_white);
}

/***********************************************************************/
/***********************************************************************/

.addToCartFormModal
{
}
.addToCartFormModal .offerImage
{
	-ms-flex: 0 0 130px;
	flex: 0 0 130px;
	max-width: 130px;
}

@media (max-width: 520px)
{
	.addToCartFormModal .modal-footer
	{
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.addToCartFormModal .modal-footer button
	{
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;

		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin: 5px;
	}
	.addToCartFormModal .modal-footer button:first-child
	{
		order: 1;
	}
	.addToCartFormModal .modal-footer button:last-child
	{
		order: 2;
	}
}

/***********************************************************************/
/*****                         staticPage                          *****/
/***********************************************************************/

.staticPage
{
}

.staticPage .contactsBLock
{
	margin-top: 0;
	-ms-flex: 0 0 360px;
	flex: 0 0 360px;
	max-width: 360px;
}
.staticPage .contactsItem
{
}
.staticPage .contactsItem i.fa
{
	background: var(--color_13);
	border-radius: 50%;
	margin-right: 10px;
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: var(--color_12);
}
.staticPage .contactsItem span
{
	position: relative;
	font-weight: 700;
	text-transform: capitalize;
	color: #161616;
}
.staticPage .contactsItem a
{
	font-family: var(--font-family-2) !important;
	font-size: 1.4rem;
	font-style: italic;
	transition: all 0.5s ease-out 0s;
	color: var(--color_8);
}
.staticPage .contactsItem a:hover
{
	padding-left: 15px;
	color: var(--color_1);
}

.staticPage .mapBlock
{
	margin-top: 0;
}
.staticPage .mapBlock > div
{
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 270px;
	overflow: hidden;
}
.staticPage .mapBlock iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.staticPage .text
{
	margin-top: 20px;
}

@media (max-width: 767px)
{
	.staticPage .contactsBLock
	{
		margin-bottom: 20px;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*===================== BOTTOM TEXT BLOCK=======================*/

.bottomTextBlock
{
	margin-top: 50px;
	margin-bottom: 30px;
}

/***********************************************************************/
/*                            STATIC TEXT                              */
/***********************************************************************/

.staticText
{
	line-height: 1.4;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_8);
}
.staticText *
{
	font-weight: inherit;
	line-height: inherit;
	font-size: inherit;
	color: inherit;
}

.staticText h1,
.staticText h2,
.staticText h3,
.staticText h4,
.staticText h5,
.staticText h6
{
	color: #222222;
	font-family: "Roboto",sans-serif;
	margin-top: 20px;
	margin-bottom: 10px;
	font-weight: 400;
	line-height: 1.2;
}
.staticText h4,
.staticText h5,
.staticText h6
{
	margin-top: 15px;
}
.staticText h1
{
	font-size: 4.6rem;
}
.staticText h2
{
	font-size: 4rem;
}
.staticText h3
{
	font-size: 3.6rem;
}
.staticText h4
{
	font-size: 3rem;
}
.staticText h5
{
	font-size: 2.4rem;
}
.staticText h6
{
	font-size: 2rem;
}
.staticText ul,
.staticText ol
{
	margin-bottom:10px;
	padding-left: 40px;
}
.staticText ul li ul,
.staticText ol li ul,
.staticText ul li ol
{
	margin: 15px 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 p,
.staticText li
{
	font-weight: 400;
	margin-top: 10px;
	line-height: 1.4;
	font-size: 1.4rem;
	color: var(--color_8);
}
.staticText *:first-child,
.staticText p:first-child,
.staticText li:first-child
{
	margin-top: 0;
}
.staticText table
{
	margin-bottom: 20px;
}
.staticText a
{
	color: var(--color_1);
}
.staticText a:hover
{
	color: #709047;
}
.staticText b,
.staticText strong
{
	font-weight: bold;
}
.staticText em
{
	font-style: italic;
}
.staticText img
{
	display: block;
	margin: 10px auto;
	width: auto !important;
	max-width: 100%;
}
.staticText table,
.staticText table td
{
	border: 1px solid #d7d7d7;
	padding: 5px;
}
.staticText .videoIframe
{
	width: 100%;
	max-width: 100%;
}
.staticText .videoIframe:empty
{
	margin-bottom: 0;
	padding-top: 0;
}
.staticText .videoIframe > div
{
	position: relative;
	margin-bottom: 30px;
	padding-top: 30px;
	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;
}

/************************************************************************************/
/*** ELEMENTS// ***/
/*************************************************************************************/

/***********************************************************************/

#bottonUp
{
	position: fixed;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color_11);
	border-radius: 8px;

	bottom: 50px;
	right: 25px;
	width: 45px;
	height: 45px;
	font-size: 2.4rem;
	text-align: center;
	color: #666666;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	cursor: pointer;
}
#bottonUp:hover
{
	background-color: var(--color_1);
	color: #FFFFFF!important;
}

/***********************************************************************/
/*****                           SHARE                             *****/
/***********************************************************************/

.share
{
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	margin-top: 20px;
	padding: 20px 0;
}
.share span
{
	margin-right: 15px;
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_12);
}
.share a,
.share a span
{
	font-family: var(--font-family-2);
	font-style: italic;
	margin: 0 5px;
	color: var(--color_1);
}
.share a:hover,
.share a:hover span
{
	color: var(--color_7);
}
.share a span
{
	display: none;
	text-transform: none;
}

/***********************************************************************/
/*****                         footerCD                            *****/
/***********************************************************************/

footer.footerCD
{
	background-image: url("../img/background-image-footer.png");
	background-repeat: repeat;
}

/*****/

footer.footerCD .el_footerTop_14108807
{
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f0f2f2;
	padding: 70px 0 40px 0;
}
footer.footerCD .el_footerTop_14108807 .infoItem
{
	margin-bottom: 30px;
}
footer.footerCD .el_footerTop_14108807 .infoItem p
{
	font-family: var(--font-family-2);
	line-height: 2.4rem;
	font-size: 1.4rem;
	font-style: italic;
	color: #AAAAAA;
}
footer.footerCD .el_footerTop_14108807 .infoItem .itemTitle
{
	margin-bottom: 20px;
	line-height: 2.4rem;
	font-size: 1.8rem;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	color: var(--color_12);
}

footer.footerCD .el_footerTop_14108807 .infoItem ul
{
}
footer.footerCD .el_footerTop_14108807 .infoItem ul li
{
	font-family: var(--font-family-2);
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-style: italic;
	color: #AAAAAA;
}
footer.footerCD .el_footerTop_14108807 .infoItem ul li a
{
	font-family: var(--font-family-2) !important;
	line-height: 3rem;
	font-size: 1.6rem;
	font-style: italic;
	transition: all 0.5s ease-out 0s;
	color: #AAAAAA;
}
footer.footerCD .el_footerTop_14108807 .infoItem ul li a.active
{
	color: var(--color_1);
}
footer.footerCD .el_footerTop_14108807 .infoItem ul li a:hover
{
	padding-left: 15px;
	color: var(--color_1);
}

footer.footerCD .el_footerTop_14108807 .infoItem .contact
{
	margin-bottom: 20px;
}
footer.footerCD .el_footerTop_14108807 .infoItem .contact .title
{
	line-height: 3rem;
	color: var(--color_12);
}
footer.footerCD .el_footerTop_14108807 .infoItem .contact .title i
{
	font-size: 1.6rem;
	color: var(--color_1);
}
footer.footerCD .el_footerTop_14108807 .infoItem .contact ul
{
}
footer.footerCD .el_footerTop_14108807 .infoItem .contact ul li,
footer.footerCD .el_footerTop_14108807 .infoItem .contact ul a
{
	color: var(--color_8);
}

/***/

footer.footerCD .el_footerTop_14108807 .infoItem .subscribeBlock
{
	margin-bottom: 30px;
}
footer.footerCD .el_footerTop_14108807 .infoItem .subscribeBlock .note
{
	margin-bottom: 20px;
}
footer.footerCD .el_footerTop_14108807 .infoItem .subscribeBlock input
{
	margin-bottom: 20px;
}

/***/

footer.footerCD .el_footerTop_14108807 .infoItem .socialNetwork
{
	margin-bottom: 30px;
}
footer.footerCD .el_footerTop_14108807 .infoItem .socialNetwork a
{
	display: inline-block;
	margin-right: 20px;
	font-size: 2rem;
	color: #AAAAAA;
}
footer.footerCD .el_footerTop_14108807 .infoItem .socialNetwork a:hover
{
	color: var(--color_1);
}

@media (max-width: 991px)
{
	footer.footerCD .el_footerTop_14108807 .infoItem.subscribeCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (max-width: 767px)
{
	footer.footerCD .el_footerTop_14108807 .infoItem
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*****/

footer.footerCD .el_footerBottom_14108807
{
	padding: 30px 0;
}
footer.footerCD .el_footerBottom_14108807 .copyrightCol
{
}
footer.footerCD .el_footerBottom_14108807 .copyrightCol p,
footer.footerCD .el_footerBottom_14108807 .copyrightCol p a
{
	font-family: var(--font-family-2);
	line-height: 20px;
	font-size: 1.4rem;
	font-style: italic;
	color: #AAAAAA;
}
footer.footerCD .el_footerBottom_14108807 .komizioCol
{
	display: -ms-flex;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
footer.footerCD .el_footerBottom_14108807 .komizioCol p,
footer.footerCD .el_footerBottom_14108807 .komizioCol a
{
	font-family: var(--font-family-2);
	line-height: 1;
	font-size: 1.4rem;
	font-style: italic;
	color: #AAAAAA;
}
footer.footerCD .el_footerBottom_14108807 .komizioCol a
{
	margin-right: 5px;
}
footer.footerCD .el_footerBottom_14108807 .komizioCol a:hover
{
	color: var(--color_1);
}

@media (max-width: 767px)
{
	footer.footerCD .el_footerBottom_14108807 .copyrightCol
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
	footer.footerCD .el_footerBottom_14108807 .komizioCol
	{
		justify-content: center;
	}
}
