

/* Start:/bitrix/components/bitrix/search.title/templates/visual/style.css?17737452838693*/
.bx-searchtitle {
margin-top: 9px;
}
.bx-searchtitle .bx-block-title {
	font-family: var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-semi-bold, 600);
	color: #343434;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 9px;
}
.bx-searchtitle .bx-input-group {
	position: relative;
	display: table;
	border-collapse: separate;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.bx-search-clear {
    display: none !important;
}

@media (max-width: 767px) {
    /* 1. Общий контейнер */
    .bx-searchtitle .bx-input-group {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: calc(100% - 10px);
        margin: 5px auto;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        box-shadow:    
	        0 2px 4px rgba(0, 0, 0, 0.02), 
	    	0 10px 20px rgba(0, 0, 0, 0.04), 
	    	0 20px 40px rgba(0, 0, 0, 0.04);
        height: 44px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        transition: all 0.3s ease;
    }

    /* Подсветка контейнера, когда в поле есть текст или фокус */
    .bx-searchtitle .bx-input-group:focus-within,
    .bx-searchtitle .bx-input-group:has(.bx-form-control:not(:placeholder-shown)) {
        width: 100% !important;
        border-color: #3498db !important;
        box-shadow: 
        	0 4px 6px rgba(52, 152, 219, 0.05), 
        	0 15px 30px rgba(52, 152, 219, 0.1);
    	transform: translateY(-1px); /* Легкий подъем вверх */
    }

    /* 2. Поле ввода */
    .bx-searchtitle .bx-input-group .bx-form-control {
        flex: 1 1 auto !important;
        height: 100% !important;
        border: none !important;
        background: transparent !important;
        padding: 0 0 0 15px !important;
        margin: 0 !important;
        outline: none !important;
        box-shadow: none !important;
        font-size: 16px !important;
    }

    /* 3. Кнопка ОЧИСТИТЬ */
    .bx-search-clear {
        display: none !important; /* По умолчанию скрыта */
        width: 40px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
        background: transparent !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        cursor: pointer;
        color: #cbd5e1;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Показываем только если у инпута есть класс 'has-value' */
	.bx-searchtitle .bx-input-group .bx-form-control.has-value ~ .bx-search-clear {
    	display: flex !important;
	}

	.bx-form-control:focus {
    	outline: none !important;
    	box-shadow: none !important;
	}

    .bx-search-clear i.fa {
        display: block !important;
        line-height: 1 !important;
        font-size: 18px !important;
        margin: 0 !important;
        height: auto;
    }

    /* 4. Контейнер кнопки ПОИСКА */
    .bx-searchtitle .bx-input-group-btn {
        display: block !important;
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
    }

    /* 5. Сама кнопка ПОИСКА */
    .bx-searchtitle .bx-input-group-btn button.btn-default {
        width: 100% !important;
        height: 100% !important;
        background: transparent !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #95a1a8;
        padding: 0 !important;
    }

    /* Цвет лупы, если в поле введен текст */
    .bx-searchtitle .bx-form-control:not(:placeholder-shown) ~ .bx-input-group-btn button {
        color: #3498db !important;
    }
}






.bx-searchtitle .bx-input-group .bx-form-control {
	display: table-cell;
	position: relative;
	z-index: 2;
	width: 100%;
	margin-bottom: 0;
	display: block;
	width: 100%;
	height: 35px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #f8fafc;
	border: 1px solid #d5dadc;
	border-right: none;
	border-radius: 2px 0 0 2px;
	outline: none;
	box-shadow: none !important;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bx-ios .bx-searchtitle .bx-input-group .bx-form-control {
	/* Fix of input shadow for IOS browsers. */
	background-image: -webkit-linear-gradient(#f8fafc 0%, #f8fafc 100%);
	background-image: linear-gradient(#f8fafc 0%, #f8fafc 100%);
}
.bx-searchtitle .bx-input-group-btn {
	position: relative;
	font-size: 0;
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
	display: table-cell;
}
.bx-searchtitle .bx-input-group-btn button {
	position: relative;
	border: none;
	background: #95a1a8;
	display: inline-block;
	margin-bottom: 0;
	cursor: pointer;
	padding:6px 12px;
	border-radius: 0 2px 2px 0;
	color: #fff;
	font-size: 16px;
	line-height: 1.42857143;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.bx-searchtitle .bx-input-group-btn button:hover {
	background: #1484CE;
}


div.title-search-result {
	border:1px solid #c6c6c6;
	display:none;
	overflow:hidden;
	z-index:9999;
	min-width: 370px;
	margin-top:-3px;
	background-color: #FFF;
}

div.title-search-fader {
	display:none;
	background-image: url('/bitrix/components/bitrix/search.title/templates/visual/images/fader.png');
	background-position: right top;
	background-repeat: repeat-y;
	position:absolute;
}

p.title-search-preview {
	font-size:12px;
}
div.title-search-result td.title-search-price span {
	font-size: 26px;
}

/*========================*/
.bx_searche{}
.bx_searche .bx_img_element{
	background: #fafafa;
	float: left;
	width: 67px;
	padding: 5px 10px;
	position: absolute;
	top: 0;
	bottom: 0;
}
.bx_searche .bx_item_block{
	min-height: 65px;
	position: relative
}
.bx_searche .bx_image{
	width: 60px;
	height: 60px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	/*border: 1px solid #e8e8e8;*/
}
.bx_searche .bx_item_element{
	/*float: left;*/
	padding-left: 10px;
	margin-left: 70px;
}
.bx_searche .bx_item_element hr{
	margin: 0;
	border: none;
	border-bottom: 1px solid #e5e5e5;
}
.bx_searche .bx_item_element a{
	margin-top: 10px;
	display: inline-block;
	color: #4788cb;
	font-size: 13px;
	text-decoration: none;
}
.bx_searche .bx_item_element a b{color: #000;font-weight: normal;}
.bx_searche .bx_item_element a:hover,
.bx_searche .bx_item_element a:hover b{text-decoration: underline;}
.bx_searche .bx_price{
	font-weight:bold;
	font-size:13px;
}
.bx_searche .bx_price .old{
	font-weight:normal;
	text-decoration: line-through;
	color: #636363
}
.bx_item_block.all_result{min-height:0}
.bx_item_block.others_result{
	min-height: 0;
	padding: 0 0 12px;
	line-height: 12px;
}
.bx_item_block.all_result .all_result_title{
	display: block;
	font-size: 12px;
	color: #a7a7a7;
	padding-top: 15px;
	padding-bottom: 10px;
}
.bx_item_block.all_result .all_result_title a{color: #a7a7a7}
.bx_item_block.all_result .all_result_title a:hover{color: #4788cb}
.bx_item_block.all_result a{
	margin-top: 0;
}

input[type=text] {
height:35px;
}

/* Общие правила для инпута и кнопки */
.bx-searchtitle .bx-form-control,
.bx-searchtitle .search-btn {
    font-family: 'Montserrat', sans-serif !important;
}

/* Основное поле ввода */
.bx-searchtitle .bx-form-control {
    font-size: 15px !important;
    font-weight: 500;
    color: #2c3e50 !important;
    letter-spacing: 0.2px;
    transition: border-color 0.3s, background-color 0.3s !important;
}

/* Группируем стилизацию плейсхолдера для всех браузеров */
.bx-searchtitle .bx-form-control::placeholder,
.bx-searchtitle .bx-form-control::-webkit-input-placeholder {
    font-weight: 300;
    color: #95a5a6;
    opacity: 0.8; /* Чуть добавил плотности по вашей просьбе */
    transition: opacity 0.5s ease-in-out;
}

/* Состояния */
.bx-searchtitle .bx-form-control:focus {
    border-color: #2c509a;
    background-color: #fff;
    outline: none;
}

.bx-searchtitle .search-btn {
    font-weight: 600;
}
/* End */


/* Start:/bitrix/templates/nd_mobile/components/bitrix/sale.basket.basket.line/header_basket/style.css?15759598323946*/
.bx-basket {}
.bx-basket-block {
	font-size: 12px;
	padding-bottom: 5px;
	white-space: nowrap;
	position: relative;
	padding-left: 20px;
}
.bx-basket-block>.fa {
	color: #97a1ab;
	width: 12px;
	position: absolute;
	left: 0;
	top: 3px;
}
.bx-basket-block a {
	color: #039BE5;
	border-bottom: 1px dashed;
	margin-right: 10px;
}
.bx-basket-block a:hover {
	text-decoration: none;
	border-bottom-color: transparent;
}


/*FIXED BASKET*/

@media (min-width: 768px) {
	.bx-basket-fixed{
		width: 200px;
		position: fixed;
		z-index: 1100;
		background: #fff;
		padding-top: 10px;
		border: 1px solid #F0F0F0;
		box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
		border-radius: 1px;
		overflow: hidden;
	}
	.bx-basket-fixed.top	  {top:10px}
	.bx-basket-fixed.right  {right:10px}
	.bx-basket-fixed.bottom{bottom:10px}
	.bx-basket-fixed.left	 {left:10px}
	.bx-basket-fixed.bx-max-height{top:10px;bottom:10px;}
}
@media (max-width: 767px) {
	.bx-basket-fixed{
		/*width: 200px;*/
		position: fixed;
		z-index: 1100;
		background: #fff;
		padding-top: 10px;
		border: 1px solid #F0F0F0;
		box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
		border-radius: 1px;
		overflow: hidden;
		bottom: 0;
		left: 0;
		right: 0;
	}
	.bx-basket-item-list{
		display: none;
	}
	/*.bx-basket-fixed */
}
.bx-basket-fixed .bx-basket-block{
	margin-left: 10px;
}
.bx-basket-item-list{
	position: relative;
	padding-bottom: 20px;
	border-top: 1px solid #F7F7F7;
	overflow: hidden;
}
.bx-opener .bx-basket-item-list{
	padding-bottom: 75px;
}
.bx-max-height .bx-basket-item-list{
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
}
.bx-closed .bx-basket-item-list{
	height: 20px;
	overflow: hidden;
}
.bx-basket-item-list-action{
	cursor: pointer;
	background: #F7F7F7;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 120;
	height: 20px;
	line-height: 14px;
	vertical-align: middle;
	text-align: center;
	font-size: 12px;
	color: #4f4f4f;
	padding: 3px 0;
}
.bx-basket-item-list-button-container{
	text-align: center;
	position: absolute;
	bottom: 20px;
	border-top: 1px solid #F7F7F7;
	padding: 10px 0;
	background: #fff;
	left: 0;
	right: 0;
}

.bx-basket-item-list-container{
	overflow-y: auto;
	max-height: 100%
}
.bx-basket-item-list-item{
	padding-top: 15px;
	position: relative;
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #F7F7F7;
}
.bx-basket-item-list-container .bx-basket-item-list-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
}
.bx-basket-item-list-item-status{
	font-weight: bold;
	padding: 3px;
	background: #EBEBEB;
	margin: 0 10px 20px;
	line-height: 16px;
	font-size: 13px;
	border-radius: 3px;
	text-align: center;
}
.bx-basket-item-list-item-img{
	text-align: center;
	position: relative;
	padding-bottom: 5px;
}
.bx-basket-item-list-item-img img{
	max-width: 90px;
	height: auto;
	border: 1px solid #E6E6E6;
}
.bx-basket-item-list-item-name{padding-bottom: 5px;}
.bx-basket-item-list-item-name a{
	font-size: 13px;
	color: #3F3F3F;
	text-decoration: none;
}
.bx-basket-item-list-item-remove{
	position: absolute;
	right: 10px;
	top: -7px;
	width: 20px;
	height:20px;
	cursor: pointer;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAAJFBMVEX///8yMjI6Ojpvb29wcHCEhISHh4eIiIiqqqqtra2wsLCxsbE3yvJ6AAAAAXRSTlMAQObYZgAAACxJREFUCNcFwYEBgCAMA7BYUMb2/78m9sXdJtfNMHkzcJ4DlS9FpXXKavT6ARdgANGqCJ38AAAAAElFTkSuQmCC) no-repeat center;
	opacity: .5;
}
.bx-basket-item-list-item-remove:hover{
	opacity: .7;
}
.bx-basket-item-list-item-price-block{
	padding-bottom: 5px;
	font-size: 12px;
}
.bx-basket-item-list-item-price{
	display: inline-block;
	margin-right: 5px;
}
.bx-basket-item-list-item-price-old{
	display: inline-block;
	margin-right: 5px;
	text-decoration: line-through;
	color: #B0B0B0
}
.bx-basket-item-list-item-price-summ{}

.bx_cart_login_top .bx-hdr-profile a {
	text-decoration: none;
}
.bx_cart_login_top .bx-hdr-profile{
	line-height: 1.44em;
}
/* End */


/* Start:/bitrix/templates/nd_mobile/components/bitrix/menu/catalog_horizontal/style.css?177193085411528*/
.bx-top-nav-container {
	margin-top: 15px;
	padding: 0 10px;
	/*background: #e85858;/* COLOR */
	color: #fff;
	border-radius: 2px;
	position: relative;
	font-family: 'Montserrat', sans-serif;
}
/* 1 lvl*/

.bx-top-nav-container .bx-nav-list-1-lvl {
	margin: 0;
	padding: 0;
	list-style: none;
}
.bx-top-nav-container .bx-nav-1-lvl {
	float: left;
	position: relative;
}
.bx-top-nav-container {
color: #fff;
}
.bx-top-nav-container .bx-nav-1-lvl>a {
	font-weight: 600;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 1px;
	padding-top: 6px;
	padding-bottom: 2px;
	border-bottom: none;
}
.bx-nav-2-lvl>a {
text-transform: uppercase;
}
.bx-top-nav-container .bx-nav-1-lvl>a span {
	padding: 10px 14px 14px;
	display: block;
}
.bx-top-nav-container .bx-nav-1-lvl.bx-hover {}

.bx-top-nav-container .bx-nav-1-lvl.bx-nav-parent.bx-hover>a,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-parent.hover>a {
	z-index: 250;
	box-shadow: 0 6px 13px 0 rgba(0, 0, 0, .13)
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-parent.bx-hover>a span,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-parent.hover>a span {
	background: #fff;
}
.bx-top-nav-container .bx-nav-parent-arrow{
	display: none;
}
/*2 lvl*/

.bx-top-nav-container .bx-nav-2-lvl-container-advanced,
.bx-top-nav-container .bx-nav-2-lvl-container {
	z-index: 999;
	display: none;
	opacity: 0;
	padding: 9px 0 5px;
	box-shadow: 0 6px 13px 0 rgba(0, 0, 0, .13);
	border-top: none;
	min-width: 100%;
	color: #000;
}
.bx-top-nav-container .bx-nav-2-lvl-container-advanced:before,
.bx-top-nav-container .bx-nav-2-lvl-container:before {
	position: absolute;
	content: " ";
	display: block;
	height: 5px;
	background: #fff;
	top: -5px;
	left: 0;
	right: 0;
}
.bx-top-nav-container .bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container-advanced,
.bx-top-nav-container .bx-nav-1-lvl.hover .bx-nav-2-lvl-container-advanced,
.bx-top-nav-container .bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container,
.bx-top-nav-container .bx-nav-1-lvl.hover .bx-nav-2-lvl-container {
	opacity: 1;
	display: block;
	position: absolute;
	top: 100%;
	z-index: 999;
	background: #fff;
}

.bx-top-nav-container>ul{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-top-nav-container .bx-nav-list-2-lvl {
	margin: 0;
	padding: 5px 0 12px;
}
.bx-top-nav-container .bx-nav-2-lvl {
	display: block;
	min-width: 180px;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-top-nav-container .bx-nav-2-lvl>a {
	padding: 5px 15px 5px;
	color: #20394c;
	font-size: 13px;
	line-height: 16px;
	text-decoration: none;
	font-weight: bold;
	border-bottom: none;
	display: block;
}

.bx-top-nav-container .bx-nav-list-2-lvl .bx-nav-2-lvl:first-child a{
	border-top: none;
	margin-top: 0;
}

/*3 lvl*/

.bx-top-nav-container .bx-nav-3-lvl {
	padding: 5px 0;
	margin: 0;
}
.bx-top-nav-container .bx-nav-3-lvl-container-advanced:before,
.bx-top-nav-container .bx-nav-3-lvl-container:before {
	position: absolute;
	content: " ";
	display: block;
	height: 5px;
	background: #fff;
	top: -5px;
	left: 0;
	right: 0;
}
.bx-top-nav-container .bx-nav-list-3-lvl {
	margin: 0;
	padding: 0px 0 14px 7px;
}
.bx-top-nav-container .bx-nav-3-lvl {
	display: block;
	min-width: 180px;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-top-nav-container .bx-nav-3-lvl a {
	padding: 3px 15px;
	color: #555;
	font-size: 13px;
	line-height: 14px;
	text-decoration: none;
	border-bottom: none;
	display: block;
}

/* col 1 */
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-1-col .bx-nav-2-lvl-container-advanced,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-1-col .bx-nav-2-lvl-container {
	min-width: 200px
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-1-col .bx-nav-2-lvl-container-advanced .bx-nav-list-2-lvl,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-1-col .bx-nav-2-lvl-container .bx-nav-list-2-lvl {
	display: block;
	min-width: 200px;
	width: 100%;
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-1-col .bx-nav-catinfo-back{
	width: 100%;
	background: #fff;
}
/* col 2 */
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-2-col .bx-nav-2-lvl-container-advanced,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-2-col .bx-nav-2-lvl-container {
	min-width: 400px
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-2-col .bx-nav-2-lvl-container-advanced .bx-nav-list-2-lvl,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-2-col .bx-nav-2-lvl-container .bx-nav-list-2-lvl {
	display: block;
	min-width: 200px;
	width: 50%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-2-col .bx-nav-catinfo-back{
	width: 50%;
}
/* col 3 */
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-3-col .bx-nav-2-lvl-container-advanced,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-3-col .bx-nav-2-lvl-container {
	min-width: 600px
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-3-col .bx-nav-2-lvl-container-advanced .bx-nav-list-2-lvl,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-3-col .bx-nav-2-lvl-container .bx-nav-list-2-lvl {
	display: block;
	min-width: 200px;
	width: 33.33333%;
	float: left;
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-3-col .bx-nav-catinfo-back{
	width: 33.33333%;
}
/* col 4 */
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-4-col {position: static;}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-4-col .bx-nav-2-lvl-container-advanced{
	top: 100%;
	left: 0;
	right: 0;
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-4-col .bx-nav-2-lvl-container-advanced,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-4-col .bx-nav-2-lvl-container{
	min-width: 100%
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-4-col .bx-nav-2-lvl-container-advanced .bx-nav-list-2-lvl,
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-4-col .bx-nav-2-lvl-container .bx-nav-list-2-lvl {
	display: block;
	width: 25%;
	float: left;
}
.bx-top-nav-container .bx-nav-1-lvl.bx-nav-list-4-col .bx-nav-catinfo-back{
	width: 25%;
}

.bx-top-nav-container .bx-nav-catinfo{
	padding: 5px 15px 5px;
	z-index: 120;
	position: relative;
}
.bx-top-nav-container .bx-nav-catinfo img{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #e7e9ea;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
}
.bx-top-nav-container .bx-nav-catinfo p{
	padding: 20px 5px 0;
	font-size: 13px;
}
.bx-top-nav-container .bx-nav-catinfo-back{
	position: absolute;
	display: block;
	content: ' ';
	top: -5px;
	right: 0px;
	bottom: 0px;
	background: #f7fafb;
	z-index: 100;
	border-left: 1px solid #ecefef;
}
/* ASIDE */
body>.bx-aside-nav-control.bx-opened{
left: 80%;
top: 55px;
text-align: center;
}

.bx-aside-nav-control {
	font-size: 28px;
	position: fixed;
	width: 40px;
	height: 40px;
	bottom: 5px;
	left: 15px;
	line-height: 40px;
	cursor: pointer;
	z-index: 1750;
	color: #E22B2B;
	/*меняем цвет color: #eb6e6e;*/
	text-align: left;
}
.bx-aside-nav-control:hover {
	color: #F15E5E;
}
body>.bx-aside-nav-control{
	-webkit-transition: left .15s linear;
	-moz-transition: left .15s linear;
	-ms-transition: left .15s linear;
	-o-transition: left .15s linear;
	transition: left .15s linear;
}
.bx-aside-nav-control .fa{
	line-height: 40px;
	vertical-align: middle;
}

.bx-wrapper,
.bx-aside-nav {
	-webkit-transition: -webkit-transform .15s linear;
	-moz-transition: -moz-transform .15s linear;
	-ms-transition: -ms-transform .15s linear;
	-o-transition: -o-transform .15s linear;
	transition: transform .15s linear;
}
.bx-logo {
	z-index: 1700 !important;
}
/*
.bx-opened .bx-footer,
.bx-opened .workarea {display:none !important}
*/

.overlay {
    z-index: 1700;
	display: none;
    opacity: .54;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: opacity .5s ease-in;
    transition: opacity .5s ease-in;
    position: fixed;
    background-color: #000;
}

.bx-opened .overlay {display:block !important}
/**/
.bx-aside-nav {
	display: none;
	padding-top: 50px;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
	width: 100%;
	background: #2d374f;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1701;
}
.bx-aside-nav.bx-opened {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	overflow-y: scroll;
	width: 80%;
    padding-bottom: 100px;
}
.bx-aside-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bx-aside-nav a {
	color: #3e2d8f;
	vertical-align: middle;
	line-height: 48px;
	height: 48px;
	font-size: 16px;
	text-align: left;
	text-decoration: none;
	display: block;
	padding-left: 15px;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.bx-aside-nav .bx-nav-1-lvl {}
.bx-aside-nav .bx-nav-1-lvl>a {}
.bx-nav-1-lvl.bx-opened,
.bx-aside-nav .bx-nav-1-lvl:hover>a,
.bx-aside-nav .bx-nav-1-lvl.bx-hover>a {
	background-color: hsla(0,0%,100%,.1);
}
.bx-aside-nav .bx-nav-list-2-lvl {
	background: #fff;
}
.bx-aside-nav .bx-nav-2-lvl>a {
	padding-left: 30px;
}
.bx-aside-nav .bx-nav-3-lvl>a {
	padding-left: 45px;
}
.bx-aside-nav .bx-nav-4-lvl a {
	padding-left: 60px;
}
.bx-aside-nav .bx-nav-parent {
	position: relative;
}
.bx-aside-nav .bx-nav-parent-arrow {
	position: absolute;
	right: 0;
	top: 0;
	margin-top: 6px;
	width: 100%;
    padding-right: 10%;
	height: 34px;
	text-align: right;
	z-index: 200;
}
.bx-aside-nav .bx-nav-parent-arrow i {
	line-height: 34px;
	font-size: 22px;
	font-style: normal;
	color: #fff;
}
.bx-aside-nav .bx-nav-parent.bx-opened .bx-nav-parent-arrow i {
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-ms-transition: all .15s linear;
	-o-transition: all .15s linear;
	transition: all .15s linear;
}
.bx-aside-nav .bx-nav-parent .bx-nav-2-lvl-container-advanced,
.bx-aside-nav .bx-nav-parent .bx-nav-2-lvl-container,
.bx-aside-nav .bx-nav-parent>ul {
	overflow: hidden;
	height: 0;
}
.bx-aside-nav .bx-nav-parent.bx-opened .bx-nav-2-lvl-container-advanced,
.bx-aside-nav .bx-nav-parent.bx-opened .bx-nav-2-lvl-container,
.bx-aside-nav .bx-nav-parent.bx-opened>ul {
	height: auto;
}

.bx-aside-nav .bx-nav-catinfo{display: none;}
.bx-aside-nav .bx-nav-catinfo-back{display: none;}

@media (min-width: 1200px) {
	.bx-top-nav-container .bx-nav-1-lvl>a {font-size: 14px;}
	.bx-top-nav-container .bx-nav-1-lvl>a span {padding: 12px 14px 15px}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.bx-top-nav-container .bx-nav-1-lvl>a {font-size: 12px;}
	.bx-top-nav-container .bx-nav-1-lvl>a span {padding: 9px 11px 12px}
}

@media (min-width: 768px) and (max-width: 991px) {
	.bx-top-nav-container .bx-nav-1-lvl>a {font-size: 10px;}
	.bx-top-nav-container .bx-nav-1-lvl>a span {padding: 5px 6px 9px}
}

.full {
display:none;
}


@media (min-width: 768px){
	.bx-aside-nav-control,
	.bx-aside-nav{display: none;}
	.bx-top-nav-container{display: block;}
}
@media (max-width: 767px) {
	.full,
	.bx-aside-nav-control,
	.bx-aside-nav{display:block; text-align:center; /*min-width: 15%;*/}
	.bx-top-nav-container{display: none;}
	.bx-aside-nav .bx-nav-parent-arrow{display: block;}
	.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent>a>span>.fa{display: none;}
}

.bx-aside-nav-control.fa-times{
  color: #fff;
}
/* End */


/* Start:/bitrix/templates/nd_mobile/components/bitrix/menu/catalog_horizontal/themes/green/colors.css?16385413311263*/
.bx-green.bx-top-nav .bx-top-nav-container {
background: #F0F8F6;
/*border-bottom: 1px solid grey;*/
border-radius: 10px;
 /*background: -moz-linear-gradient(right, #e55b2b 0%, #ffffff 100%);
 background: -webkit-linear-gradient(right, #e55b2b 0%,#ffffff 100%);
 background: linear-gradient(to left, #e55b2b 0%,#ffffff 100%);*/
}
.bx-nav-1-lvl>a {
color: #222;
}
@media (max-width: 767px) {
.bx-nav-1-lvl>a {
color: #FFF;
}
}
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-1-lvl.bx-hover>a,
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-1-lvl.bx-active>a,
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-1-lvl:hover>a {
	/*background: #e95c5c;*/
	border-bottom: none;
}
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-1-lvl.bx-nav-parent.bx-hover>a,
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-1-lvl.bx-nav-parent:hover>a {
	color: #999;
	background-color: transparent;
}
/*2 lvl*/
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-2-lvl>a.bx-active,
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-2-lvl>a:hover {
	color: #999;
	background: #F0F0F0;
}
/*3 lvl*/
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-3-lvl a.bx-active,
.bx-green.bx-top-nav .bx-top-nav-container .bx-nav-3-lvl a:hover {
	color: #999;
	background: #F0F0F0;
}
/* End */


/* Start:/bitrix/templates/nd_mobile/components/bitrix/menu/bottom_menu/style.css?1644993845487*/
.bx-inclinksfooter a{border-bottom: none;}
.bx-inclinksfooter .bx-block-title{
	margin: 0;
	padding: 0;
	font-size: 17px;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	font-weight: 600;
}
.bx-inclinksfooter-container {
    margin-top: 15px;
    padding: 0;
    color: #fff;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
	z-index:auto;
}

.bx-inclinksfooter-list{
	list-style: none;
	margin: 0;
	padding: 0;
}
.bx-inclinksfooter-item{
	padding: 0 0 5px 0;
}

/* End */


/* Start:/bitrix/components/bitrix/breadcrumb/templates/coffeediz.schema.org/style.css?1536095008989*/
.bx_breadcrumbs{
    margin-bottom:15px;
    padding-top:0px
}
.bx_breadcrumbs ul{
    margin:0;
    padding:0
}
.bx_breadcrumbs ul li{
    display:inline-block;
    line-height:20px
}
.bx_breadcrumbs ul li a{
    display:block;
    padding:0 15px;
    background:url(/bitrix/components/bitrix/breadcrumb/templates/coffeediz.schema.org/images/breadcrumbs_arrow.png) no-repeat center right;
    color:#555;
    text-decoration:none;
    font-size:11px;
    opacity:.5
}
.bx_breadcrumbs ul li:first-child a{padding-left:0}
.bx_breadcrumbs ul li:last-child  a{background:none}
.bx_breadcrumbs ul li a:hover{
    text-decoration:underline;
    line-height:20px;
    opacity:1
}
.bx_breadcrumbs ul li span{
    display:block;
    padding:0 15px;
    color:#aaa;
    text-decoration:none;
    font-size:11px
}
.bx_breadcrumbs,
.bx_breadcrumbs ul li{
    -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;
}
/* End */


/* Start:/bitrix/templates/nd_mobile/components/bitrix/sale.basket.basket.line/mobile_cart/style.css?17703782875991*/
.bx-basket { }

.basket-line-block {
	position: relative;
	padding-left: 25px;
	white-space: nowrap;
	font-size: 13px;
}

.basket-line-block-icon-cart,
.basket-line-block-icon-profile {
	position: relative;
	margin-right: 10px;
}

.basket-line-block-icon-cart:after,
.basket-line-block-icon-profile:after {
	position: absolute;
	top: -1px;
	left: -25px;
	display: block;
	width: 20px;
	height: 20px;
	content: '';
}

.basket-line-block-icon-profile:after { background: no-repeat center url(/bitrix/templates/nd_mobile/components/bitrix/sale.basket.basket.line/mobile_cart/images/profile.svg); }

.basket-line-block-icon-cart:after { background: no-repeat center url(/bitrix/templates/nd_mobile/components/bitrix/sale.basket.basket.line/mobile_cart/images/cart-grift.svg); }

/*FIXED BASKET*/

@media (min-width: 768px) {
	.bx-basket-fixed {
		position: fixed;
		z-index: 998;
		overflow: hidden;
		padding-top: 10px;
		width: 200px;
		border: 1px solid #f0f0f0;
		border-radius: 1px;
		background: #fff;
		box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
	}

	.bx-basket-fixed.top { top: 10px }

	.bx-basket-fixed.right { right: 10px }

	.bx-basket-fixed.bottom { bottom: 10px }

	.bx-basket-fixed.left { left: 10px }

	.bx-basket-fixed.bx-max-height { top: 10px; bottom: 10px; }
}

@media (max-width: 767px) {
	.bx-basket-fixed {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 998;
		overflow: hidden;
		padding-top: 10px;
		border: 1px solid #f0f0f0;
		border-radius: 1px;
		background: #fff;
		box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
	}

	.bx-basket-item-list { display: none; }

	/*.bx-basket-fixed */
}

.bx-basket-fixed .basket-line-block { margin-left: 10px; }

.bx-basket-item-list {
	position: relative;
	overflow: hidden;
	padding-bottom: 20px;
	border-top: 1px solid #f7f7f7;
}

.bx-opener .bx-basket-item-list { padding-bottom: 75px; }

.bx-max-height .bx-basket-item-list {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}

.bx-closed .bx-basket-item-list {
	overflow: hidden;
	height: 20px;
}

.bx-basket-item-list-action {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 120;
	padding: 3px 0;
	height: 20px;
	background: #f7f7f7;
	color: #4f4f4f;
	vertical-align: middle;
	text-align: center;
	font-size: 12px;
	line-height: 14px;
	cursor: pointer;
}

.bx-basket-item-list-button-container {
	position: absolute;
	right: 0;
	bottom: 20px;
	left: 0;
	padding: 10px 0;
	border-top: 1px solid #f7f7f7;
	background: #fff;
	text-align: center;
}

.bx-basket-item-list-container {
	overflow-y: auto;
	max-height: 100%
}

.bx-basket-item-list-item {
	position: relative;
	margin-bottom: 15px;
	padding-top: 15px;
	padding-right: 10px;
	padding-left: 10px;
	border-bottom: 1px solid #f7f7f7;
}

.bx-basket-item-list-container .bx-basket-item-list-item:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.bx-basket-item-list-item-status {
	margin: 0 10px 20px;
	padding: 3px;
	border-radius: 3px;
	background: #ebebeb;
	text-align: center;
	white-space: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 16px;
}

.bx-basket-item-list-item-img {
	position: relative;
	padding-bottom: 5px;
	text-align: center;
}

.bx-basket-item-list-item-img img {
	max-width: 90px;
	height: auto;
	border: 1px solid #e6e6e6;
}

.bx-basket-item-list-item-name { padding-bottom: 5px; }

.bx-basket-item-list-item-name a {
	font-size: 13px;
	line-height: 16px;
}

.bx-basket-item-list-item-remove {
	position: absolute;
	top: -7px;
	right: 10px;
	width: 20px;
	height: 20px;
	opacity: .5;
	cursor: pointer;
	transition: 250ms linear all;
}

.bx-basket-item-list-item-remove:after,
.bx-basket-item-list-item-remove:before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 10px;
	height: 2px;
	border-radius: 1px;
	background-color: #333;
	content: '';
	transform: translate(-50%, -50%);
}

.bx-basket-item-list-item-remove:after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-moz-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	-o-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.bx-basket-item-list-item-remove:before {
	-webkit-transform: translate(-50%, -50%) rotate(135deg);
	-moz-transform: translate(-50%, -50%) rotate(135deg);
	-ms-transform: translate(-50%, -50%) rotate(135deg);
	-o-transform: translate(-50%, -50%) rotate(135deg);
	transform: translate(-50%, -50%) rotate(135deg);
}

.bx-basket-item-list-item-remove:hover { opacity: .7; }

.bx-basket-item-list-item-price-block {
	padding-bottom: 5px;
	font-size: 12px;
}
.bx-basket-item-list-item-price {
	display: inline-block;
	margin-right: 5px;
}
.bx-basket-item-list-item-price-old {
	display: inline-block;
	margin-right: 5px;
	color: #b0b0b0;
	text-decoration: line-through
}
.bx_cart_login_top .basket-line { line-height: 1.44em; }


.basket-block {
	display: flex;
	-webkit-box-pack: justify;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
}
.basket-icon-block {
	position: relative;
	display: -webkit-box;
	display: flex;
	justify-self: end;
}
.basket-link, .basket-link:link, .basket-link:visited {
	color: #6a3df7;
	cursor: pointer;
	-webkit-transition: color .12s ease-out;
	transition: color .12s ease-out;
	text-decoration: none;
	outline: 0;
	touch-action: manipulation;
}
.basket-icon-block-size {
    width: 28px;
    height: 28px;
    min-width: 28px;
}
.basket-icon {
 	/*background: url(/bitrix/templates/nd_mobile/components/bitrix/sale.basket.basket.line/mobile_cart/images/cart-drift.svg) no-repeat center;*/
	width: 28px;
	height: 28px;
	background-size: contain;
}
.basket-icon:hover,
.basket-icon:focus {
	/*background: url(/bitrix/templates/nd_mobile/components/bitrix/sale.basket.basket.line/mobile_cart/images/cart.svg) no-repeat center;*/
	width: 28px;
	height: 28px;
	background-size: contain;
}
.basket-items-block {
    position: absolute;
    top: -5px;
    right: -6px;
}
.basket-items-quantity {
    float: left;
    min-width: 16px;
    height: 16px;
    padding: 1px 4px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    text-align: center;
    color: #fff;
    border-radius: 8px;
    background-color: #f73d34;
    font-weight: 700;
    font-size: 11px;
    line-height: 14px;
}
/* End */


/* Start:/bitrix/templates/nd_mobile/styles.css?178195636520254*/
h1,h2,h3,h4,h5,h6 {
font-family: 'Roboto', sans-serif;
}

a{
 color: #323232;
}
p{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}
p.bxe-first-letter:first-letter, .bxe-first-letter-s{
	font-weight: bold;
	font-size: 56px;
	line-height: 56px;
	margin-right: 10px;
	float: left;
	vertical-align: top;
}

.btn-subscribe
{
	cursor: pointer;
	text-align: center;
	background: #E22B2B;
	border: 0;
	color: #FFF;
	font-size: 13px;
	position: relative;
	text-transform: uppercase;
	border-radius: 2px;
	line-height: 30px;
	height: 40px;
	padding: 5px 60px 5px 20px;
	vertical-align: middle;
	outline: 0;
	-webkit-transition: width 5s linear;
	-moz-transition: width 5s linear;
	-ms-transition: width 5s linear;
	-o-transition: width 5s linear;
	transition: width 5s linear;
}
.btn-subscribe:hover
{
	background: #E85858;
}
.btn-subscribe:before
{
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 40px;
	background-color: #E85858;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAKCAYAAACE2W/HAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkYyNDcxQTFERjZGMTFFNDk5NTY5MzQ3QzQxRkMzMEIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkYyNDcxQTJERjZGMTFFNDk5NTY5MzQ3QzQxRkMzMEIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyRjI0NzE5RkRGNkYxMUU0OTk1NjkzNDdDNDFGQzMwQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyRjI0NzFBMERGNkYxMUU0OTk1NjkzNDdDNDFGQzMwQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Plv+rHwAAADiSURBVHjajNK9asJQFMDxG42KUqFx9kEcRO1UcBCHjh3q3NXHcBEcdHQQPxY7+AaS0a1v0UEhSlu/rv+jhxIlBQ/84OTmnHuSmzjW2qExpoK9ekDcXMcRAVw1d2hckjxqwQxTJJXEDj+ooa5rK+neoocMnvGB7s3EVxQwwhdeDBMDvEPylr3EBB6yGOhaGzE0cJ5o4enOTSzQgY8D8nhDX2ty0hPTCxt6LDmsMtb6fk+hpr9a10THJ4pw8BtVII0ydRNxb/vPplLrSGNKT/Pb3BdVpOU7jklKSNzZKD+JfxJgAAV0YSAU8mZTAAAAAElFTkSuQmCC");
	background-position: 50%;
	background-repeat: no-repeat;
	border-radius: 0 2px 2px 0;
}
.btn-subscribe SPAN
{
	display: block;
}
.btn-subscribe.send
{
	padding: 5px 40px;
	-webkit-animation-name: MeilSend;
	animation-name: MeilSend;
	-webkit-animation-duration: .5s;
	animation-duration: 0.5s;
	outline: 0;
	color: #FFF;
}
.btn-subscribe:hover, .btn-subscribe:active
{
	color: #FFF;
}
.btn-subscribe.send:before
{
	width: 0;
	background-position: 100px 50%;
	-webkit-animation-name: MeilSendButton;
	animation-name: MeilSendButton;
	-webkit-animation-duration: .5s;
	animation-duration: 0.5s;
}

.lead {
	color: #757575;
 	margin-left: 40px;
 		padding:0 0 0 15px;
 	font-size: 13px;
 	font-weight: 300;
 	line-height: 1.4;
 	border-left: 3px solid #99cded;
}
@media (min-width: 768px){
	.lead {
	 	font-size: 16px;
 		margin-left: 20px;
	}
}

blockquote {
 	padding:0 0 0 15px;
 	margin: 0 0 20px 20px;
	border-left: 3px solid #c2c2c2;
}
blockquote p{
 	font-size: 20px;
 	font-style: italic;
	color: #757575;
 	font-family: 'Roboto', sans-serif;
}
@media (max-width: 768px){
	blockquote p {
	 	font-size: 16px;
	}
}

blockquote.bxe-quote {
	position: relative;
	padding-left: 70px;
	padding-top: 8px;
	min-height: 50px;
	border-left: none;
}
blockquote.bxe-quote:after{
	content: "";
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/PjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzOS45OTYgMzcuOTk1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzOS45OTYgMzcuOTk1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggc3R5bGU9ImZpbGw6I0Q2RDdENjsiIGQ9Ik0wLjAxLDM3Ljk5NXYtMTguMTFjLTAuMDc5LTIuNjA0LDAuMjk0LTUuMDQ5LDEuMTE4LTcuMzM4YzAuODI0LTIuMjg4LDEuOTgxLTQuMywzLjQ3Mi02LjAzNmMxLjQ5LTEuNzM1LDMuMjc2LTMuMTc2LDUuMzU2LTQuMzIxYzIuMDc4LTEuMTQzLDQuMzM1LTEuODczLDYuNzY4LTIuMTl2Ny44MTJjLTIuOTgzLDEuMDI3LTUuMDIzLDIuNTQ1LTYuMTIxLDQuNTU3Yy0xLjEsMi4wMTItMS42NDgsNC40NzktMS42NDgsNy4zOThoNy43Njl2MTguMjI4SDAuMDF6IE0yMy4yODEsMzcuOTk1di0xOC4xMWMtMC4wNzktMi42MDQsMC4yOTQtNS4wNDksMS4xMTgtNy4zMzhjMC44MjQtMi4yODgsMS45ODEtNC4zLDMuNDcyLTYuMDM2YzEuNDktMS43MzUsMy4yNzYtMy4xNzYsNS4zNTYtNC4zMjFjMi4wNzgtMS4xNDMsNC4zMzUtMS44NzMsNi43NjgtMi4xOXY3LjgxMmMtMi45ODMsMS4wMjctNS4wMjMsMi41NDUtNi4xMjEsNC41NTdjLTEuMSwyLjAxMi0xLjY0OCw0LjQ3OS0xLjY0OCw3LjM5OGg3Ljc2OXYxOC4yMjhIMjMuMjgxeiIvPjwvc3ZnPg==);
	background-repeat: no-repeat;
	background-position: top left;
	position: absolute;
	left: 10px;
	top: 10px;
	-webkit-background-size: 40px;
			background-size: 40px;
	width: 40px;
	height:40px;
}

hr{
	border: none;
	border-bottom: 1px solid #ccc;
}
hr.bxe-bolder{
	border-bottom-width: 5px;
}
hr.bxe-dashed{
	border-bottom-style: dashed;
	border-bottom-width: 2px;
}
hr.bxe-normal{}
hr.bxe-light{
	border-bottom-color: #e5e5e5

}
hr.bxe-dotted{
	border-bottom-width: 2px;
	border-bottom-style: dotted;
}

/**/
.bg-primary	{background: #60aadb!important;color: #fff;}
.bg-success	{background: #64ba4e!important;color: #fff;}
.bg-info	{background: #9bc6dd!important;color: #fff;}
.bg-warning	{background: #fec139!important;color: #fff;}
.bg-danger{}
/**/
img.pull-left{
	padding: 5px 15px 5px 0;
}
img.pull-right{
	padding: 5px 0 5px 15px;
}
/**/
.alert{
	border: none;
	border-radius: 1px;
	font-size: 14px;
}
.alert.alert-note{
	background: #f2f2f3;
}
.alert.alert-sys{
	background: #f5f2ec;
	color: #81641F;
}
.alert.bxe-icon{
	padding-left: 90px;
	min-height: 100px;
	position: relative;
}
.alert.bxe-icon:after{
	left:22px;
	top: 20px;
	position: absolute;
	content: " ";
	width:48px;
	height: 48px;
	background-repeat: no-repeat;
	background-position: center;
	background-image:url(/bitrix/templates/nd_mobile/images/editor_sprite.png);
	background-repeat: no-repeat;
}
.alert.bxe-icon.alert-success:after	{background-position:0 0}
.alert.bxe-icon.alert-info:after	{background-position:0 -50px}
.alert.bxe-icon.alert-warning:after	{background-position:0 -100px}
.alert.bxe-icon.alert-danger:after	{background-position:0 -200px}
.alert.bxe-icon.alert-note:after	{background-position:0 -150px}
.alert.bxe-icon.alert-sys:after		{background-position:0 -250px}

.bxe-aleft-title{
	font-weight: bold;
	padding-bottom: 5px;
}

.bx-panel-tooltip {
 z-index: 2210 !important;
 overflow: hidden !important;
 position: absolute !important;
 letter-spacing: normal !important;
 list-style: none !important;
 text-align: left !important;
 text-indent: 0 !important;
 text-transform: none !important;
 visibility: visible !important;
 white-space: normal !important;
 word-spacing: normal !important;
 vertical-align: baseline !important;
 margin: 0 !important;
 padding: 15px !important;
 float: none !important;
 text-decoration: none !important;
 -webkit-border-radius: 1px !important;
 -moz-border-radius: 1px !important;
 border-radius: 1px !important;
 -webkit-box-shadow: 0 12px 10px rgba(0, 0, 0, 0.25) !important;
 -moz-box-shadow: 0 12px 10px rgba(0,0,0,.25) !important;
 box-shadow: 0 12px 10px rgba(0, 0, 0, 0.25) !important;
 border: 1px solid;
 border-color: #f0f0f0;
 background: #fff;
 color: #35414e;
 font-size: 14px;
}

/**/
tab,
tabsection,
.bxe-tab-title{
	display: block;
	padding: 5px;
	border: 1px dashed #ccc;
}
/**/
.bxe-list,
.bxe-list ul{
	list-style: none;
	margin: 5px 0;
	padding-left: 15px;
}
.bxe-list-default,
.bxe-list-default ul{

 }
.bxe-list .fa{
	color: #9fb2bd;
	margin-right: 6px;
}
.bxe-lis-blue .fa{
	color: #0083d1;
}

.label {
color:#222;
text-align: left;
font-size: 12px;
font-weight: 400;
white-space:normal;
}

.label:hover {
color:#999;
}

@media (max-width: 767px) {
h1.bx-title {
	color: #222;
	font-size: 18px;
 line-height: 24px;
 font-weight: 600;
	}
}

@media (min-width: 768px) {
h1.bx-title {
	color: #222;
	font-size: 28px;
 line-height: 36px;
 font-weight: 600;
	}
}

.topPhone a {
	text-decoration: none;
	border: none;
	list-style: none;
}

.nodecor-adress
{
	text-decoration: none;
	border: none;
	list-style: none;
	margin-top: 15px;
}

.nodecor-phone
{
	text-decoration: none;
	border: none;
	font-weight: bold;
	line-height: 1.3em;
	padding-top: 10px;
	padding-bottom: 10px;
	list-style: none;
}
.logo{
	min-height: 100px;
	display: block;
 background: center no-repeat url('/images/logo_main.jpg');
	background-size: contain;
	cursor: pointer;
 }
 .logo:hover{
 border:none;
 }
 .logoText{
 font-size: 18px;
 font-family: 'Wadik', arial;
 font-weight: 700;
 padding-top: 16px;
 white-space: nowrap;
 }
@media (max-width: 767px) {
 .logoText{
 padding-top: 0px;
 font-size: 20px;
 }
}
@media (min-width: 768px) and (max-width: 991px) {
 .fa-phone{
 margin-top: 10px;
 }
}

 .basketBtn{
 top: 18px;
 border: 1px solid #A4222F;
 padding: 8px 15px 8px 39px;
 font-size: 12px;
 font-weight: 300;
	white-space: nowrap;
 color: #a4222f;
 position: relative;
 cursor: pointer;
 }
 .basketIco{
 background: url('/images/sprite.png') no-repeat -3px -43px;
 position: absolute;
 width: 21px;
 height: 18px;
 top: 6px;
 left: 14px;
 }
 .basketBtn:hover {
 background-color: #a4222f;
 color: #fff;
 }
 .basketBtn:hover .basketIco{
 background: url('/images/sprite.png') no-repeat -32px -43px;
 }
.brands_box {
height:230px;
margin:10px;
-webkit-transition-duration: 0.3s; 
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-webkit-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.2);
box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.2);
 -webkit-filter: grayscale(100%);
 -moz-filter: grayscale(100%);
 -ms-filter: grayscale(100%);
 -o-filter: grayscale(100%);
 filter: grayscale(100%);
 filter: gray;
	overflow: hidden;
}
.brands_img {
	padding-top:10px;
 -webkit-transform:scale(1);
 -moz-transform:scale(1);
 -o-transform:scale(1);
 -webkit-transition-duration: 0.3s; 
 -moz-transition-duration: 0.3s;
 -o-transition-duration: 0.3s;
 opacity: 0.9;
 margin: 0 10px 5px 0;
}
.brands_text {
	padding-left:10px;
	text-align: left;
	white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}
.brands_link {
 -webkit-transition-duration: 0.5s; 
 -moz-transition-duration: 0.5s;
 -o-transition-duration: 0.5s;
	color:grey;
	font-size: 1.1em;
}

.brands_box:hover {
-webkit-box-shadow: 4px 5px 18px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 4px 5px 18px 0px rgba(0,0,0,0.2);
box-shadow: 4px 5px 18px 0px rgba(0,0,0,0.2);
 -webkit-filter: none;
 -moz-filter: none;
 -ms-filter: none;
 -o-filter: none;
 filter: none;
}
.brands_img:hover {
 -webkit-transform:scale(1.1);
 -moz-transform:scale(1.1);
 -o-transform:scale(1.1);
 opacity: 1;
}
.brands_link:hover {
	color:black;
}
@media (max-width: 768px) {
.brands_box {
 -webkit-filter: none;
 -moz-filter: none;
 -ms-filter: none;
 -o-filter: none;
 filter: none;
}
.brands_img {
opacity: 1;
}
}
div.beono-flashmessage {
 left: auto!important;
 width: 100%!important;
 margin: 0!important;
}

.group_section {
 background-image: url(https://avatars.mds.yandex.net/get-lpc/1520633/627494f1-aa90-4d90-a555-fd85a6d3c72c/orig);
 background-color: #F6F8FF;
 background-size: cover;
 background-position: center;
 max-width: var(--lc-width-max);
 border-radius: var(--block-radius);
 margin: auto;
}

.group_section_el {
 background-color: #fbf4db;
 background-size: cover;
 background-position: center;
 max-width: var(--lc-width-max);
 border-radius: var(--block-radius);
 margin: auto;
}

.group_white {
 background: rgba(0, 0, 0, 0.5);
 background-size: cover;
 background-position: center;
 max-width: var(--lc-width-max);
 border-radius: var(--block-radius);
 margin: auto;
}
.social_buttons {
 text-align: center;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
 padding-top: 10px;
 font-weight: 600;
}

/* БАЗОВЫЕ СТИЛИ */
.nd-hero-section {
 position: relative;
 width: 100%;
 height: 90vh;
 min-height: 550px;
 overflow: hidden;
 background-color: #000;
 font-family: 'Arial', sans-serif;
}

.nd-video-wrapper {
 position: absolute;
 top: 0; left: 0;
 width: 100%; height: 100%;
 z-index: 1;
}

.nd-video-wrapper iframe {
 position: absolute;
 top: 50%; left: 50%;
 /* Запас размера для десктопа */
 width: 125vw; height: 75vw;
 min-width: 190vh; min-height: 110vh;
 transform: translate(-50%, -50%);
 pointer-events: none;
 will-change: transform;
}

.nd-hero-overlay {
 position: relative;
 z-index: 2;
 width: 100%; height: 100%;
 background: rgba(0, 0, 0, 0.5);
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
}

/* ТЕКСТ И КНОПКИ */
.nd-hero-container {
 max-width: 900px;
 padding: 0 20px;
 color: #fff;
 opacity: 0;
 transform: translateY(40px);
 animation: revealUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
 will-change: transform, opacity;
}

@keyframes revealUp {
 to { opacity: 1; transform: translateY(0); }
}

.nd-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 20px; text-transform: uppercase; }
.nd-hero-subtitle { font-size: clamp(1rem, 2vw, 1.4rem); margin-bottom: 40px; font-weight: 300; }
.nd-hero-actions { display: flex; gap: 15px; justify-content: center; }
.nd-btn { padding: 18px 36px; border-radius: 4px; font-weight: 700; text-decoration: none; transition: 0.3s; text-transform: uppercase; font-size: 0.9rem; }
.nd-btn-primary { background: #ff6600; color: #fff; }
.nd-btn-primary:hover { background: #e55c00; transform: translateY(-3px); }
.nd-btn-outline { border: 2px solid #fff; color: #fff; }
.nd-btn-outline:hover { background: #fff; color: #000; transform: translateY(-3px); }

/* МОБИЛЬНАЯ ВЕРСИЯ (Островной стиль + фикс полосы) */
@media (max-width: 768px) {
 .nd-hero-section { 
 width: 94%; 
 margin: 0 auto; 
 top: 15px; 
 height: calc(85vh - 15px);
 border-radius: 40px; 
 box-shadow: 0 15px 40px rgba(0,0,0,0.4);
 /* Фикс для Safari, чтобы не "вываливалось" из углов */
 -webkit-mask-image: -webkit-radial-gradient(white, black);
 }
 .nd-video-wrapper iframe { 
 /* Огромный запас для исключения черных полос */
 width: 500vw; 
 height: 285vw; 
 top: 48%; /* Смещаем чуть вверх заранее */
 }
 .nd-hero-actions { flex-direction: column; align-items: center; }
 .nd-btn { width: 100%; max-width: 300px; }
}
body.popup-opened {
 overflow: hidden !important;
 height: 100vh !important;
 width: 100% !important;
 position: fixed !important;
}
.bx-aside-nav-control[data-role="bx-menu-button-mobile"] {
 opacity: 0 !important;
 pointer-events: none !important;
 position: absolute !important;
 z-index: -1 !important;
}
.bx-aside-nav-control[data-role="bx-menu-button-mobile"].bx-opened {
 opacity: 1 !important;
 pointer-events: auto !important;
 display: block !important;
 position: fixed !important;
 z-index: 1800 !important; 
 top: 15px;
 right: 15px;
}
.popup-window-overlay {
 position: fixed !important;
 top: 0 !important;
 left: 0 !important;
 width: 100% !important;
 height: 100vh !important;
}
#popup-window-overlay-call_search {
 position: fixed !important;
 top: 0 !important;
 left: 0 !important;
 width: 100% !important;
 height: 100% !important;
 z-index: 1400 !important;
}
.bx-popup-item {
 max-height: 100vh;
}
.popup-header-row {
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 min-height: 44px;
 padding: 0 15px;
}
.popup-title-main {
 font-size: 17px;
 font-weight: 500;
 color: #999;
 text-align: center;
 padding: 0 85px;
 white-space: nowrap;
 overflow: hidden;
}
.btn-back-popup {
 position: absolute;
 left: 10px;
 top: 50%;
 transform: translateY(-50%);
 z-index: 100;
 background: #ffffff;
 border: 1px solid rgba(0, 0, 0, 0.1);
 border-radius: 8px;
 padding: 8px 12px 8px 28px; 
 color: #64748b;
 font-size: 14px;
 font-weight: 500;
 letter-spacing: 1px;
 cursor: pointer;
 transition: all 0.2s ease;
 display: flex;
 align-items: center;
}
.btn-back-popup::before {
 content: "";
 position: absolute;
 left: 10px;
 top: 50%;
 width: 6px;
 height: 6px;
 border-left: 1.5px solid #94a3b8;
 border-bottom: 1.5px solid #94a3b8;
 transform: translateY(-50%) rotate(45deg);
}
.btn-back-popup:hover {
 background: rgba(0, 0, 0, 0.02);
 color: #64748b;
 border-color: rgba(0, 0, 0, 0.15);
 transform: translateY(-50%) translateX(-2px);
}
.quick-queries {
 margin: 24px 8px;
}
.quick-queries-title {
 margin-bottom: 10px;
 padding-top: 40px;
 margin-left: 10px;
 font-size: 12px;
 letter-spacing: 1px;
 color: #bbb;
 display: block;
}
.queries-wrapper {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
}
.query-tag {
 font-size: 14px;
 font-weight: 500;
 color: #666;
 background: #f5f5f5;
 padding: 8px 16px;
 border-radius: 8px;
 cursor: pointer;
 transition: all 0.2s ease;
 border: none;
 text-decoration: none;
}
.query-tag:hover {
 background: #eeeeee;
 color: #333;
}
.nd-bottom-nav {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 height: 65px;
 background-color: #ffffff;
 display: flex;
 justify-content: space-around;
 align-items: center;
 border-top: 1px solid #eeeeee;
 box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
 z-index: 1700;
 padding-bottom: env(safe-area-inset-bottom);
}
.nd-nav-item {
 flex: 1;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-decoration: none;
 color: #8e8e93 !important;
 border: none !important;
 transition: all 0.2s ease;
 -webkit-tap-highlight-color: transparent;
}
.nd-nav-item.is-active, 
.nd-nav-item:active,
.nd-nav-item.active,
.nd-nav-item--active {
 color: #f39c12 !important;
}
.nd-nav-item:active {
 transform: scale(0.95);
}
.nd-nav-label {
 font-size: 9px;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.2px;
 white-space: nowrap;
 margin-top: 3px;
 padding-right: 2px;
}
.nd-icon-wrapper {
 position: relative;
 display: flex;
 width: 24px;
 height: 24px;
 align-items: center;
 justify-content: center;
}
.nd-svg-icon, 
.nd-nav-item svg,
.nd-nav-icon {
 width: 24px !important;
 height: 24px !important;
 stroke: currentColor;
 fill: none;
 transition: transform 0.2s ease;
}
.nd-nav-item.is-active svg,
.nd-nav-item.active .nd-nav-icon {
 stroke: #f39c12 !important;
 fill: none !important;
 transform: scale(1.1);
}
.basket-icon svg {
 overflow: visible !important;
 transform: scale(0.9);
}
.nd-cart-badge {
 position: absolute;
 top: -7px;
 right: -10px;
 background: #f39c12;
 color: #fff;
 font-size: 10px;
 font-weight: 800;
 min-width: 17px;
 height: 17px;
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0 4px;
 border: 2px solid #ffffff;
 z-index: 10;
 animation: badge-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes badge-pop {
 0% { transform: scale(0); }
 100% { transform: scale(1); }
}

@media (min-width: 769px) {
 .nd-bottom-nav { 
 display: none; 
 }
}

@media (max-width: 768px) {
 body {
 padding-bottom: 65px;
 }
.row.bx-logo, #search_mobile, .overlay {
 display: none !important; 
}
.btn-back-popup {
 left: 10px;
}
.btn-back-popup::before {
 left: 11px;
}
.popup-window {
 margin-top: 9.6%;
 padding-bottom: 70px;
 box-shadow: none;
 -webkit-box-shadow: none;
}
.search-main-top {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 width: 100%;
 z-index: 9999;
 background: #ffffff;
 margin-top: 10%;
 }
.quick-queries {
 padding-top: 50px;
 padding-left: 10px;
 padding-right: 10px;
 }
}
@media (max-width: 480px) {
 .popup-title-main {
 font-size: 15px;
 }
}
@media (max-width: 340px) {
 .btn-back-popup {
 width: 34px;
 height: 34px;
 padding: 0 !important;
 font-size: 0 !important;
 border-radius: 50%;
 left: 5px;
 }
 .btn-back-popup::before {
 left: 50%;
 transform: translate(-35%, -50%) rotate(45deg);
 }
 .popup-title-main {
 font-size: 15px;
 color: #95a5a6;
 padding: 0 40px;
 }
}
/* End */


/* Start:/bitrix/templates/nd_mobile/template_styles.css?178375659154927*/
body {
	background: #f6f5f3;
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.bx-opened {
	overflow: hidden;
}
.container{
	width: 100%;
}
.bx-header, .workarea, .bx-footer-section
{
max-width: 1440px;
margin: 0 auto;
}
.wrap,
.bx-wrap,
.bx-wrapper{
	position: relative;
}
body.bx-background-image{
	position: relative;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #fff;
	background-image: url("/bitrix/templates/nd_mobile/images/bg.jpg");
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.woff2') format('woff2');
}
body.bx-background-gradient{
	background: rgb(246,247,251);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjdmYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(246,247,251,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(246,247,251,1)), color-stop(100%,rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(246,247,251,1) 0%,rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(246,247,251,1) 0%,rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(246,247,251,1) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(246,247,251,1) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f7fb', endColorstr='#ffffff',GradientType=0 );
	background-attachment: fixed;
}
.icon-empty {
	opacity: 0;
}

a {
	text-decoration: none;
}

a:active,
a:hover {
	border-color: transparent;
	text-decoration: none;
}
a,
.container {
	-webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

UL
{
	/*margin-left: -35px;*/
}
.ul-mobile-main
{
margin-left: -40px;
}
LI
{
	list-style: none;
}
#sliderBox
{
	height: 0px;
	visibility: hidden;
	padding-right: 30px;
}

.specPrice{
          position: absolute;
          left: 0;
          bottom: 0;
          display: block;
          padding: 5px 8px;
          color: #fff;
          font-size: 12px;
          line-height: 1;
          background: #A4222F;
        }

/*тень товаров на главной в мобильной версии*/

.prodItem {
	padding: 5px 10px 10px 8px;
	margin-bottom: 20px;
	border-radius: 15px;
	-moz-box-shadow: 1px 1px 30px 1px #F6B2B8;
	-webkit-box-shadow: 1px 3px 30px 1px #F6B2B8;
	box-shadow: 1px 1px 30px 1px #F6B2B8;
   }
.prodItem:hover {
opacity: 0.85;
}

/*зачеркнутая цена товаров по акции*/
.sliderActionPrice
{
	color: #666;
	font-size: 18px;
	width: fit-content;
	text-decoration: line-through;
}
.sliderPrice
{
	font-family: 'Roboto', sans-serif;
	text-align: center;
	font-size: 25px;
	color: #E6E6E6;
	padding-left: 10px;
	padding-right: 10px;
	/* Поля вокруг текста */
	/* Параметры рамки кнопки цены*/
	width: fit-content;
	border-radius: 6px;
	/*+box-shadow: 5px 5px 55px 5px #F7C4D0;*/
	-moz-box-shadow: 5px 5px 55px 5px #F7C4D0;
	-webkit-box-shadow: 5px 5px 55px 5px #F7C4D0;
	box-shadow: 5px 5px 55px 5px #F7C4D0;
	background-color: #E22B2B;
	margin-left: 5px;
	margin-bottom: 5px;
}
.sliderPrice:hover
{
	background-color: #F18585;
}
.prodBlockPseudoLink
{
	font-size: 15px;
    margin-top: 10px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
}
.catProdSizeBlock
{
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	padding-top: 2px;
	padding-bottom: 2px;
	color: #333333;
}
.catProdText
{
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
	color: #333333;
}
img {
	width: auto;
	max-width: 100%;
	height: auto;
}
.bx-header {
background: #fff;
}
/*Logo*/
.bx-logo
{
	/*padding-left: 17px;
	padding-bottom: 19px;*/
}
.bx-logo .bx-logo-block
{
	display: block;
	float: left;
	padding-right: 10px;
}
.bx-logo .bx-logo-block IMG
{
	max-height: 100%;
}
.bx-logo-text, .bx-logo-text:hover, .bx-logo-text:active
{

	text-decoration: none;
	border: none;
}
.bx-logo-text-small
{
	color: #686868;
	margin:0 auto;
	font-size: 18px;
	font-weight: 600;
}
.bx-logo-text-small:hover
{
	margin:0 auto;
	font-size: 18px;
	color: #000;
}


.bx-logo-desc
{
	text-transform: uppercase;
	display: block;
	font-weight: 700;
	font-size: 13px;
	line-height: 10px;
	color: #B8B8B8;
}


/*цвет фона шапки*/

/* Sections */

.bx-header-section {
	padding: 28px 45px 10px;
	background: #fff;
}

.bx-content-seection {
	min-height: 50vh;
	padding: 0 45px 5px;
	background: #fff;
}


/* Телефон phone в шапке, цвет, размер*/
.bx-inc-orginfo-phone
{
	display: block;
	overflow: hidden;
	text-align: right;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	position: absolute;
	right: 50px;
	bottom: 8px;
	color: #E22B2B;
}

.bx-inc-orginfo-recall {}

.bx-inc-orginfo-recall a {
	color: #039be5;
	border-bottom: 1px dashed;
	font-size: 12px;
	margin-left: 2px;
}

.bx-inc-orginfo-recall a:hover {
	text-decoration: none;
	border-bottom-color: transparent;
}
/* header / worktime */

.bx-worktime {}



.bx-worktime-title {
	color: #8d8d8d;
	font-size: 12px;
}

.bx-worktime-prop {
	font-size: 13px;
	color: #000;
}

.bx-worktime-prop>span {
	white-space: nowrap;
}
/*sidebar*/

.bx-sidebar-block {
	margin-bottom: 40px;
}
.bx-block-title {
	font-family: 'Roboto', sans-serif;
	color: #343434;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 9px;
	font-weight: 600;
}
.bx-footer .bx-block-title{
	margin: 0;
	padding: 0;
	font-size: 17px;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	font-weight: 600;
}
/* Breadcrumb Custom*/

.bx-breadcrumb-item a {
	color: #757575;
}

.bx-breadcrumb-item a:hover {
	color: #2d2d2d;
}
/* workarea */

/*TITLE*/

h1.bx-title,
h2.bx-title,
h3.bx-title,
h4.bx-title,
h5.bx-title,
h6.bx-title {
	font-family: 'Roboto', sans-serif;
}

h1.bx-title,
h2.bx-title,
h3.bx-title {
	padding-bottom: 15px;
}

h4.bx-title,
h5.bx-title,
h6.bx-title {}

h1.bx-title {
	margin-top: 0;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    text-transform: uppercase;

}
h2.bx-title {font-size: 25px}
h3.bx-title {}
h4.bx-title {}
h5.bx-title {}
h6.bx-title {}

/* FORMS */
input[type=text],
input[type=password] {
	margin: inherit 4px;
	padding: 0 4px;
	border: 1px solid #CCD5DB;
	border-radius: 2px;
	background: #f8fafc;
	outline: none;
}

textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	font-size: 18px;
	min-height: 150px;
	max-height: 450px;
	margin: 0;
	padding: 0 4px;
	border: 1px solid #CCD5DB;
	border-radius: 2px;
	background: #f8fafc;
	outline: none;
}
/* INC.banners */

.bx-incbanners {
	margin: 10px 0 25px;
	text-align: center;
}
/* INC.links.footer */

.bx-inclinksfooter a {
	border-bottom: none;
}

.bx-inclinksfooter .bx-block-title {
	margin: 0;
	padding: 0;
	font-size: 17px;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	font-weight: 600;
}

.bx-inclinksfooter-container {
	margin-top: 15px;
	padding: 0;
	color: #fff;
	border-radius: 2px;
	font-family: 'Roboto', sans-serif;
}

.bx-inclinksfooter-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bx-inclinksfooter-item {
	padding: 0 0 5px 0;
}
/* INC.logo.footer */

.bx-inclogofooter {
	display: none;
}

.bx-inclogofooter a.bx-inclogofooter-logo:hover,
.bx-inclogofooter a.bx-inclogofooter-logo {
	border-bottom: none;
	display: none;
}

.bx-inclogofooter-logo img {
	max-width: 180px;
	height: auto;
	display: none;
}

.bx-inclogofooter-block {
	/*padding-bottom: 20px;*/
}

.bx-inclogofooter-tel {
	display: none;
	color: #cfd0d0;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 5px;
}

.bx-inclogofooter-worktime {
	color: #cfd0d0;
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
}
/* INC.social.widget */

.bx-banners {
	margin: 10px 0;
}

.bx-banners .bx-block-title {
	font-family: 'Roboto', sans-serif;
	color: #343434;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 9px;
	font-weight: 600;
}
/* INC.wt */

.bx-wt-block {
	color: #fff;
	padding: 5px 15px;
	background: url(/bitrix/templates/nd_mobile/images/wt.png) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
	border-radius: 3px;
}

.bx-wt .bx-block-title {
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 14px;
	color: #fff;
}

.bx-wt-block ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
}

.bx-wt-block ul li {
	padding-bottom: 7px;
}

.bx-wt-others-block {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 7px;
	margin-top: 4px;
}
/* news.list.sidebar */
.bx-s-info {
	margin: 10px 0;
	padding-top: 5px;
}
.bx-s-info-block {
	display: block;
	margin-bottom: 25px;
}
.bx-s-info-title {
	display: block;
	min-height: 29px;
	padding-left: 36px;
	margin-bottom: 5px;
	position: relative;
}
.bx-s-info-titleicon{
	display: block;
	background: #007FCA;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -15px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.bx-s-info-titleicon i{
	line-height: 30px;
	vertical-align: middle;
	font-style: normal;
}
.bx-s-info-titletext {
	display: block;
	padding: 6px 0;
	font-family: 'Roboto', sans-serif;
	color: #343434;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}
.bx-s-info-content {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	color: #3e454c;
	padding-left: 36px;
}

/* FOOTER */

.bx-footer {
	background: #292d2e;
	color: #c8cece;
}
.bx-footer-mobile {
	display: flex;
    flex-wrap: wrap;
}
.bx-footer-section.bx-center-section {
	padding-top: 20px;
	padding-bottom: 20px;
}
.bx-footer-section.bx-center-section>div {
	margin-bottom: 20px;
}
.bx-footer a {
	color: #c8cece;
}
.bx-footer a:hover {
	color: #fff;
	border-bottom: 1px solid;
	text-decoration: none;
}
.bx-footer-line {
	background: #1f496a;
}
.bx-footer-bottomline {
	background: #222425;
	font-size: 14px;
	padding: 22px 0;
}

.bx-up {
	text-align: right;
}

.bx-up a,
.bx-up a:hover {
	border-bottom: none;
}


/**/

.btn,
.btn:hover,
.btn:active,
.btn:focus{
	text-shadow: none !important;
	-webkit-box-shadow:none !important;
	   -moz-box-shadow:none !important;
			box-shadow:none !important;
	outline:none !important;
}

.btn-primary {
	background-color: #1485ce;
	border-color: #1485ce;
}

.btn-primary.active,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.open>.dropdown-toggle.btn-primary {
	background-color: #53a4d8;
	border-color: #53a4d8;
}

.btn-link {
	color: #1485ce;
}

.btn-link:focus,
.btn-link:hover {
	color: #53a4d8;
	text-decoration: none;
}
/*404*/

.bx-404-container {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.bx-404-block {
	margin-top: 100px;
	margin-bottom: 66px;
}

.bx-404-text-block {
	font-size: 20px;
	font-family: 'Roboto', sans-serif;
	padding-bottom: 20px;
}

.bx-maps-title {
	color: #8f8f8f;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	padding-bottom: 20px;
	padding-top: 10px;
	border-bottom: 1px solid #e9eaea;
}

.map-columns {
	padding-top: 20px;
}

.bx-map-title {
	font-weight: bold;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	position: relative;
	min-height: 20px;
	padding-left: 25px;
	margin-bottom: 20px;
}

.bx-map-title .fa {
	color: #0083d1;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 15px;
}

.map-columns ul {
	list-style: none;
	margin-bottom: 5px;
}

.map-level-0 {
	margin-left: 0;
	padding-left: 25px;
	margin-bottom: 20px;
}

.map-level-0 li {
	margin-left: 0;
	padding-left: 0;
}

.map-level-0 ul {
	padding-left: 15px;
}

ul.map-level-1 {
	margin-bottom: 30px;
}
/*ABOUT*/

.bxd-block {
	width: 100%;
	border: 1px solid #e3e6e7;
	display: block;
	background: #fff;
	padding: 15px;
	min-height: 210px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a.bxd-block:hover {}

.bxd-icon {
	display: block;
	border-radius: 50%;
	height: 68px;
	width: 68px;
	margin: 0 auto;
	-webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.bxd-block:hover .bxd-icon {}

.bxd-icon .fa {
	margin-left: -1px;
	position: relative;
	font-size: 35px;
	height: 68px;
	width: 68px;
	text-align: center;
	line-height: 68px;
	vertical-align: middle;
	-webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	-o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.bxd-link:hover .bxd-icon .fa {}

.bxd-title {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	text-align: center;
	color: #000;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	text-transform: uppercase;
}

.bxd-desc {
	display: block;
	text-align: center;
	color: #737373;
	font-size: 12px;
}

.bx-up-button {
	border-radius: 2px;
	color: #fff;
	position: fixed;
	right: 30px;
	bottom: 30px;
	font-size: 12px;
	line-height: 20px;
	cursor: pointer;
	vertical-align: middle;
	padding: 9px 18px 7px 38px;
	-webkit-transition: background-color .3s ease, opacity .3s ease;
	-moz-transition: background-color .3s ease, opacity .3s ease;
	-ms-transition: background-color .3s ease, opacity .3s ease;
	-o-transition: background-color .3s ease, opacity .3s ease;
	transition: background-color .3s ease, opacity .3s ease;
	background: #c2c4c7 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAALCAMAAAB1RTwXAAAACVBMVEX///////////+OSuX+AAAAAnRSTlMAf7YpoZUAAAAfSURBVHgBYwACRkYgAaKZmBihNJAFpaFiTExAgjwGAA1BAD3lDqDYAAAAAElFTkSuQmCC) 18px 13px no-repeat;
}
.bx-up-button:hover{
	background-color: #9fa0a3;
}

.inlineBlocks {
  /*font-size:0;*/
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inlineBlock {
  font-size:14px;
  line-height:1.2;
  vertical-align:top;
  /*display: block;*/
}

.breadcrumbs {
      font-size: 12px;
      margin-bottom: 10px;
      margin-top: 20px;
 	  line-height: 1.4;
 	  width: auto;
 	  height:auto;
    }
.breadcrumbsLink {
		color: #999;
        font-size: 12px;
      }
.breadcrumbsLink:hover {
		color: #222;
      }
.breadcrumbsSeparator {
        padding: 0 10px;
        background: url('/bitrix/templates/nd_mobile/images/sprite.png') no-repeat -103px -177px;
      }
.breadcrumbsLinkCurr {       
      }
.filterBlock {
        position: relative;
    }
.filterBlock input[type=text] {
      padding-left: 25px;
      border: 1px solid #C7C7C7;
      height: 30px;
      width: 80px;
      line-height: 30px;
      box-sizing: border-box;
    }
.filterBlock input[type=text]:focus {
      border: 1px solid #323232;
    }
.filterBlock input[type=submit] {
  font-size: 14px;
    border: 1px solid #A4222F;
    background-color: #fff;
    color: #A4222F;
    padding: 8px 16px;
      }
.filterBlock input[type=submit]:hover {
    border: 1px solid #A4222F;
    background-color: #A4222F;
    color: #fff;
      }
.filterShow {
      background: url('/bitrix/templates/nd_mobile/images/sprite.png') no-repeat 1px -73px;
      margin-left: 30px;
      width: 283px;
      height: 31px;
      position: relative;
    }
.filterShowBtn {
        position: absolute;
        top: 0px;
        left: 0;
        background-color: #A4222F;
        color: #FFF;
        border-radius: 8px 0px 0px 8px;
        font-size: 14px;
        border: 1px solid transparent;
        width: 33%;
        height: 94%;
        box-sizing: border-box;
        text-align: center;
        padding-top: 2%;
      }
.filterShowBtn:hover{
          color: #fff;
          background-color: #66151d;
          border: 1px solid #66151d;
       }
.filterShowGoods {
        position: absolute;
        top: 7px;
        left: 100px;
      }
.filterShowGoodsNum {     
        }
.filterBlock {
          border-bottom: 1px solid #EAEAEA;
          padding: 18px 0 18px ;
        }
.filterName {
            font-weight:700;
            font-size:14px;
            color:#000;
            margin-bottom: 12px;
          }
label {
    display: block;
}
.inputBox {
  position:relative;
  display:inline-block;
  vertical-align:middle;
}
.inputClose {
    background: url('/bitrix/templates/nd_mobile/images/sprite.png') no-repeat -83px -177px;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 6px;
    right: 5px;
    cursor:pointer;
    display:none;
  }
.inputDiapazon {
    position: absolute;
    width: 15px;
    /*height: 15px;
    top: 6px;*/
    left: 7px; 
    color: #c7c7c7;
    font-size: 14px;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none; 
    cursor:default;
    height: 30px;
    line-height: 30px;
    top: 0px;
  }
.inputClose:hover {
    background-position:-63px -177px;
  }
.show.inputClose {
    display:block;
  }
.kombox-del-filter {
color: #999;
}
.kombox-del-filter:hover {
color: #222;
}
.fancybox-pulse{
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{
    opacity: 0.7;
  }
  50%{
    opacity: 0.4;
  }
  100%{
    opacity: 0.7;
  }
}
.fancybox-pulse:hover{
  animation: none;
}

.contactsTitle{
        font-size: 14px;
        line-height: 1.4;
        text-transform: uppercase;
        cursor:pointer;
      }
      .contactsTitle a{
        border-bottom: 1px dashed #222;
      }
      .contactsTitle a:hover{
        border-bottom: 0px;
      }
      .contactsTitle .active{
        color:#999;
		font-weight: 700;
 		border-bottom: 0px;
      }

.catProdSizeBlock, .catProdText {
margin-bottom: 10px;
}

/*блок about*/
.companyH2{
    text-transform:none;
    margin-bottom:20px;
  }
  .compText{
     width: 750px;
     line-height: 1.4;
  }
  .compTextBottom{
      margin-top: 3px;
  }
  .comptabsBox{
    font-size: 0;
    background-color: #EDEDED;
    padding: 17px 0px 17px 25px;
    /*width: 836px;*/
  }
    .comptabsItem{
      font-size: 14px;
      display: inline-block;
      vertical-align: top;
      cursor: pointer;
      border-bottom: 1px dashed #C7C7C7;
      margin-right: 39px;
      margin-bottom: 22px;
    }
    .comptabsItem:hover{
      border-bottom: 1px dashed transparent;
    }
    .comptabsItem.active{
      color:#A4222F;
      cursor:default;
      border-bottom: 1px dashed transparent;
    }
	.comptabsItem.ontouchstart{
      color:#A4222F;
      cursor:default;
      border-bottom: 1px dashed transparent;
    }
    .noMargin{
      margin-right: 0px;
    }
    .noBottomMargin{
      margin-bottom: 0px;
    }
  .comptabsContent{
    position: relative;
    padding-top: 40px;
  }
    .comptabsContentItem{
      position:absolute; 
      opacity:0;
      width: 192px;
      height: 189px;
      transition:0.6s;
      background: url('/bitrix/templates/nd_mobile/images/companysprite.png') no-repeat 0px 0px;
      transform:scale(0);
    }
    .comptabsContentItem.active{
      opacity:1;
      transform:scale(1);
	  z-index:1;
    }

    .comptabsContentItem.ontouchstart{
      opacity:1;
      transform:scale(1);
    }

      /*.part1{
        bottom: 122px;
        right: 171px;
        background-position: -8px -7px;
      }
      .part2{
        bottom: 96px;
        left: 143px;
        background-position: -198px -7px;
      }
      .part3{
        top: 248px;
        left: 428px;
        background-position: -390px -7px;
      }
      .part4{
        bottom: 4px;
        right: 326px;
        background-position: -586px -7px;
      }
      .part5{
        bottom: 30px;
        right: 116px;
        background-position: -783px -7px;
      }
      .part6{
        bottom: 9px;
        left: 492px;
        background-position: -7px -207px;
      }
      .part7{
        bottom: 13px;
        left: 134px;
        background-position: -203px -206px;
      }
      .part8{
        bottom: 2px;
        right: 320px;
        background-position: -394px -206px;
      }
      .part9{
        top: 222px;
        left: 530px;
        background-position: -585px -206px;
      }
      .part10{
        bottom: 125px;
        right: 230px;
        background-position: -779px -206px;
      }
      .part11{
        bottom: 111px;
        left: 110px;
        background-position: -7px -407px;
      }*/

      .part1{
        top: 5px;
        left: 5px;
        background-position: -8px -7px;
      }
      .part2{
         top: 5px;
        left: 5px;
        background-position: -198px -7px;
      }
      .part3{
         top: 5px;
        left: 5px;
        background-position: -390px -7px;
      }
      .part4{
         top: 5px;
        left: 5px;
        background-position: -586px -7px;
      }
      .part5{
         top: 5px;
        left: 5px;
        background-position: -783px -7px;
      }
      .part6{
        top: 5px;
        left: 5px;
        background-position: -7px -207px;
      }
      .part7{
        top: 5px;
        left: 5px;
        background-position: -203px -206px;
      }
      .part8{
          top: 5px;
        left: 5px;
        background-position: -394px -206px;
      }
      .part9{
         top: 5px;
        left: 5px;
        background-position: -585px -206px;
      }
      .part10{
         top: 5px;
        left: 5px;
        background-position: -779px -206px;
      }
      .part11{
         top: 5px;
        left: 5px;
        background-position: -7px -407px;
      }
.video {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}

.video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  height: 90%;
  border-radius: 25px 25px 0 0;
}
#YMap{
	height: 500px;
	-webkit-box-shadow: 5px 10px 15px -5px rgba(0,0,0,0.5);
	-moz-box-shadow: 5px 10px 15px -5px rgba(0,0,0,0.5);
	box-shadow: 5px 10px 15px -5px rgba(0,0,0,0.5);
}

.listTitle{
    font-size: 14px;
	max-width: 330px;
    margin-bottom: 13px;
    line-height: 1.4;
}
.titleUnderline:hover{
font-weight:700;
color:#666;
}
.prodItemFeature .learn_more_link{
text-transform: uppercase;
color: #039be5;
font-size: 13px;
font-weight: bold;
text-decoration: none;
}
.prodItemFeature .learn_more_link:hover{
color: #000;
}
.learn_more_block {
margin-bottom: 30px;
}

/* sliders*/

.fancybox-wrap a,
.fancybox-wrap a:hover
{
  border:none;
}
/* sliderBox sliders*/

#sliderBox{
    width: 100%;
    height: 300px;
    margin: 0 auto;
}
#sliderBox .bx-wrapper {
	position: relative;
	margin: 0 auto ;
	padding: 0;
	*zoom: 1;
}
#sliderBox .bx-wrapper li {
    height: 300px;
}
#sliderBox .bx-wrapper a {
    border:none;
}
#sliderBox .bx-wrapper a:hover {
    border:none;
}
#sliderBox .bx-wrapper img {
	max-width: 100%;
	display: block;
	/*width: 1200px;*/
	max-height: 290px;
}

#sliderBox .bx-wrapper .bx-viewport {
    background: #fff;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}
#sliderBox .bx-wrapper .bx-pager,
#sliderBox .bx-wrapper .bx-controls-auto {
	position: absolute;
    bottom: 13px;
	width: 100%;
}
/* LOADER */

/* PAGER */
#sliderBox .bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}
#sliderBox .bx-wrapper .bx-pager .bx-pager-item,
#sliderBox .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}
#sliderBox .bx-wrapper .bx-pager.bx-default-pager a {
    background: transparent;
    border: 1px solid #fff;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#sliderBox .bx-wrapper .bx-pager.bx-default-pager a:hover,
#sliderBox .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #A4222F;
    border: 1px solid #A4222F;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
#sliderBox .bx-wrapper .bx-prev {
	left: 10px;
	background: url(/bitrix/templates/nd_mobile/images/controls.png) no-repeat 0 -32px;
}
#sliderBox .bx-wrapper .bx-next {
	right: 10px;
	background: url(/bitrix/templates/nd_mobile/images/controls.png) no-repeat -43px -32px;
}
#sliderBox .bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}
#sliderBox .bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}
#sliderBox .bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}
#sliderBox .bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}
/* AUTO CONTROLS (START / STOP) */
#sliderBox .bx-wrapper .bx-controls-auto {
	text-align: center;
}
#sliderBox .bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(/bitrix/templates/nd_mobile/images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}
#sliderBox .bx-wrapper .bx-controls-auto .bx-start:hover,
#sliderBox .bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}
#sliderBox .bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(/bitrix/templates/nd_mobile/images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}
#sliderBox .bx-wrapper .bx-controls-auto .bx-stop:hover,
#sliderBox .bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
#sliderBox .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}
#sliderBox .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}
/* IMAGE CAPTIONS */
#sliderBox .bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}
#sliderBox .bx-wrapper .bx-caption span {
	color: #fff;
	font-family: 'Roboto', sans-serif;
	display: block;
	font-size: .85em;
	padding: 10px;
}
/* # sliderBox sliders*/

/* popularSliderBox sliders*/

#popularSliderBox{
    width: 100%;
    height: auto;
    margin: 0 auto 43px;
}
#popularSliderBox .bx-wrapper {
   max-width:1200px !important;
	position: relative;
	margin: 0 auto ;
	padding: 0;
	*zoom: 1;
}
#popularSliderBox .bx-wrapper li {
    height: 472px;
    border: 1px solid #EAEAEA;
    box-sizing: border-box;
    margin-right: 17px;
}
#popularSliderBox .bx-wrapper li:hover {
    border: 1px solid #A4222F;
}
#popularSliderBox .bx-wrapper .prodBlockLink{
    padding: 18px 18px 30px;
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
   border: none;
}
/*
#popularSliderBox .bx-wrapper .prodBlockLink {
  border-bottom: 1px solid #C7C7C7;
}
*/
/*#popularSliderBox .bx-wrapper .prodBlockLink:hover .prodBlockPseudoLink{
  border-bottom: 1px solid #A4222F;
}*/
#popularSliderBox .bx-wrapper .prodBlockLink:hover  .sliderSizeBlock,
#popularSliderBox .bx-wrapper .prodBlockLink:hover  .sliderText
 {
  color: #323232;
}
#popularSliderBox .bx-wrapper .sliderLink {
  font-weight:600;
  font-size:14px;
  display: inline-block;
}
#popularSliderBox .bx-wrapper .sliderLinkWidth {
  width: 93%;
  margin-bottom: 12px;
}
#popularSliderBox .bx-wrapper .sliderImgCenter {
  width: 100%;
  height: 200px;
  position:relative;
  margin-bottom: 10px;
}
#popularSliderBox .bx-wrapper img {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
	display: block;
	max-width: 245px;
	max-height: 200px;
}
#popularSliderBox .bx-wrapper .sliderSizeBlock{
  margin-bottom: 16px;
  margin-top: 11px;
  font-size: 14px;
}
#popularSliderBox .bx-wrapper .sliderSizeItem.sliderSizeRight {
    margin-left: 9px;
}
#popularSliderBox .bx-wrapper .sliderText {
  font-size:12px;
  font-weight:300;
}
#popularSliderBox .bx-wrapper .sliderPrice {
  font-size:14px;
  position:absolute;
  bottom: 16px;
  left: 18px;
}
/*#popularSliderBox .bx-wrapper .sliderActionPrice {
  color:#7F7F7F;
  font-size:16px;
  position:absolute;
  bottom: 39px;
  left: 20px;
  text-decoration: line-through;
}*/
#popularSliderBox .bx-wrapper .sliderActionPrice {
    color: #7F7F7F;
    font-size: 16px;
    position: absolute;
    bottom: 17px;
    right: 16px;
    text-decoration: line-through;
    width: auto;
    display: inline-block;
}
#popularSliderBox .bx-wrapper .sliderActionNum {
  font-size:20px;
  font-weight:800;
}
#popularSliderBox .bx-wrapper .sliderOrderBtn {
  position: absolute;
  font-weight: 300;
  bottom: 12px;
  right: 15px;
  display: inline-block; 
  border: 1px solid #000;
  padding: 5px 9px 5px 11px;
  color: #000;
}
/*#popularSliderBox*/ .bx-wrapper .sliderOrderBtn:hover {
  color: #A4222F;
  border: 1px solid #A4222F;
}

#popularSliderBox .bx-wrapper .bx-viewport {
    background: #fff;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}
#popularSliderBox .bx-wrapper .bx-pager,
#popularSliderBox .bx-wrapper .bx-controls-auto {
	position: absolute;
    bottom: 13px;
	width: 100%;
}
/* LOADER */

}
/* PAGER */
#popularSliderBox .bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}
#popularSliderBox .bx-wrapper .bx-pager .bx-pager-item,
#popularSliderBox .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}
#popularSliderBox .bx-wrapper .bx-pager.bx-default-pager a {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  outline: 0;
  width: 23px;
  height: 35px;
  text-indent: -9999px;
  z-index: 9999;
}
#popularSliderBox .bx-wrapper .bx-pager.bx-default-pager a:hover,
#popularSliderBox .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #A4222F;
    border: 1px solid #A4222F;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
#popularSliderBox .bx-wrapper .bx-prev {
	left: -30px;
  background: url(/bitrix/templates/nd_mobile/images/sprite.png) no-repeat -69px 1px;
}
#popularSliderBox .bx-wrapper .bx-next {
    right: -30px;
    background: url(/bitrix/templates/nd_mobile/images/sprite.png) no-repeat -100px 1px;
}
#popularSliderBox .bx-wrapper .bx-prev:hover {
	background-position: 1px 1px;
}
#popularSliderBox .bx-wrapper .bx-next:hover {
	background-position: -29px 1px;
}
#popularSliderBox .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    outline: 0;
    width: 26px;
    height: 37px;
    text-indent: -9999px;
    z-index: 9999;
     border:none;
}
#popularSliderBox .bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}
/* AUTO CONTROLS (START / STOP) */
#popularSliderBox .bx-wrapper .bx-controls-auto {
	text-align: center;
}
#popularSliderBox .bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(/bitrix/templates/nd_mobile/images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}
#popularSliderBox .bx-wrapper .bx-controls-auto .bx-start:hover,
#popularSliderBox .bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}
#popularSliderBox .bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(/bitrix/templates/nd_mobile/images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}
#popularSliderBox .bx-wrapper .bx-controls-auto .bx-stop:hover,
#popularSliderBox .bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
#popularSliderBox .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}
#popularSliderBox .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}
/* IMAGE CAPTIONS */
#popularSliderBox .bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}
#popularSliderBox .bx-wrapper .bx-caption span {
	color: #fff;
	font-family: 'Roboto', sans-serif;
	display: block;
	font-size: .85em;
	padding: 10px;
}
/* # popularSliderBox sliders*/

/* promoSliderBox sliders*/

#promoSliderBox{
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#promoSliderBox .bx-wrapper {
   max-width:1200px !important;
	position: relative;
	margin: 0 auto ;
	padding: 0;
	*zoom: 1;
}
#promoSliderBox .bx-wrapper .prodBlockLink{
    padding: 18px 18px 30px;
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
   border: none;
}
/*
#promoSliderBox .bx-wrapper .prodBlockLink  .prodBlockPseudoLink{
  border-bottom: 1px solid #C7C7C7;
}
#promoSliderBox .bx-wrapper .prodBlockLink:hover  .prodBlockPseudoLink{
  border-bottom: 1px solid #A4222F;
*/
}
#promoSliderBox .bx-wrapper .prodBlockLink:hover  .sliderSizeBlock,
#promoSliderBox .bx-wrapper .prodBlockLink:hover  .sliderText
{
  color: #323232;
}
#promoSliderBox .bx-wrapper li {
    height: 472px;
    border: 1px solid #EAEAEA;
    box-sizing: border-box;
    margin-right: 17px;
}
#promoSliderBox .bx-wrapper li:hover {
    border: 1px solid #A4222F;
}
#promoSliderBox .bx-wrapper .sliderLink {
  font-weight:600;
  font-size:14px;
  display: inline-block;
}
#promoSliderBox .bx-wrapper .sliderLinkWidth {
  width: 93%;
  margin-bottom: 12px;
}
#promoSliderBox .bx-wrapper .sliderImgCenter {
  width: 100%;
  height: 200px;
  position:relative;
  margin-bottom: 10px;
}
#promoSliderBox .bx-wrapper img {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
	display: block;
	max-width: 245px;
	max-height: 200px;
}
#promoSliderBox .bx-wrapper .sliderSizeBlock{
  margin-bottom: 16px;
  font-size: 14px;
  margin-top: 11px;
}
#promoSliderBox .bx-wrapper .sliderSizeItem.sliderSizeRight {
    margin-left: 9px;
}
#promoSliderBox .bx-wrapper .sliderText {
  font-size:12px;
  font-weight:300;
}
#promoSliderBox .bx-wrapper .sliderPrice {
  font-size:14px;
  position:absolute;
  bottom: 16px;
  left: 18px;
}
#promoSliderBox .bx-wrapper .sliderActionPrice {
    color: #7F7F7F;
    font-size: 16px;
    position: absolute;
    bottom: 17px;
    right: 16px;
    text-decoration: line-through;
   /* width: 114px;*/
    width: auto;
    display: inline-block;
}
#promoSliderBox .bx-wrapper .sliderActionNum {
  font-size:20px;
  font-weight:800;
}
#promoSliderBox .bx-wrapper .sliderOrderBtn {
  position: absolute;
  font-weight: 300;
  bottom: 12px;
  right: 15px;
  display: inline-block; 
  border: 1px solid #000;
  padding: 5px 9px 5px 11px;
  color: #000;
}
#promoSliderBox .bx-wrapper .sliderOrderBtn:hover {
  color: #A4222F;
  border: 1px solid #A4222F;
}



#promoSliderBox .bx-wrapper .bx-viewport {
    background: #fff;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}
#promoSliderBox .bx-wrapper .bx-pager,
#promoSliderBox .bx-wrapper .bx-controls-auto {
	position: absolute;
    bottom: 13px;
	width: 100%;
}
/* LOADER */

/* PAGER */
#promoSliderBox .bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}
#promoSliderBox .bx-wrapper .bx-pager .bx-pager-item,
#promoSliderBox .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}
#promoSliderBox .bx-wrapper .bx-pager.bx-default-pager a {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  outline: 0;
  width: 23px;
  height: 35px;
  text-indent: -9999px;
  z-index: 9999;
}
#promoSliderBox .bx-wrapper .bx-pager.bx-default-pager a:hover,
#promoSliderBox .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #A4222F;
    border: 1px solid #A4222F;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
#promoSliderBox .bx-wrapper .bx-prev {
	left: -30px;
  background: url(/bitrix/templates/nd_mobile/images/sprite.png) no-repeat -69px 1px;
}
#promoSliderBox .bx-wrapper .bx-next {
    right: -30px;
    background: url(/bitrix/templates/nd_mobile/images/sprite.png) no-repeat -100px 1px;
}
#promoSliderBox .bx-wrapper .bx-prev:hover {
	background-position: 1px 1px;
}
#promoSliderBox .bx-wrapper .bx-next:hover {
	background-position: -29px 1px;
}
#promoSliderBox .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    outline: 0;
    width: 26px;
    height: 37px;
    text-indent: -9999px;
    z-index: 9999;
    border:none;
}
#promoSliderBox .bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}
/* AUTO CONTROLS (START / STOP) */
#promoSliderBox .bx-wrapper .bx-controls-auto {
	text-align: center;
}
#promoSliderBox .bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(/bitrix/templates/nd_mobile/images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}
#promoSliderBox .bx-wrapper .bx-controls-auto .bx-start:hover,
#promoSliderBox .bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}
#promoSliderBox .bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(/bitrix/templates/nd_mobile/images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}
#promoSliderBox .bx-wrapper .bx-controls-auto .bx-stop:hover,
#promoSliderBox .bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
#promoSliderBox .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}
#promoSliderBox .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}
/* IMAGE CAPTIONS */
#promoSliderBox .bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}
#promoSliderBox .bx-wrapper .bx-caption span {
	color: #fff;
	font-family: 'Roboto', sans-serif;
	display: block;
	font-size: .85em;
	padding: 10px;
}
/* # promoSliderBox sliders*/
.catProductItem
{
	border: 1px solid #EAEAEA;
	height: 445px;
	overflow: hidden;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 18px 18px 0;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin-bottom: 20px;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: box-shadow, transform;
	transition-property: box-shadow, transform;
}
.catProductItem:hover
{
	box-shadow: 1px 5px 15px 1px rgba(0, 0, 0, 0.2);
	border-bottom: none;
}
.img_action
{
    max-width: 240px;
    max-height: 210px;
}
.catProdActionNum_old
{
font-size:16px;
color: gray;
text-decoration: line-through;
}
.catProdActionNum_new
{
font-size:22px;
font-weight: 600;
color:green;
}
.catProdActionNum_txt
{
padding-right:10px;
font-size:16px;
font-weight:500;
color:gray;
}
.catProdActionNum_discount
{
width: 50px;
height: 50px;
font-size: 18px;
line-height: 50px;
display: inline-block;
background: #3d9966;
vertical-align: middle;
text-align: center;
color: white;
left: 10px;
bottom: 5px;
border-radius: 50%;
position: relative;
font-weight: 600;
}

/*верхнее меню*/
.subHeader{
  /*background: #e5eaf1;*/
  padding: 10px;
  margin-bottom: 10px;
}

.subHeaderLi {
        padding: 0 20px 0 20px;
      }
.subHeaderLiContacts {
        margin-left: 100px;
		text-align: right;
		width: 206px;
      }
.subHeaderLink{
	font: 13px/1.4 'Roboto', sans-serif;
    color: rgba(0,0,0,0.5);
      }
.subHeaderLink:hover
{
	color: #A4222F;
	font-weight: 600;
}

p.subHeaderLink{
	color:#A4222F;
	text-decoration: none;
}

footer a{
  color:#fff;
}
.footerInner {
  padding: 20px 0 10px;
}
.dev-text {
    position: relative;
  }
.dev-text .dev-link{
    color:#fff
  }
.dev-link:hover {
    color:#fff;
    /*border-bottom: 1px solid transparent;*/
  }

nav{
    /*border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;*/
    position: relative;
    z-index: 100;
  }
.navMain{
	/*background: -moz-linear-gradient(right, #e55b2b 0%, #ffffff 100%);
	background: -webkit-linear-gradient(right, #e55b2b 0%,#ffffff 100%);
	background: linear-gradient(to left, #e55b2b 0%,#ffffff 100%);*/
	background:#CCCCCC;
  }

.navCenter{
background: -moz-linear-gradient(left, rgba(240,249,255,1) 0%, rgba(203,235,255,1) 47%, rgba(161,219,255,1) 100%);
background: -webkit-linear-gradient(left, rgba(240,249,255,1) 0%,rgba(203,235,255,1) 47%,rgba(161,219,255,1) 100%);
background: linear-gradient(to right, rgba(240,249,255,1) 0%,rgba(203,235,255,1) 47%,rgba(161,219,255,1) 100%);
  	/*padding: 10px 0 -30px 0;
    z-index: 100;*/
  }
.headerLi{
    position:relative;
    padding: 0px 30px 0 20px;
	text-transform: uppercase;
  }
.headerLi.hover{
    box-shadow: 0px 0px 17px 0px #bdbdbd;
  }
/*.headerLi:nth-child(1){
       margin-left: -27px;
  }
.headerLi:last-child{
    margin-right: -20px;
  }
*/
.headerLi.hover:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 15px;
    bottom: -5px;
    left: 0;
    background-color: #FFF;
   }
   .headerLi.hover .headerLink{
     color: #a4222f;
	 font-weight:600;
    /* border-bottom: 1px solid #A4222F;*/
   }
    .headerLink{
      line-height: 3.8;
      font-size: 13px;
      color:#323232;
      position:relative;
    }
    .headerLi .headerLink:after{
      position: absolute;
      content: '';
      width: 10px;
      height: 7px;
      top: 6px;
      right: -13px;
      background: url('/bitrix/templates/nd_mobile/images/sprite.png') no-repeat -183px 1px;
    }
    .headerLink:hover{
      color: #a4222f;
	  text-decoration: none;
    }
    .headerLi.hover  .headerLink:after{
      background-position:-134px 1px;
    }
    /*.headerLi.selected{
    }*/
	.subHeaderLinkSelected {
	font-weight: 600;
	}
    .headerLi.selected{
      color: #A4222F;
      border-bottom: 2px solid #A4222F;
    }
    .headerLi.selected .headerLink:after{
      background-position:-157px 1px;
    }
    .headerLi.hover.selected .headerLink:after{
      background-position:-134px 1px;
    }
    .subMenu{
      display: none;
      position: absolute;
      top: 54px;
      left: 0;
      background: #fff;
      padding: 15px 35px 18px 24px;
      box-shadow: 0px 0px 12px 0px #bdbdbd;
      width: 100%;
      box-sizing: border-box;
    }
    .headerLi.hover  .subMenu{
      display:block;
    }
    .headerLi:nth-child(1) .subMenu,
    .headerLi:nth-child(7) .subMenu,
    .headerLi:nth-child(8) .subMenu
        {
      width: auto;
    }
    .headerLi:nth-child(2) .subMenu{
      width: 222px;
    }
    .headerLi:nth-child(6) .subMenu{
      width: 183px;
    }
    .headerLi:nth-child(8) .subMenu{
      right: 0%;
      left: auto;
    }
     .subMenuLi{
        margin-bottom:10px;
 		font-size: 12px;
        white-space: nowrap;
        line-height: 1.4;
      }
   .subMenuLi:hover{
 		font-weight:600;
      }
      .headerLi:nth-child(2) .subMenuLi,
      .headerLi:nth-child(6) .subMenuLi{
        white-space: normal;
      }

/*зарывать меню по клику на пустое место*/
.fa-times{
    height: 100%;
    width: 20%;
}
.topPhone {
    font-weight: 800;
    font-size: 18px;
}
.search-popup-box {
display: none;
}
.callBtn{
transition-duration: .3s;
-webkit-box-shadow: 5px 10px 10px -6px rgba(0,0,0,0.5);
-moz-box-shadow: 5px 10px 10px -6px rgba(0,0,0,0.5);
box-shadow: 5px 10px 10px -6px rgba(0,0,0,0.5);
}
.callBtn:hover {
-webkit-box-shadow: 5px 10px 15px -6px rgba(0,0,0,0.8);
-moz-box-shadow: 5px 10px 15px -6px rgba(0,0,0,0.8);
box-shadow: 5px 10px 15px -6px rgba(0,0,0,0.8);
-webkit-transform: translateY(-5px);
-moz-transform: translateY(-3px);
-ms-transform: translateY(-3px);
-o-transform: translateY(-3px);
transform:  translateY(-3px);
}
.socialbtn {
border-radius: 25px;
transition-duration: .3s;
-webkit-box-shadow: 5px 10px 10px -6px rgba(0,0,0,0.5);
-moz-box-shadow: 5px 10px 10px -6px rgba(0,0,0,0.5);
box-shadow: 5px 10px 10px -6px rgba(0,0,0,0.5);
}
.socialbtn:hover {
-webkit-box-shadow: 5px 10px 20px -6px rgba(0,0,0,0.8);
-moz-box-shadow: 5px 10px 20px -6px rgba(0,0,0,0.8);
box-shadow: 5px 10px 20px -6px rgba(0,0,0,0.8);
-webkit-transform: translateY(-5px);
-moz-transform: translateY(-5px);
-ms-transform: translateY(-5px);
-o-transform: translateY(-5px);
transform:  translateY(-5px);
}
.footermap {
transition-duration: .3s;
border-radius: 15px;
-webkit-box-shadow: 5px 10px 20px -6px rgba(0,0,0,0.9);
-moz-box-shadow: 5px 10px 20px -6px rgba(0,0,0,0.9);
box-shadow: 5px 10px 20px -6px rgba(0,0,0,0.9);
}
.footermap:hover {
-webkit-transform: translateY(-5px);
-moz-transform: translateY(-5px);
-ms-transform: translateY(-5px);
-o-transform: translateY(-5px);
transform:  translateY(-5px);
}
.catalog_title {
margin-top: 0;
padding-bottom: 10px;
font-weight: 700;
font-size: 20px;
line-height: 1.3;
text-transform: uppercase;
}
.catalog_title, h1 {
margin-top: 0;
}
a.catalog-section-list-item-img {
transition-duration: .2s;
}
a.catalog-section-list-item-img:hover {
-webkit-transform: translateY(-5px);
-moz-transform: translateY(-5px);
-ms-transform: translateY(-5px);
-o-transform: translateY(-5px);
transform:  translateY(-5px);
}
.logo_text
{
height: auto;
width: 100%;
display: block;
min-width: 120px;
}
.logo_nd
{
height: auto;
display: block;
max-width: 150px;
min-width: 100px;
}
@media (min-width: 992px) and (max-width:1199px){
	body.bx-background-image {-webkit-background-size:1600px auto;background-size:1600px auto;}
	.bx-header-section {padding: 0 30px 10px;}
	.bx-content-seection {padding: 0 30px 5px;}
}
@media (min-width: 768px) and (max-width: 991px){
	body.bx-background-image{-webkit-background-size:1280px auto;background-size:1280px auto;}
	.bx-header-section {padding: 0 15px 10px;}
	.bx-content-seection {padding: 0 15px 5px;}
}
@media (max-width: 767px) {
	body.bx-background-image {background: none;}
	
	.bx-logo {
	    position: fixed;
	    left: 0; right: 0; bottom: 0;
	    z-index: 1400;
	    padding: 10px 60px;
	    overflow: hidden;
	    
	    /* 1. БАЗА (СВЕТЛЫЙ ФОН 40%) */
	    background: rgba(255, 255, 255, 0.9);
	    /* УМЕНЬШЕННЫЙ БЛЮР для чистоты */
	    backdrop-filter: blur(0.8px);
	    -webkit-backdrop-filter: blur(0.8px);
	    
	    border-top: 1px solid rgba(255, 193, 7, 0.2);

	    /* 2. АДАПТАЦИЯ ПРИ СКРОЛЛЕ */
	    animation: scroll-bg linear both;
	    animation-timeline: scroll(root);
	    animation-range: 0 500px;
	}

	/* При скролле блюр тоже растет, но умеренно */
	@keyframes scroll-bg {
	    to { 
	        background: rgba(255, 255, 255, 0.95); 
	        backdrop-filter: blur(1.2px); /* Вместо 10px — так будет благороднее */
	        -webkit-backdrop-filter: blur(1.2px);
	    }
	}

	/* 3. ОГОНЬКИ С УМНОЙ АДАПТАЦИЕЙ ЦВЕТА */
	.bx-logo::before,
	.bx-logo::after {
	    content: "";
	    position: absolute;
	    top: -10px;
	    width: 130px;
	    height: 45px;
	    filter: blur(17px);
	    border-radius: 50%;
	    opacity: 0.5;
	    pointer-events: none;
	    z-index: -1;

	    /* ЭТОТ РЕЖИМ АДАПТИРУЕТ ОГОНЬ ПОД ФОН:
	       На темном фоне они будут светиться ярче, 
	       на светлом — мягко смешиваться. */
	    mix-blend-mode: hard-light; 
	}

	/* Цвета пламени (ваша база) */
	.bx-logo::before { 
	    background: radial-gradient(circle at center top, #ffca28 25%, transparent 75%); 
	    animation: flame-run-1 40s infinite ease-in-out; 
	}
	.bx-logo::after { 
	    background: radial-gradient(circle at center top, #ff7043 25%, transparent 75%); 
	    animation: flame-run-2 55s infinite ease-in-out; 
	}

	/* Траектории пламени (медленные) */
	@keyframes flame-run-1 { 0%, 100% { left: -15%; } 50% { left: 90%; } }
	@keyframes flame-run-2 { 0%, 100% { right: -15%; } 50% { right: 95%; } }


	.bx-logo .bx-logo-block {text-align: center;height: 30px;}
	.bx-logo-text {font-size: 24px;margin-left: 15px;line-height: 24px;}
	.bx-logo-text small {font-size: 24px;color: #fff;}
	.bx-logo-desc {display: none;}
	.bx-header-section {padding: 0px 20px 10px 20px;}
	.bx-content-seection {padding: 0 15px 10px;}
	.bx-inc-orginfo {text-align: center;padding-bottom:10px;}
	.bx-logo .bx-logo-block IMG{padding-top:5px;margin-left:-15px;}
	.bx-inc-orginfo-phone {font-size:14px;bottom:13px;}
	.bx-worktime {text-align: center;}
	.bx-footer {text-align: center; padding-bottom: 40px;}
	.bx-up {text-align: center;}
	#bx-panel{display:none !important}
	.breadcrumbs {overflow-x:scroll;overflow-y:hidden;white-space:nowrap;padding-bottom:10px;margin-top:5px;margin-bottom:0;}
	.breadcrumbsLink {font-size: 12px;display:inline-flex;padding:6px 8px;background-color:#f5f4f2;border-radius:7px;}
	.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {top:50px;}
}

@media (max-width: 768px) {
	.bx-logo-text-small	{margin: 0 auto;color: #686868;font-size: 14px;font-weight: 600;line-height: 1;}
	.bx-logo-text-small:hover {margin: 0 auto;font-size: 14px;color: #000;font-weight: 600;line-height: 1;}
	.bx-404-block {margin-top: 50px;margin-bottom: 33px;}
	#YMap {height: 400px;}
	.video iframe {width: 100%;height: 100%;border-radius: 25px 25px 0 0;}
}
@media (min-width: 1200px) {
	.bx-header-section {padding: 0 45px 10px;}
	.bx-content-seection {padding: 0 45px 5px;}
}
.font-h2-seo 
{
border-left: 5px solid #fc0;
padding-left: 20px;
text-transform: uppercase;
font-size: 20px;
font-weight: 700;
}

a[href$=".mp4"] {
    background: url("/images/player-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
	background-size: contain;
}
img[src*=".mp4"] {
	display: none;
}

.product-item-detail-slider-controls-image div:has(img[src*=".mp4"]) {
background: url("/images/f-play-a.gif");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
height: 100%;
}
.product-item-detail-slider-controls-image.active div:has(img[src*=".mp4"]) {
background: url("/images/f-play-i.png");
background-repeat: no-repeat;
background-position: center;
background-size: 65%;
}
.f-thumbs__slide.for-html5video.for-video button:has(img[src*=".mp4"]) {
background: url("/images/f-play-a.gif");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.f-thumbs__slide.for-html5video.for-video.is-nav-selected button:has(img[src*=".mp4"]) {
background: url("/images/f-play-i.png");
background-repeat: no-repeat;
background-position: center;
background-size: 50%;
}
.slider-cover {
background-size: cover;
height: 100%;
}
/*.icon-good-price {
background-image: url(/images/advantage.png);
display: inline-block;
width: 48px;
height: 48px;
background-size: contain;
}*/
.text-good-price {
display: inline-block;
color: #a5a5a5;
font-size: 14px;
}
.sort-by {
padding-bottom: 20px;
margin-top: -10px;
position: relative;
z-index: 2;
}
.sort-by-serch{
padding-bottom: 10px;
margin-top: -20px;
position: relative;
z-index: 2;
}
.footer_social {
display: flex;
gap: 24px;
padding: 0 0 20px 15px;
}
.footer_control {
border-bottom: 2px solid transparent;
display: inline-flex;
transition: 0.15s ease-in-out;
color: #c8cece;
outline: none;
transition: opacity .2s;
--vk-icon-color: #c8cece;
--vk-icon-bg-color: #c8cece;
--telegram-color: #c8cece;
--telegram-bg-color: #c8cece;
--max-icon-color: #c8cece;
--max-bg-color: #c8cece;
--wa-icon-color: #c8cece;
--wa-bg-color: #c8cece;
}
.footer_control:hover {
scale: 1.25;
color: #b8cfg1;
outline: none;
--vk-icon-color: #0077FF;
--vk-icon-bg-color: #0077FF;
--telegram-color: #0088cc;
--telegram-bg-color: #0088cc;
--max-icon-color: #9E86FF;
--max-bg-color: #9E86FF;
--wa-icon-color: #25D366;
--wa-bg-color: #25D366;
}
.footer_social a:hover {
border-color: transparent;
}
.header_social {
display: flex;
justify-content: space-between;
max-width: 180px;
padding-top: 5px;
}
.header_control {
transition: 0.15s ease-in-out;
color: #c8cece;
outline: none;
--vk-icon-color: #c8cece;
--vk-icon-bg-color: #c8cece;
--telegram-color: #c8cece;
--telegram-bg-color: #c8cece;
--max-icon-color: #c8cece;
--max-bg-color: #c8cece;
--wa-icon-color: #c8cece;
--wa-bg-color: #c8cece;
}
.header_control:hover {
scale: 1.25;
color: #b8cfg1;
outline: none;
--vk-icon-color: #0077FF;
--vk-icon-bg-color: #0077FF;
--telegram-color: #0088cc;
--telegram-bg-color: #0088cc;
--max-icon-color: #9E86FF;
--max-bg-color: #9E86FF;
--wa-icon-color: #25D366;
--wa-bg-color: #25D366;
}
.element_social {
display: inline-flex;
gap: 24px;
padding-top: 5px;
justify-content: space-around;
}
.element_social_control {
transition: 0.15s ease-in-out;
color: #c8cece;
outline: none;
--vk-icon-color: #0077FF;
--vk-icon-bg-color: #0077FF;
--telegram-color: #0088cc;
--telegram-bg-color: #0088cc;
--max-icon-color: #9E86FF;
--max-bg-color: #9E86FF;
--wa-icon-color: #25D366;
--wa-bg-color: #25D366;
}
.element_social_control:hover {
scale: 1.25;
color: #b8cfg1;
}
.b24-widget-button-position-bottom-right
{
	right: 10px !important;
    bottom: 120px !important;
}
.search-results-mobile-fix {
width: calc(100% - 40px);
margin-left: auto;
margin-right: auto;
}
/* End */
/* /bitrix/components/bitrix/search.title/templates/visual/style.css?17737452838693 */
/* /bitrix/templates/nd_mobile/components/bitrix/sale.basket.basket.line/header_basket/style.css?15759598323946 */
/* /bitrix/templates/nd_mobile/components/bitrix/menu/catalog_horizontal/style.css?177193085411528 */
/* /bitrix/templates/nd_mobile/components/bitrix/menu/catalog_horizontal/themes/green/colors.css?16385413311263 */
/* /bitrix/templates/nd_mobile/components/bitrix/menu/bottom_menu/style.css?1644993845487 */
/* /bitrix/components/bitrix/breadcrumb/templates/coffeediz.schema.org/style.css?1536095008989 */
/* /bitrix/templates/nd_mobile/components/bitrix/sale.basket.basket.line/mobile_cart/style.css?17703782875991 */
/* /bitrix/templates/nd_mobile/styles.css?178195636520254 */
/* /bitrix/templates/nd_mobile/template_styles.css?178375659154927 */
