

/* Start:/local/templates/eshop_bootstrap_v4/components/bitrix/sale.basket.basket.line/design_1/style.css?17701249891330*/
/* design_1 - Modern Simple Header */
.d1_basket-line-block {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Basket Icon */
.d1_header_basket_icon {
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 8px;
	transition: background-color 0.2s ease;
    text-decoration: none;
}

.d1_header_basket_icon:hover {
    background-color: #e9ecef;
    text-decoration: none;
}

.d1_header_basket_icon svg {
    display: block;
}

.d1_header_basket_items_count {
	position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background-color: #e74c3c;
    font-size: 11px;
    font-weight: 600;
    color: white;
    line-height: 20px;
    text-align: center;
    border-radius: 10px;
}

/* Basket Text Links */
.d1_header_basket_text {
	color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.d1_header_basket_text:hover {
    color: var(--main-color-2);
    text-decoration: none;
}

@media (max-width: 767px) {
    .d1_basket-line-block {
        gap: 8px;
    }
    
    .d1_header_basket_icon {
        padding: 6px;
    }
    
    .d1_header_basket_text {
        font-size: 13px;
    }
}

/* End */


/* Start:/local/templates/eshop_bootstrap_v4/components/bitrix/search.title/design_1/style.css?17701249891708*/
/* design_1 - Modern Clean Search */
.bx-searchtitle {
    width: 100%;
}

.d1_search-title-form {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.d1_search-title-form:focus-within {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--main-color-1);
}

.d1-search-title-input {
    flex: 1;
    height: 36px;
    border: none;
    background: #f8f9fa;
    border-radius: 8px 0 0 8px;
    padding: 6px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.d1-search-title-input:focus {
    outline: none;
    box-shadow: none;
    background: #ffffff;
}

.d1-search-title-input::placeholder {
    color: #adb5bd;
}

.d1_search-title-btn {
    width: 44px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background-color: var(--main-color-1);
    background-image: url(/bitrix/components/bitrix/search.title/templates/bootstrap_v4/images/icon-search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.d1_search-title-btn:hover {
    background-color: #303f9f;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .d1_search-title-form {
        max-width: 100%;
        padding: 3px;
    }
    
    .d1-search-title-input {
        height: 36px;
        padding: 6px 16px;
    }
    
    .d1_search-title-btn {
        width: 40px;
        height: 36px;
        background-size: 16px;
    }
}

/* End */


/* Start:/local/templates/eshop_bootstrap_v4/components/bitrix/menu/design_1/style.css?177012498912443*/
/* Modern Simple Menu Design */
.bx-top-nav-container {
	position: relative;
	padding: 0;
	border-radius: 0;
}

/*region 1 lvl*/
.bx-nav-list-1-lvl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	padding-left: 0;
	list-style: none;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 4px;
}

.bx-nav-1-lvl { position: relative; }

.bx-nav-1-lvl-link {
	display: block;
	padding: 0;
	margin-left: 0;
	border-bottom: none;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.bx-nav-1-lvl-link:hover { 
	text-decoration: none;
	background: var(--main-bg-gradient-1);
}

.bx-nav-1-lvl.bx-hover > .bx-nav-1-lvl-link,
.bx-nav-1-lvl.bx-active > .bx-nav-1-lvl-link,
.bx-nav-1-lvl:hover > .bx-nav-1-lvl-link {
	border-bottom: none;
	/* background: #f8f9fa; */
}

.bx-nav-1-lvl-link-text {
	display: flex;
	padding: 10px 18px;
	padding-left: 9px;
	color: white;
	text-decoration: none;
	text-transform: none;
	font-weight: 600;
	transition: all 0.2s ease;
	align-items: center;
}

.bx-nav-1-lvl:first-child .bx-nav-1-lvl-link-text {
	padding-left: 9px;
}

.bx-nav-angle-bottom {
	position: relative;
	display: block;
	margin-left: 8px;
	width: 10px;
	height: 10px;
}

.bx-nav-angle-bottom:after,
.bx-nav-angle-bottom:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 2px;
	background-color: #495057;
	content: '';
	transition: all 0.2s ease;
}

.bx-nav-angle-bottom:after {
	margin-left: -2px;
	transform: translate(-50%, -50%) rotate(45deg);
}

.bx-nav-angle-bottom:before {
	margin-left: 2px;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.bx-nav-1-lvl.bx-nav-parent:hover .bx-nav-angle-bottom:after,
.bx-nav-1-lvl.bx-nav-parent:hover .bx-nav-angle-bottom:before { 
	background-color: #212529;
}

.bx-nav-1-lvl.bx-nav-parent.bx-hover > .bx-nav-1-lvl-link .bx-nav-1-lvl-link-text,
.bx-nav-1-lvl.bx-nav-parent:hover > .bx-nav-1-lvl-link .bx-nav-1-lvl-link-text {
	background-color: transparent;
	color: #212529;
}

.bx-nav-1-lvl.bx-nav-parent.hover > .bx-nav-1-lvl-link,
.bx-nav-1-lvl.bx-nav-parent.bx-hover > .bx-nav-1-lvl-link {
	z-index: 250;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .06);
}

.bx-nav-1-lvl.bx-nav-parent.bx-hover > .bx-nav-1-lvl-link .bx-nav-1-lvl-link-text,
.bx-nav-1-lvl.bx-nav-parent.hover > .bx-nav-1-lvl-link .bx-nav-1-lvl-link-text { 
	background: transparent;
}

/**/


.bx-nav-angle-top {
	position: relative;
	display: block;
	margin-left: 10px;
	width: 10px;
	height: 10px;
}

.bx-nav-angle-top:after,
.bx-nav-angle-top:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 2px;
	background-color: #fff;
	content: '';
	transition: 250ms linear all;
}

.bx-nav-angle-top:after {
	margin-left: -2px;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.bx-nav-angle-top:before {
	margin-left: 2px;
	transform: translate(-50%, -50%) rotate(45deg);
}


/**/
.bx-nav-parent-arrow { display: none; }

/*endregion*/

/*region 2 lvl*/
.bx-nav-2-lvl-container,
.bx-nav-2-lvl-container-advanced {
	z-index: 999;
	display: none;
	padding: 0;
	min-width: 100%;
	border-top: none;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
	color: #333;
	opacity: 0;
	border-radius: 8px;
	margin-top: 4px;
}

.bx-nav-2-lvl-container > ul,
.bx-nav-2-lvl-container > div,
.bx-nav-2-lvl-container-advanced > ul,
.bx-nav-2-lvl-container-advanced > div { flex: 1 }

.bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container-advanced,
.bx-nav-1-lvl.hover .bx-nav-2-lvl-container-advanced,
.bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container,
.bx-nav-1-lvl.hover .bx-nav-2-lvl-container {
	position: absolute;
	top: calc(100%);
	z-index: 999;
	display: flex;
	background: #fff;
	opacity: 1;
	align-items: stretch;
}

.bx-nav-list-2-lvl {
	margin: 0;
	padding: 8px 0;
}

.bx-nav-2-lvl {
	display: block;
	padding: 0;
	min-width: 200px;
}

.bx-nav-2-lvl-link {
	display: block;
	padding: 8px 16px;
	border-bottom: none !important;
	text-decoration: none !important;
	border-radius: 6px;
	margin: 0 8px;
	transition: all 0.2s ease;
}

.bx-nav-2-lvl-link:hover {
	background: #f8f9fa;
}

.bx-nav-2-lvl-link-text {
	color: #495057;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
}

.bx-nav-2-lvl-link:hover .bx-nav-2-lvl-link-text {
	color: #212529;
}

.bx-nav-2-lvl > .bx-nav-list-2-lvl.bx-active .bx-nav-list-2-lvl-text,
.bx-nav-2-lvl > .bx-nav-list-2-lvl:hover .bx-nav-list-2-lvl-text {
	background: #f8f9fa;
	color: #212529;
}

/*endregion*/

/*region 3 lvl*/

.bx-nav-3-lvl-container-advanced:before,
.bx-nav-3-lvl-container:before {
	display: none;
}

.bx-nav-list-3-lvl {
	margin: 0;
	padding: 0 0 5px 0;
}

.bx-nav-3-lvl {
	display: block;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	min-width: 200px;
}

.bx-nav-3-lvl-link {
	display: block;
	padding: 6px 16px 6px 32px;
	border-bottom: none;
	color: #6c757d;
	text-decoration: none;
	font-size: 13px;
	line-height: 1.4;
	border-radius: 6px;
	margin: 0 8px;
	transition: all 0.2s ease;
}

.bx-nav-3-lvl-link.bx-active,
.bx-nav-3-lvl-link:hover {
	background: #f8f9fa;
	color: #495057;
	text-decoration: none;
}

/*endregion*/

/*region col 4 */
.bx-nav-list-4-col { position: static; }

.bx-nav-list-4-col .bx-nav-2-lvl-container-advanced {
	top: 100%;
	right: 0;
	left: 0;
}

.bx-nav-list-4-col .bx-nav-2-lvl-container,
.bx-nav-list-4-col .bx-nav-2-lvl-container-advanced {
	right: 0;
	left: 0;
}

/*endregion*/

/*region catinfo*/
.bx-nav-catinfo {
	position: relative;
	z-index: 120;
	padding: 15px 15px 5px;
	min-width: 200px;
	border-left: 1px solid #ecefef;
	background: #f7fafb;
}

.bx-nav-catinfo img {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border: 1px solid #e7e9ea;
}

.bx-nav-catinfo p {
	padding: 20px 5px 0;
	font-size: 13px;
}

/*endregion*/

/*region ASIDE */
.bx-menu-button-mobile {
	position: absolute;
	top: 8px;
	left: 5px;
	z-index: 10;
	width: 40px;
	height: 40px;
}

.bx-aside-nav-control {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1750;
	width: 40px;
	height: 40px;
	color: #fff;
	text-align: center;
	font-size: 28px;
	line-height: 40px;
	cursor: pointer;
	transition: left .15s linear;
}


.bx-nav-bars {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2100;
	display: block;
	box-sizing: border-box;
	width: 30px;
	height: 25px;
	border-top: 5px solid #fff;
	border-bottom: 5px solid #fff;
	vertical-align: middle;
	transform: translate(-50%, -50%);
}

.bx-nav-bars:after {
	position: absolute;
	top: 50%;
	display: block;
	background: #fff;
	width: 100%;
	height: 5px;
	content: '';
	transform: translateY(-50%);
}

.bx-wrapper,
.bx-aside-nav { transition: transform .15s linear; }

/**/
.bx-opened .bx-footer,
.bx-opened .workarea { overflow: hidden; }

/**/
.bx-aside-nav {
	position: fixed;
	top: 50px;
	bottom: 0;
	left: 0;
	z-index: 1600;
	display: none;
	width: 100%;
	background: white;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}

.bx-aside-nav.bx-opened {
	overflow-y: scroll;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.bx-aside-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bx-aside-nav a {
	display: block;
	overflow: hidden;
	padding-left: 15px;
	max-width: 100%;
	height: 48px;
	/* border-bottom: 1px solid #3d4b53 !important; */
	color: #919191;
	vertical-align: middle;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	line-height: 48px;
}

.bx-aside-nav .bx-nav-list-1-lvl {
	z-index: 1700;
	flex-direction: column;
}

.bx-aside-nav .bx-nav-1-lvl-link {
	padding: 0;
	display: flex;
	align-items: center;
}

.bx-aside-nav .bx-nav-1-lvl-link-text {
	padding: 0 0 0 15px;
}

.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent.hover > .bx-nav-1-lvl-link,
.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent.bx-hover > .bx-nav-1-lvl-link { box-shadow: none !important; }

.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent.bx-hover > .bx-nav-1-lvl-link .bx-nav-1-lvl-link-text,
.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent:hover > .bx-nav-1-lvl-link .bx-nav-1-lvl-link-text {
	background: transparent;
	/* color: #fff; */
}

.bx-aside-nav .bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container-advanced,
.bx-aside-nav .bx-nav-1-lvl.hover .bx-nav-2-lvl-container-advanced,
.bx-aside-nav .bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container,
.bx-aside-nav .bx-nav-1-lvl.hover .bx-nav-2-lvl-container {
	position: relative;
	box-shadow: none;
	top: auto;
}

.bx-aside-nav .bx-nav-1-lvl.bx-opened .bx-nav-2-lvl-container-advanced,
.bx-aside-nav .bx-nav-1-lvl.bx-opened .bx-nav-2-lvl-container {
	display: block;
	opacity: 1;
}

/* .bx-nav-1-lvl.bx-opened { background: #44535c; } */

/* .bx-aside-nav .bx-nav-2-lvl-link-text,
.bx-aside-nav .bx-nav-3-lvl-link-text,
.bx-aside-nav .bx-nav-4-lvl-link-text {
	color: #fff;
	font-weight: 500;
	font-size: 14px;
} */

.bx-aside-nav .bx-nav-list-2-lvl { 
	box-shadow: 2px 4px 4px 0 rgb(0 0 0 / 50%);
    background: white;
    border-radius: 5px;
    border: 1px solid rgba(194, 194, 194, 0.2);
 }

.bx-aside-nav .bx-nav-2-lvl-link { padding: 0 0 0 30px; }

.bx-aside-nav .bx-nav-2-lvl-link:hover { background-color: rgba(59, 72, 81, 0.2); }

.bx-aside-nav .bx-nav-3-lvl-link { padding: 0 0 0 45px; }

.bx-aside-nav .bx-nav-3-lvl-link:hover { background-color: #3b4851; }

.bx-aside-nav .bx-nav-4-lvl-link { padding: 0 0 0 60px; }

.bx-aside-nav .bx-nav-4-lvl-link:hover { background-color: #3b4851; }

.bx-aside-nav .bx-nav-parent { position: relative; }

.bx-aside-nav .bx-nav-parent-arrow {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 200;
	margin-top: 6px;
	width: 46px;
	height: 34px;
	border-left: 1px solid #5a6971;
	text-align: center;
}

.bx-aside-nav .bx-nav-parent.bx-opened .bx-nav-parent-arrow i { 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-angle-top,
.bx-aside-nav .bx-nav-angle-bottom {
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	margin: 0;
}

@media (min-width: 1200px) {
	.bx-nav-1-lvl > a { font-size: 15px; }

	.bx-nav-1-lvl > a span { padding: 12px 14px 15px }
}

@media (min-width: 992px) and (max-width: 1199px) {
	.bx-nav-1-lvl > a { font-size: 13px; }

	.bx-nav-1-lvl > a span { padding: 9px 11px 12px }
}

@media (min-width: 768px) and (max-width: 991px) {
	
	.d1_header_basket_text,
	.bx-nav-1-lvl > a { font-size: 11px; }

	.d1-top-contact-item,
	.d1-top-link { font-size: 11px!important;}

	.bx-logo-block img {
		max-width: 150px!important;
	}

	/* search title */
	.d1_search-title-btn {
		width:36px;
		height: 30px;
	}
	.form-control {
		min-height: unset;
	}
	.d1-search-title-input {
		height: 30px;
	}

	/* basket icon */
	.d1_header_basket_icon {
		padding: 6px;
	}

	.bx-nav-1-lvl > a span { padding: 5px 6px 9px }
}

@media (min-width: 768px) {
	.bx-aside-nav-control,
	.bx-aside-nav { display: none; }

	.bx-top-nav-container { display: block; }
}

@media (max-width: 767px) {
	.bx-aside-nav-control {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.bx-aside-nav { display: block; }

	.bx-top-nav-container { display: none; }

	.bx-aside-nav .bx-nav-parent-arrow { display: block; }

	.bx-aside-nav .bx-nav-1-lvl-link-text .bx-nav-angle-bottom{ display: none; }
	.bx-nav-1-lvl-link-text {
		font-weight: 600;
		color: #919191
	}
}

.bx-white {
	--theme-color-primary: #f5f5f5;
	--theme-color-second: #dfdfdf;
}

.bx-white .bx-nav-1-lvl-link-text,
.bx-white .bx-nav-2-lvl-link-text,
.bx-white .bx-nav-3-lvl-link.bx-active,
.bx-white .bx-nav-3-lvl-link:hover,
.bx-white .bx-nav-3-lvl-link.bx-active,
.bx-white .bx-nav-3-lvl-link:hover,
.bx-white .bx-nav-1-lvl.bx-nav-parent.bx-hover > .bx-nav-1-lvl-link .bx-nav-1-lvl-link-text,
.bx-white .bx-nav-1-lvl.bx-nav-parent:hover > .bx-nav-1-lvl-link .bx-nav-1-lvl-link-text { color: #333; }

/* End */


/* Start:/local/templates/eshop_bootstrap_v4/components/bitrix/form/web_form_design_1/bitrix/form.result.new/.default/style.css?17701249897494*/
/* Modern Form Wrapper */
.modern-form-wrapper {
	max-width: 700px;
	margin: 0 auto;
	padding: 0;
}

/* Form Alerts */
.modern-form-alert {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 18px 20px;
	border-radius: 12px;
	margin-bottom: 25px;
	font-size: 14px;
	line-height: 1.6;
}

.modern-form-alert svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.modern-form-alert-error {
	background: #fee;
	border: 1px solid #fcc;
	color: #c53030;
}

.modern-form-alert-error svg {
	stroke: #e53e3e;
}

/* Success Message */
.modern-form-success {
	text-align: center;
	padding: 50px 30px;
}

.modern-success-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
	animation: successPulse 0.6s ease-out;
}

.modern-success-icon svg {
	width: 40px;
	height: 40px;
	stroke: #ffffff;
}

@keyframes successPulse {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.modern-success-title {
	font-size: 24px;
	font-weight: 700;
	color: #2d3748;
	margin: 0 0 12px 0;
}

.modern-success-text {
	font-size: 15px;
	color: #718096;
	margin: 0;
	line-height: 1.6;
}

/* Form Header */
.modern-form-header {
	margin-bottom: 30px;
	text-align: center;
}

.modern-form-title {
	font-size: 28px;
	font-weight: 700;
	color: #2d3748;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.modern-form-image {
	margin: 20px 0;
}

.modern-form-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-form-description {
	font-size: 15px;
	color: #718096;
	line-height: 1.6;
	margin: 15px 0 0 0;
}

/* Form Fields */
.modern-form-fields {
	margin-bottom: 30px;
}

.modern-form-group {
	margin-bottom: 25px;
}

.modern-form-group:last-child {
	margin-bottom: 0;
}

.modern-form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 10px;
}

.modern-required {
	color: #e53e3e;
	font-weight: 700;
}

/* Input Wrapper */
.modern-form-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.modern-form-input-wrapper.has-icon svg {
	position: absolute;
	left: 15px;
	width: 20px;
	height: 20px;
	stroke: #a0aec0;
	pointer-events: none;
	z-index: 1;
	display: block;
}

.modern-form-input-wrapper:not(.has-icon) svg {
	display: none;
}

.modern-form-input-wrapper.textarea-wrapper svg {
	top: 15px;
	align-self: flex-start;
}

/* Form Inputs */
.modern-form-input,
.modern-form-textarea {
	width: 100%;
	padding: 14px 15px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	color: #2d3748;
	transition: all 0.3s ease;
	background: #f7fafc;
	box-sizing: border-box;
}

/* Input с иконкой */
.modern-form-input.has-icon-input {
	padding-left: 45px;
}

.modern-form-textarea {
	padding-left: 45px;
}

.modern-form-input:focus,
.modern-form-textarea:focus {
	outline: none;
	border-color: #3182ce;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1);
}

.modern-form-input::placeholder,
.modern-form-textarea::placeholder {
	color: #a0aec0;
}

.modern-form-textarea {
	resize: vertical;
	min-height: 100px;
	padding-top: 12px;
}

/* Select */
.modern-form-input[type="select"],
select.modern-form-input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 20px;
	padding-right: 45px;
}

/* Checkbox & Radio */
.modern-form-input[type="checkbox"],
.modern-form-input[type="radio"] {
	width: auto;
	padding: 0;
	margin-right: 8px;
}

/* Error Message */
.modern-form-error {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #e53e3e;
	margin-top: 6px;
}

.modern-form-error svg {
	width: 16px;
	height: 16px;
	stroke: #e53e3e;
	flex-shrink: 0;
}

/* Captcha */
.modern-captcha-wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.modern-captcha-image {
	max-width: 100%;
	border-radius: 8px;
	border: 2px solid #e2e8f0;
}

/* Form Buttons */
.modern-form-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.modern-form-submit,
.modern-form-apply,
.modern-form-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	white-space: nowrap;
}

.modern-form-submit {
	background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(49, 130, 206, 0.3);
	flex: 1;
	min-width: 200px;
}

.modern-form-submit:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(49, 130, 206, 0.4);
}

.modern-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.modern-form-submit svg {
	width: 20px;
	height: 20px;
	stroke: #ffffff;
}

.modern-form-apply {
	background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(72, 187, 120, 0.3);
}

.modern-form-apply:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(72, 187, 120, 0.4);
}

.modern-form-reset {
	background: #f7fafc;
	color: #4a5568;
	border: 2px solid #e2e8f0;
}

.modern-form-reset:hover {
	background: #edf2f7;
	border-color: #cbd5e0;
}

.modern-form-reset svg {
	width: 18px;
	height: 18px;
	stroke: #4a5568;
}

/* Form Note */
.modern-form-note {
	font-size: 13px;
	color: #718096;
	text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
	.modern-form-wrapper {
		padding: 0 15px;
	}
	
	.modern-form-title {
		font-size: 24px;
	}
	
	.modern-form-input,
	.modern-form-textarea {
		font-size: 14px;
		padding: 12px;
	}
	
	.modern-form-input.has-icon-input,
	.modern-form-textarea {
		padding-left: 40px;
	}
	
	.modern-form-buttons {
		flex-direction: column;
	}
	
	.modern-form-submit,
	.modern-form-apply,
	.modern-form-reset {
		width: 100%;
		min-width: auto;
	}
	
	.modern-success-icon {
		width: 70px;
		height: 70px;
	}
	
	.modern-success-icon svg {
		width: 35px;
		height: 35px;
	}
	
	.modern-success-title {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.modern-form-header {
		margin-bottom: 25px;
	}
	
	.modern-form-title {
		font-size: 20px;
	}
	
	.modern-form-description {
		font-size: 14px;
	}
	
	.modern-form-group {
		margin-bottom: 20px;
	}
	
	.modern-form-label {
		font-size: 13px;
	}
	
	.modern-form-input,
	.modern-form-textarea {
		padding: 11px;
	}
	
	.modern-form-input.has-icon-input,
	.modern-form-textarea {
		padding-left: 38px;
	}
	
	.modern-form-input-wrapper.has-icon svg {
		width: 18px;
		height: 18px;
		left: 12px;
	}
	
	.modern-form-submit,
	.modern-form-apply,
	.modern-form-reset {
		padding: 12px 24px;
		font-size: 14px;
	}
	
	.modern-form-success {
		padding: 40px 20px;
	}
}

[data-form-title="Обратный звонок"] [data-input-title="Устройство"],
[data-form-title="Обратный звонок"] [data-input-title="Причина обращения"],
[data-input-title="Тип заявки"] {
	display: none;
  }
/* End */


/* Start:/bitrix/components/bitrix/sale.basket.basket.line/templates/bootstrap_v4/style.css?17701248754790*/
.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/components/bitrix/sale.basket.basket.line/templates/bootstrap_v4/images/profile.svg); }

.basket-line-block-icon-cart:after { background: no-repeat center url(/bitrix/components/bitrix/sale.basket.basket.line/templates/bootstrap_v4/images/cart.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-fixed.vcenter {
		bottom: 10px;
		top: auto !important;
	}

	.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; }
/* End */


/* Start:/local/templates/eshop_bootstrap_v4/template_styles.css?177012498930191*/
:root {
	--main-color-1: #154372;
	--main-color-2: #d09b2a;

	--main-primary-text-color: #273647;

	--main-bg-gradient-1: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	--main-bg-gradient-2: linear-gradient(135deg, #e0e7ff 0%, var(--main-color-1) 170%);

	--main-btn-gradient-1: linear-gradient(135deg, #e0e7ff 0%, var(--main-color-1) 60%);
	
}

html {
	scroll-behavior: smooth;
  }
  
.bx-yellow,
.bx-theme-yellow {
	--primary: #f9a91d;
	--theme-color-primary: #f9a91d;
	--theme-color-second: #faba4a;
	--theme-color-light: #fff;
	--theme-b-link: #f9a91d;
	--theme-b-link-hover: #faba4a;
	--theme-b-tx-primary: #fff;
	--theme-b-bg-primary: #f9a91d;
	--theme-b-bd-primary: #f9a91d;
	--theme-b-sd-primary: rgba(249, 169, 29, 0.5);
	--theme-b-tx-primary-hover: #fff;
	--theme-b-bg-primary-hover: #faba4a;
	--theme-b-bd-primary-hover: #daa53e;
	--theme-b-tx-primary-active: #fff;
	--theme-b-bg-primary-active: #faba4a;
	--theme-b-bd-primary-active: #daa53e;
	--theme-b-tx-primary-disabled: #fff;
	--theme-b-bg-primary-disabled: #daa53e;
	--theme-b-bd-primary-disabled: #b7853b;
}

.bx-blue,
.bx-theme-blue {
	--primary: #0083d1;
	--theme-color-primary: #0083d1;
	--theme-color-second: #5ca6e4;
	--theme-color-light: #f0f6f8;
	--theme-b-link: #44b1c9;
	--theme-b-link-hover: #5cc3d1;
	--theme-b-tx-primary: #fff;
	--theme-b-bg-primary: #0083d1;
	--theme-b-bd-primary: #0083d1;
	--theme-b-sd-primary: rgba(0, 131, 209, 0.5);
	--theme-b-tx-primary-hover: #fff;
	--theme-b-bg-primary-hover: #5ca6e4;
	--theme-b-bd-primary-hover: #5599d2;
	--theme-b-tx-primary-active: #fff;
	--theme-b-bg-primary-active: #5ca6e4;
	--theme-b-bd-primary-active: #5599d2;
	--theme-b-tx-primary-disabled: #fff;
	--theme-b-bg-primary-disabled: #5599d2;
	--theme-b-bd-primary-disabled: #4d8bbf;
}

.bx-red,
.bx-theme-red {
	--primary: #e22b2b;
	--theme-color-primary: #e22b2b;
	--theme-color-second: #e95c5c;
	--theme-color-light: #f0f0f0;
	--theme-b-link: #e22b2b;
	--theme-b-link-hover: #e95c5c;
	--theme-b-tx-primary: #fff;
	--theme-b-bg-primary: #e22b2b;
	--theme-b-bd-primary: #e22b2b;
	--theme-b-sd-primary: rgba(226, 43, 43, 0.5);
	--theme-b-tx-primary-hover: #fff;
	--theme-b-bg-primary-hover: #e95c5c;
	--theme-b-bd-primary-hover: #d05454;
	--theme-b-tx-primary-active: #fff;
	--theme-b-bg-primary-active: #e95c5c;
	--theme-b-bd-primary-active: #d05454;
	--theme-b-tx-primary-disabled: #fff;
	--theme-b-bg-primary-disabled: #d05454;
	--theme-b-bd-primary-disabled: #c04e4e;
}

.bx-green,
.bx-theme-green {
	--primary: #63aa28;
	--theme-color-primary: #63aa28;
	--theme-color-second: #5b9f0b;
	--theme-color-light: #a8d95b;
	--theme-b-link: #44b1c9;
	--theme-b-link-hover: #5cc3d1;
	--theme-b-tx-primary: #fff;
	--theme-b-bg-primary: #63aa28;
	--theme-b-bd-primary: #63aa28;
	--theme-b-sd-primary: rgba(99, 170, 40, 0.5);
	--theme-b-tx-primary-hover: #fff;
	--theme-b-bg-primary-hover: #5b9f0b;
	--theme-b-bd-primary-hover: #56940b;
	--theme-b-tx-primary-active: #fff;
	--theme-b-bg-primary-active: #5b9f0b;
	--theme-b-bd-primary-active: #56940b;
	--theme-b-tx-primary-disabled: #fff;
	--theme-b-bg-primary-disabled: #56940b;
	--theme-b-bd-primary-disabled: #497c09;
}

body {
	background-attachment: fixed;
	background-size: cover;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#pagetitle { margin-bottom: 35px; }

h1,h2,h3,h4,h5 {
	font-family: var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-regular, 400);
}

.bx-content-section,
.bx-header-section {
	padding-bottom: 2px;
	/* background-color: rgba(255, 255, 255, .95); */
}

.bx-wrapper {
	background-color: #e9e9e9;
 }

/*region HEADER*/
/* .bx-header { }

.bx-header-section { } */

.bx-header-logo { order: 1 }

.bx-header-personal { order: 3 }

.main-header-info-block { margin-top: -20px; }

.d1_button {
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
    border-radius: 10px;
    padding: 10px;
    color: white;
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.15);
    font-weight: 600;
}
/* .bx-header-contact { order: 2 } */
.bx-header-search-title { order: 2 }

/*region Logo*/
/* .bx-logo-block {
	display: flex;
	align-items: center;
	height: 50px;
	border-bottom: none;
} */

.bx-logo-block img {
	max-height: 80px;
	max-width: 200px;
	width: auto;
	height: auto;
}

@media (max-width: 767px) {
	.bx-logo-block img {
		max-width: 100%;
		max-height: 45px;
		width: auto;
		height: auto;
	}

	.bx-header-logo {
		padding: 5px;
		justify-content: space-between!important;
		height: 55px;
	}

	.bx-logo-block { height: auto; }

	body.bx-theme-green .bx-store-logo { background: #33b111; }
}

/*endregion*/

/*region included Phone*/
.bx-header-phone-block {
	display: flex;
	align-items: center;
}

.bx-header-phone-number {
	color: #000;
	white-space: nowrap;
	font: 21px/28px var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-semi-bold, 600);
	transition: 250ms linear all;
}

.bx-header-phone-icon {
	display: block;
	margin-right: 10px;
	width: 26px;
	height: 26px;
	background: no-repeat center url(/local/templates/eshop_bootstrap_v4/images/phone.svg);
}

@media (max-width: 991px) {
	.bx-header-phone-number {
		font: 15px/18px var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
		font-weight: var(--ui-font-weight-semi-bold, 600);
	}
}

/*endregion*/

/*region included Worktime*/
.bx-header-worktime {
	color: #000;
	font: 16px/22px var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-semi-bold, 600);
	transition: 250ms linear all;
}

.bx-worktime-title {
	color: #adadad;
	font: 12px var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-regular, 400);
}

.bx-worktime-schedule {
	color: #000;
	font: 12px var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-regular, 400);
}

@media (max-width: 991px) {
	.bx-header-worktime {
		font: 15px/18px var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
		font-weight: var(--ui-font-weight-regular, 400);
	}
}

/*endregion*/

/*endregion*/

.sidebar-block-title {
	color: #343434;
	text-transform: uppercase;
	font-size: 14px;
	font-family: var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-semi-bold, 600);
}

/*region FOOTER*/
/* .bx-footer { }

.bx-footer-section { }

.bx-footer-section .bx-block-title { } */

.bx-footer-bg { background-color: #1f496a; }

.bx-footer-logo {
	border-bottom: none !important;
	text-decoration: none !important;
}

.bx-footer-logo img {
	max-width: 100%;
	height: auto;
	max-height: 80px;
}

/*endregion*/

.bx-inclinkspersonal-item.bx-theme-blue:hover { background: #0083d1; }

.bx-theme-blue.bx-inclinkspersonal-selected { background: #3398d7; }

.bx-inclinkspersonal-item.bx-theme-black:hover { background: #303030; }

.bx-theme-black.bx-inclinkspersonal-selected { background: #484848; }

.bx-inclinkspersonal-item.bx-theme-green:hover { background: #44b1c9; }

.bx-theme-green.bx-inclinkspersonal-selected { background: #5cc3d1; }

.bx-inclinkspersonal-item.bx-theme-red:hover { background: #e63c3c; }

.bx-theme-red.bx-inclinkspersonal-selected { background: #e95c5c; }

.bx-inclinkspersonal-item.bx-theme-yellow:hover { background: #f4a52e; }

.bx-theme-yellow.bx-inclinkspersonal-selected { background: #fbb859; }

/*region Bootstrap modified*/
.btn-primary,
.list-group-item.active {
	border-color: var(--theme-b-bd-primary);
	background-color: var(--theme-b-bg-primary);
	color: var(--theme-b-tx-primary);
}

.btn-primary:hover {
	border-color: var(--theme-b-bd-primary-hover);
	background-color: var(--theme-b-bg-primary-hover);
	color: var(--theme-b-tx-primary-hover);
}

.btn-primary:focus,
.btn-primary.focus {
	box-shadow: 0 0 0 0.2rem var(--theme-b-sd-primary);
}

.btn-primary.disabled,
.btn-primary:disabled {
	border-color: var(--theme-b-bg-primary);
	background-color: var(--theme-b-bg-primary);
	color: var(--theme-b-tx-primary);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
	border-color: var(--theme-b-bd-primary-active);
	background-color: var(--theme-b-bg-primary-active);
	color: var(--theme-b-tx-primary-active);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem var(--theme-b-sd-primary);
}

.form-control:focus {
	border-color: var(--theme-color-primary);
	box-shadow: 0 0 0 0.2rem var(--theme-b-sd-primary);
}

a,
.btn-link { color: var(--theme-b-link); }

a:hover,
.btn-link:hover { color: var(--theme-b-link-hover); }

.g-font-size-15 { font-size: 15px; }

.g-font-size-17 { font-size: 17px; }

.g-font-size-20 { font-size: 20px; }

.text-primary { color: var(--primary) !important }

.bg-primary { background: var(--primary) !important }

.border-primary { border-color: var(--primary) !important }

/*endregion*/

/* .bx-sidebar-block { } */

.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5 {
	text-transform: uppercase;
	font-size: 14px;
	font-family: var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-semi-bold, 600);
}

.sidebar li {
	font-size: 12px;
	font-family: var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
	font-weight: var(--ui-font-weight-semi-bold, 600);
}

.sidebar-icon {
	width: 27px;
	height: 27px;
	margin-right: 5px;
	border-radius:50%;
	background-color: var(--theme-color-primary);
	background-repeat: no-repeat;
	background-position: center;
}

.sidebar-icon-label {
	background-image:  url(/local/templates/eshop_bootstrap_v4/images/label.svg);
	background-size: 19px auto;
}

.sidebar-icon-delivery {
	background-image: url(/local/templates/eshop_bootstrap_v4/images/delivery.svg);
	background-size: 17px auto;
}

.sidebar-icon-sale {
	background-image: url(/local/templates/eshop_bootstrap_v4/images/sale.svg);
	background-size: auto 17px ;
}

.sidebar-icon-self {
	background-image: url(/local/templates/eshop_bootstrap_v4/images/self.svg);
	background-size: auto 17px ;
}

.sidebar-icon-phone {
	background-image: url(/local/templates/eshop_bootstrap_v4/images/phone_white.svg);
	background-size: auto 21px ;
}

/* Header Design 1 - Modern Simple Layout */

/* Top Info Bar */
.d1-top-info-bar {
	padding: 6px 0 4px;
	font-size: 12px;
}

.d1-top-info-bar .container {
	padding-left: 9px;
}

.bx-header-section.container {
	padding-block: 5px;
}

.d1-top-links {
	display: flex;
	gap: 20px;
	align-items: center;
}

.d1-top-link {
	color: #6c757d;
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 12px;
}

.d1-top-link:hover {
	color: #495057;
	text-decoration: none;
}

.d1-top-contacts {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.d1-top-contact-item {
	color: white;
	font-size: 12px;
	font-weight: 600;
}

.d1-top-contact-item a {
	color: white;
	text-decoration: none;
	transition: color 0.2s ease;
}

.d1-top-contact-item a:hover {
	color: white;
	text-decoration: none;
}

.d1-mobile-contacts {
	display: none;
	flex-direction: column;
	align-items: center;
}
.d1-mobile-contact-item {
	color: white;
	font-size: 12px;
	white-space: nowrap;
}

/* Responsive Top Bar */
@media (max-width: 767px) {
	.d1-top-info-bar {
		display: none;
	}
}

/* Header Structure */
.bx-header {
	background-color: var(--main-primary-text-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 10px;
}

.bx-header-section.container, 
.bx-content-section.container,
.footer-main .container {
	max-width: 96%;
}

/* Top Row with Logo, Search, Basket */
.bx-header-logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.d1_search-title-block {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	order: 2;
	padding: 0 20px;
}

.bx-header-personal {
	display: flex;
	align-items: center;
	order: 3;
}

/* Menu Row */
.bx-top-nav {
	margin-bottom: 0;
}

/* generels styles */
.d1-block {
	background: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 2px 4px 4px 0 rgb(0 0 0 / 50%);
}

.d1-block-title {
	font-size: 26px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
	color: var(--main-primary-text-color);
}

.d1-block-content {
	display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.d1-block-item {
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 4px 4px 0 rgb(0 0 0 / 50%);
	background: white;
	border-radius: 5px;
	border: 1px solid rgba(194, 194, 194, 0.2);
}

/* how we work block */
.how-we-work .block-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.how-we-work .block-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 25px 15px;
	border-radius: 12px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	min-height: 180px;
}

.how-we-work .block-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.how-we-work .item-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.how-we-work .item-icon svg {
	width: 32px;
	height: 32px;
	stroke: #ffffff;
	stroke-width: 2.5;
}

.how-we-work .item-count {
	color: var(--main-color-1);
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.how-we-work .item-text {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #2d3748;
	line-height: 1.4;
}

.how-we-work .arrow-separator {
	font-size: 28px;
	color: var(--main-color-1);
	font-weight: bold;
	flex-shrink: 0;
	animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
	0%, 100% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

/* stages of repairs block */
.stages-of-repairs .swiper {
	height: min-content;
	padding: 0 60px 40px;
	position: relative;
}

.stages-of-repairs .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.stages-of-repairs .swiper-slide {
	height: auto;
	display: flex;
}

.stages-of-repairs .slide-inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 10px;
	border-radius: 16px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	height: auto;
}

.stages-of-repairs .slide-inner:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
	border-color: var(--main-color-1);
}

.stages-of-repairs .item-icon {
	width: 70px;
	height: 70px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	border-radius: 50%;
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
	transition: all 0.3s ease;
}

.stages-of-repairs .slide-inner:hover .item-icon {
	transform: scale(1.1) rotate(5deg);
}

.stages-of-repairs .item-icon svg {
	width: 36px;
	height: 36px;
	stroke: #ffffff;
	stroke-width: 2.5;
}

.stages-of-repairs .item-count {
	color: var(--main-primary-text-color);
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: 2px;
}

.stages-of-repairs .item-title {
	color: var(--main-primary-text-color);
	font-size: 18px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 15px;
	line-height: 1;
}

.stages-of-repairs .item-text {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--main-primary-text-color);
}

.stages-of-repairs .item-text ul {
	text-align: left;
	padding-left: 20px;
	margin: 10px 0 0 0;
	list-style-type: none;
}

.stages-of-repairs .item-text ul li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 20px;
}

.stages-of-repairs .item-text ul li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--main-color-1);
	font-weight: bold;
	font-size: 14px;
}

.stages-of-repairs .swiper-button-prev,
.stages-of-repairs .swiper-button-next {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
	transition: all 0.3s ease;
}

.stages-of-repairs .swiper-button-prev:hover,
.stages-of-repairs .swiper-button-next:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
}

.stages-of-repairs .swiper-button-prev {
	left: 0;
}

.stages-of-repairs .swiper-button-next {
	right: 0;
}

.stages-of-repairs .swiper-button-prev:after,
.stages-of-repairs .swiper-button-next:after {
	font-size: 22px;
	font-weight: bold;
	color: #ffffff;
}

.stages-of-repairs .swiper-pagination {
	bottom: 0;
}

.stages-of-repairs .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cbd5e0;
	opacity: 1;
	transition: all 0.3s ease;
}

.stages-of-repairs .swiper-pagination-bullet-active {
	background: var(--main-color-1);
	width: 30px;
	border-radius: 5px;
}

/* iOS Safari fix for slide height */
@supports (-webkit-touch-callout: none) {
	.stages-of-repairs .swiper-slide {
		height: auto !important;
	}
	
	.stages-of-repairs .slide-inner {
		height: auto !important;
	}
	
	@media (max-width: 767px) {
		.stages-of-repairs .slide-inner {
			min-height: 320px;
		}
	}
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.d1_search-title-block {
		padding: 0 10px;
	}

	/* how we work block */
	.how-we-work .block-content {
		flex-wrap: wrap;
		gap: 20px;
	}

	.how-we-work .block-item {
		flex: 0 0 calc(33.333% - 15px);
		min-height: 150px;
		padding: 20px 10px;
	}

	.how-we-work .arrow-separator {
		display: none;
	}

	.how-we-work .item-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
	}

	.how-we-work .item-icon svg {
		width: 26px;
		height: 26px;
	}

	.how-we-work .item-count {
		font-size: 18px;
	}

	.how-we-work .item-text {
		font-size: 12px;
	}
}

@media (max-width: 767px) {
	.d1_search-title-block {
		order: 4;
		width: 100%;
		padding: 10px 0;
	}
	
	.bx-header-section .row {
		flex-wrap: wrap;
	}

	.bx-header {
		background-color: var(--main-color-1);
	}
	.bx-header-section {
		background-color: unset;
	}

	/* mobile contacts */
	.d1-mobile-contacts {
		display: flex;
	}

	.bx-header-logo {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.bx-header-logo .text-center {
		grid-column-start: 2;
	}
}

@media (max-width: 576px) {
	/* general styles */
	.d1-block {padding: 20px;}
	.d1-block-title {font-size: 18px;}

	.bx-header-section.container {
		padding-inline: 20px;
	}

	/* how we work block */
	.how-we-work .block-content {
		gap: 15px;
	}

	.how-we-work .block-item {
		flex: 0 0 calc(50% - 8px);
		min-height: 140px;
		padding: 15px 8px;
	}

	.how-we-work .item-icon {
		width: 45px;
		height: 45px;
		margin-bottom: 8px;
	}

	.how-we-work .item-icon svg {
		width: 22px;
		height: 22px;
	}

	.how-we-work .item-count {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.how-we-work .item-text {
		font-size: 11px;
	}

	/* stages of repairs block */
	.stages-of-repairs .swiper {
		padding: 0 0px 35px;
	}

	.stages-of-repairs .slide-inner {
		padding: 25px 15px;
		min-height: 320px;
	}

	.stages-of-repairs .item-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}

	.stages-of-repairs .item-icon svg {
		width: 30px;
		height: 30px;
	}

	.stages-of-repairs .swiper-button-prev,
	.stages-of-repairs .swiper-button-next {
		display: none;
	}

	.stages-of-repairs .swiper-button-prev:after,
	.stages-of-repairs .swiper-button-next:after {
		font-size: 18px;
	}

	.stages-of-repairs .item-count {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.stages-of-repairs .item-title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	/* .stages-of-repairs .item-text {
		font-size: 14px;
	} */

	.stages-of-repairs .item-text ul li {
		margin-bottom: 6px;
		/* font-size: 11px; */
	}
}

/* warranty banner */
.warranty-banner {
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	border-radius: 10px;
	padding: 20px 40px;
	box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.15);
	margin: 20px 0;
}

.warranty-banner-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.warranty-icon {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.warranty-icon svg {
	width: 100%;
	height: 100%;
	stroke: #fff;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.warranty-text {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
}

@media (max-width: 768px) {
	.warranty-banner {
		padding: 15px 20px;
	}

	.warranty-banner-content {
		gap: 15px;
	}

	.warranty-icon {
		width: 40px;
		height: 40px;
	}

	.warranty-text {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.warranty-banner {
		padding: 12px 15px;
	}

	.warranty-banner-content {
		gap: 10px;
	}

	.warranty-icon {
		width: 35px;
		height: 35px;
	}

	.warranty-text {
		font-size: 12px;
	}
}

/* download price pdf button */
.download-price-btn-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
}

.download-price-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 30px;
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	border-radius: 50px;
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
	transition: all 0.3s ease;
	text-decoration: none;
	cursor: pointer;
}

.download-price-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 28px rgba(102, 126, 234, 0.5);
	text-decoration: none;
}

.download-price-btn .btn-icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.download-price-btn:hover .btn-icon {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(3px);
}

.download-price-btn .btn-icon svg {
	width: 20px;
	height: 20px;
	stroke: #ffffff;
	stroke-width: 2.5;
}

.download-price-btn .btn-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.download-price-btn .btn-title {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
}


@media (max-width: 768px) {
	.download-price-btn .btn-title {
		font-size: 12px;
	}
}

.bx-nav-1-lvl-link-text.bx-active {
	color: #cf9c57;
	text-decoration: underline;
}



/* ============================================
   СОВРЕМЕННЫЙ ФУТЕР
   ============================================ */

.modern-footer {
	margin-top: 30px;
}

/* Основная секция футера */
.footer-main {
	background: var(--main-primary-text-color);
	padding: 60px 0 40px;
	position: relative;
	overflow: hidden;
}

.footer-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--main-color-1) 0%, var(--main-color-2) 50%, var(--main-color-1) 100%);
}

/* Логотип и о компании */
.footer-brand {
	margin-bottom: 20px;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.footer-logo:hover {
	transform: translateX(5px);
	opacity: 0.8;
}

.footer-logo img {
	max-width: 180px;
	height: auto;
}

.footer-about {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Заголовки секций */
.footer-title {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	border-radius: 2px;
}

/* Меню футера */
.footer-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu-item {
	margin-bottom: 12px;
}

.footer-menu-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.footer-menu-link::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--main-color-1);
	transition: all 0.3s ease;
}

.footer-menu-link:hover {
	color: #ffffff;
	text-decoration: none;
	padding-left: 8px;
}

.footer-menu-link:hover::before {
	width: 100%;
}

/* Контакты */
.footer-contacts {
	margin-bottom: 25px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.contact-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	border-radius: 8px;
	color: #ffffff;
	transition: all 0.3s ease;
}

.footer-contact-item:hover .contact-icon {
	transform: rotate(5deg) scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 46, 111, 0.4);
}

.contact-text {
	flex: 1;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.5;
	padding-top: 6px;
}

.contact-text a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-text a:hover {
	color: var(--main-color-1);
}

/* Социальные сети */
.footer-social {
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-title {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-social-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.footer-social-btn {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.footer-social-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	transition: all 0.3s ease;
	z-index: 0;
}

.footer-social-btn:hover::before {
	background: rgba(255, 255, 255, 0.2);
}

.footer-social-btn svg {
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.footer-social-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-social-btn:hover svg {
	transform: scale(1.1);
}

/* Цвета соцсетей */
.footer-social-btn.whatsapp {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	color: #ffffff;
}

.footer-social-btn.instagram {
	background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
	color: #ffffff;
}

.footer-social-btn.facebook {
	background: linear-gradient(135deg, #1877F2 0%, #0D5DBE 100%);
	color: #ffffff;
}

.footer-social-btn.email {
	background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
	color: #ffffff;
}

/* Нижняя секция */
.footer-bottom {
	background: #0a0a14;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

.footer-up-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	padding: 8px 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-up-btn:hover {
	color: #ffffff;
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 46, 111, 0.3);
	text-decoration: none;
	border-color: transparent;
}

.footer-up-btn svg {
	transition: all 0.3s ease;
}

.footer-up-btn:hover svg {
	transform: translateY(-3px);
}

/* Адаптивность футера */
@media (max-width: 991px) {
	.footer-main {
		padding: 50px 0 30px;
	}
	
	.footer-title {
		font-size: 16px;
		margin-bottom: 15px;
	}
	
	.footer-social-btn {
		width: 40px;
		height: 40px;
	}
	
	.contact-icon {
		width: 32px;
		height: 32px;
	}
}

@media (max-width: 767px) {
	/* .modern-footer {
		margin-top: 40px;
	} */
	
	.footer-main {
		padding: 40px 0 25px;
	}
	
	.footer-title {
		font-size: 15px;
		margin-bottom: 12px;
	}
	
	.footer-brand {
		margin-bottom: 30px;
		text-align: center;
	}
	
	.footer-about {
		font-size: 13px;
	}
	
	.footer-menu-link {
		font-size: 13px;
	}
	
	.contact-text {
		font-size: 13px;
	}
	
	.footer-social {
		text-align: center;
		margin-top: 25px;
	}
	
	.footer-social-links {
		justify-content: center;
	}
	
	.footer-bottom {
		padding: 15px 0;
	}
	
	.footer-copyright {
		font-size: 12px;
	}
	
	.footer-up-btn {
		font-size: 13px;
		padding: 6px 12px;
	}
}

@media (max-width: 576px) {
	.footer-main {
		padding: 30px 0 20px;
	}
	
	.footer-social-btn {
		width: 38px;
		height: 38px;
	}
	
	.contact-icon {
		width: 30px;
		height: 30px;
	}
	
	.footer-social-links {
		gap: 8px;
	}
	.contact-text {max-width:240px;}
}
@media (max-width: 950px) {
header.bx-header {
    padding-top: 25px;
}
header > div.bx-header-section.container > div.main-header-info-block.row.pt-0.pt-md-1.mb-1.align-items-center > div.col-12.col-md-auto.bx-header-logo > div > span > a {
    color: #fff;
    text-decoration: none;
}
}

.header-contacts-info {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
span.d1-top-contact-item > a {
    color: #fff !important;
}

/* global buttons  */
.btn-primary,
.bx-blue .btn.btn-default {
	background: var(--main-bg-gradient-1)!important;
    border: none!important;
}

.bx-pagination .bx-pagination-container ul li.bx-active span {
	background: var(--main-color-1)!important;
}

.title-search-result {
	background: white;
	border: 1px solid rgb(220, 220, 220);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding: 10px;
}
/* End */
/* /local/templates/eshop_bootstrap_v4/components/bitrix/sale.basket.basket.line/design_1/style.css?17701249891330 */
/* /local/templates/eshop_bootstrap_v4/components/bitrix/search.title/design_1/style.css?17701249891708 */
/* /local/templates/eshop_bootstrap_v4/components/bitrix/menu/design_1/style.css?177012498912443 */
/* /local/templates/eshop_bootstrap_v4/components/bitrix/form/web_form_design_1/bitrix/form.result.new/.default/style.css?17701249897494 */
/* /bitrix/components/bitrix/sale.basket.basket.line/templates/bootstrap_v4/style.css?17701248754790 */
/* /local/templates/eshop_bootstrap_v4/template_styles.css?177012498930191 */
