

/* Start:/local/templates/main_new/assets/css/style.css?1773522359516*/
@import '/local/templates/main_new/assets/css/core/colors.css';
@import '/local/templates/main_new/assets/css/core/variables.css';
@import '/local/templates/main_new/assets/css/core/breakpoints.css';
@import '/local/templates/main_new/assets/css/core/reset.css';
@import '/local/templates/main_new/assets/css/core/typography.css';

@import '/local/templates/main_new/assets/css/ui/buttons.css';
@import '/local/templates/main_new/assets/css/ui/inputs.css';
@import '/local/templates/main_new/assets/css/ui/select.css';
@import '/local/templates/main_new/assets/css/ui/tabs.css';
@import '/local/templates/main_new/assets/css/ui/lists.css';
@import '/local/templates/main_new/assets/css/ui/cards.css';
@import '/local/templates/main_new/assets/css/ui/forms.css';
@import '/local/templates/main_new/assets/css/ui/icons.css';

@import '/local/templates/main_new/assets/css/layout/container.css';
@import '/local/templates/main_new/assets/css/layout/grid.css';
@import '/local/templates/main_new/assets/css/layout/header.css';
@import '/local/templates/main_new/assets/css/layout/footer.css';
@import '/local/templates/main_new/assets/css/layout/section.css';

@import '/local/templates/main_new/assets/css/pages/home.css';
/* End */


/* Start:/local/templates/main_new/assets/css/ui/products.css?17738248431835*/
.product-card {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--black);
    background: var(--white);
    padding-bottom: 40px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-card__img-wrap {
    position: relative;
    width: 100%;
    height: 278px;
    background-color: var(--white);
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.product-card__img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.02);
}

.product-card__content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__name {
    font-size: 18px;
    line-height: normal;
    font-weight: var(--weight-regular);
    margin-bottom: 20px;
}

.product-card__text {
    font-size: 14px;
    line-height: var(--lh-150);
    color: var(--gray-500);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__btn-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

@media (max-width: 960px) {
    .product-card__img-wrap {
        height: 248px;
    }
    .product-card__name {
        font-size: 16px;
    }
}
/* End */


/* Start:/local/templates/main_new/components/bitrix/catalog.section.list/v_main_menu_links/style.css?17752342895442*/
@media (min-width: 1361px) {
    .desktop-nav {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    ul.main-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: clamp(10px, 1.2vw, 25px);
        /* gap: 15px;  */
        height: 17px;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    ul.main-menu>li {
        margin: 0;
        padding: 0;
        position: static;
    }

    ul.main-menu>li>a {
        white-space: normal;
        font-size: 14px;
        color: var(--gray-500);
        text-decoration: none;
        font-weight: var(--weight-light);
        transition: color 0.2s ease;
        line-height: var(--lh-120);
        display: inline-block;
        padding: 10px 0;
        cursor: pointer;
    }

    ul.main-menu>li>a.active,
    ul.main-menu>li>a:hover,
    ul.main-menu>li.menu-open>a {
        color: var(--accent);
    }

    .mega-menu-wrapper {
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        box-sizing: border-box;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.035),
            0 4px 6px -2px rgba(0, 0, 0, 0.035);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }


    .mega-menu-wrapper.is-open {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .mega-menu-container {
        width: 1360px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0;
        box-sizing: border-box;
    }

    .mega-menu-left {
        display: grid;
        grid-template-columns: 267px 267px;
        column-gap: 30px;
        row-gap: 16px;
    }

    .mega-menu-child-item {
        display: flex;
        align-items: center;
        text-decoration: none;
        gap: 30px;
        white-space: normal !important;
    }

    .child-item-pic {
        width: 86px;
        height: 57px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border: 1px solid var(--border-color);
    }

    .child-item-pic img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .child-item-name {
        font-size: 14px;
        color: var(--gray-500);
        font-weight: var(--weight-light);
        line-height: var(--lh-120);
        transition: color 0.2s ease;
        white-space: normal;
    }

    .mega-menu-child-item.active .child-item-name,
    .mega-menu-child-item:hover .child-item-name {
        color: var(--accent);
        transition: all 0.3s ease;
    }

    .mega-menu-child-item.active .child-item-pic,
    .mega-menu-child-item:hover .child-item-pic {
        border-color: var(--accent);
        transition: all 0.3s ease;
    }

    .mega-menu-right {
        display: flex;
        flex-direction: column;
    }

    .mega-menu-right.cats-multiple {
        align-items: flex-start;
    }

    .mega-menu-right.cats-single {
        align-items: flex-end;
    }

    .catalog-heading {
        font-size: 22px;
        font-weight: var(--weight-regular);
        color: var(--gray-500);
        margin-bottom: 24px;
        width: 100%;
    }

    .cats-multiple .catalog-heading {
        text-align: left;
    }

    .cats-single .catalog-heading {
        text-align: right;
    }

    .catalog-items-wrap {
        display: flex;
        gap: 30px;
        flex-direction: row-reverse;
    }

    .catalog-download-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        border: 1px solid var(--border-color);
        padding: 15px 20px;
        text-decoration: none;
        width: 280px;
        box-sizing: border-box;
        transition: all 0.3s ease;
        background: var(--white);
        white-space: normal;
    }

    .catalog-download-card:hover,
    .catalog-download-card:hover .catalog-pic {
        border-color: var(--accent);
        transition: all 0.3s ease;
    }

    .catalog-download-card:hover .catalog-name {
        color: var(--accent);
    }

    .catalog-pic {
        width: 66px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        border: 1px solid var(--border-color);
    }

    .catalog-pic img {
        max-width: 100%;
        height: auto;
    }

    .catalog-name {
        font-size: 14px;
        color: var(--gray-500);
        font-weight: var(--weight-light);
        text-align: left;
        line-height: 1.3;
        transition: color 0.3s ease;
        white-space: normal;
    }
}
/* End */


/* Start:/local/templates/main_new/components/bitrix/breadcrumb/v_custom/style.css?17740264451269*/
.bx-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
    font-family: sans-serif;
}

.bx-breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
}

.bx-breadcrumb-item a,
.bx-breadcrumb-item a span {
    color: var(--accent) !important;
    text-decoration: none;
    transition: opacity 0.2s;
}

.page-custom .bx-breadcrumb-item a,
.page-custom .bx-breadcrumb-item a span {
    color: var(--white) !important;
}

.bx-breadcrumb-item a:hover {
    opacity: 0.7;
}

.bx-breadcrumb-item>span[itemprop="name"] {
    color: var(--gray-300);
    cursor: default;
}

.bx-breadcrumb-item .separator {
    display: block;
    width: 4px;
    height: 4px;
    background-color: var(--gray-400);
    border-radius: 50%;
    margin: 0 20px;
    opacity: 0.5;
}

.page-custom .bx-breadcrumb-item .separator,
.block-custom .bx-breadcrumb-item .separator {
    background-color: var(--white);
    opacity: 1;
}


@media (max-width: 640px) {
    .bx-breadcrumb {
        align-items: flex-start;
        padding: 20px 0;
        flex-direction: column;
    }

    .bx-breadcrumb-item {
        margin: 0 0 7px 0;
    }

    .bx-breadcrumb-item .separator {
        display: none;
    }
}
/* End */


/* Start:/local/templates/main_new/components/bitrix/catalog.section.list/v_main_menu_mobile_links/style.css?1775242611180*/
#menu li.active > a,
#menu li.active > span {
    color: var(--accent);
}

#menu .mm-listitem_selected > a,
#menu .mm-listitem_selected > span {
    color: var(--accent);
}
/* End */


/* Start:/local/templates/main_new/components/bitrix/search.title/v_main-search/style.css?17763669485770*/
@media screen and (min-width: 961px) and (max-width: 1360px) {
	.inline-search-block {
		display: none !important;
	}

	.title-search-result {
		display: none !important;
	}
}

@media screen and (width > 1360px),
(width < 961px) {
	.inline-search-block {
		background: var(--white);
		top: -200px;
		z-index: 3000;
		transition: all ease .3s;
		position: fixed;
		right: 0;
		width: 100%;
	}

	.overlay-search {
		background: rgba(0, 0, 0, 0.7) !important;
		opacity: .7;
		height: 100%;
		width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 2999;
		display: none;
	}

	.overlay-search.search {
		display: block;
	}

	.inline-search-block.show {
		top: 0;
		display: block;
	}
}

.search-block {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
	padding: 22px 0;
}

div.search-input-div {
	padding-right: 50px;
	width: 100%;
}

div.search-input-div input[type="text"] {
	padding: 0 0 0 35px;
	background: 0 0;
	border: none;
	border-radius: 0;
	color: var(--gray-500);
	display: block;
	line-height: 18px;
	width: 100%;
	outline: none;
}

.search-button-div {
	position: relative;
}

.close-block.inline-search-hide {
	cursor: pointer;
	margin-left: 35px;
}

.close-block.inline-search-hide .close-icon {
	background: var(--gray-decor) url(/local/templates/main_new/components/bitrix/search.title/v_main-search/images/сlose_mask.svg) center center no-repeat;
	min-width: 16px;
	min-height: 16px;
	line-height: 16px;
	display: block;
}

.title-search-result.title-search-input {
	width: 100% !important;
	left: 0 !important;
	margin-left: 0;
}

@media (max-width: 960px) {
	.search-block {
		padding: 17px 0;
	}

	div.search-input-div {
		padding-right: 20px;
	}

	div.search-input-div input[type="text"] {
		padding: 0;
	}
}

div.title-search-result .bx_searche {
	max-height: 495px;
	max-width: 1320px;
	margin: 20px auto auto;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bx_searche_footer {
	background: var(--white);
	margin: 20px 0 20px 10px;
	flex-shrink: 0;
}

.bx_searche .bx_item_description {
	font-size: 14px;
	line-height: var(--lh-120);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}


@media screen and (width > 1360px),
(width < 961px) {
	.inline-search-block {
		background: var(--white);
		top: -200px;
		z-index: 3000;
		transition: all ease .3s;
		position: fixed;
		right: 0;
		width: 100%;
	}

	.overlay-search {
		background: rgba(0, 0, 0, 0.7) !important;
		opacity: .7;
		height: 100%;
		width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 2999;
		display: none;
	}

	.overlay-search.search {
		display: block;
	}

	.inline-search-block.show {
		top: 0;
		display: block;
	}
}

.bx_item_wrapper {
	border: 1px solid var(--border-color);
	transition: border-color 0.3s ease;
	border-radius: var(--radius-sm);
}

.bx_item_wrapper a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	z-index: 3;
}

.bx_item_wrapper:hover a::after {
	transform: scaleX(1);
}

.bx_searche .bx_img_element {
	width: 80px;
	height: 80px;
	line-height: 80px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0;
	position: static;
}

.bx_searche .bx_img_element img {
	max-width: 100%;
	max-height: 100%;
	width: 80px;
	height: 80px;
	line-height: 80px;
	object-fit: contain;
}

.bx_item_wrapper:hover:hover .bx_img_element img {
	transform: scale(1.02);
}

.bx_searche .bx_item_block {
	display: flex;
	text-decoration: none;
	padding: 20px;
	height: 120px;
	box-sizing: border-box;
	position: relative;
	align-items: center;
	gap: 20px;
}

.bx_searche .bx_item_element {
	margin-left: 0;
	flex-grow: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	justify-content: center;
}

.bx_searche .bx_item_name {
	font-weight: var(--weight-semibold);
	text-overflow: ellipsis;
	overflow: hidden;
	margin-bottom: 10px;
	font-size: 16px;
}

.bx_searche .btn.bx_item_link {
	height: 46px;
}

.bx_searche_scrollable {
	overflow-y: auto;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 20px;
	padding-right: 10px;
	padding-left: 10px;
}

.bx_searche_scrollable::-webkit-scrollbar {
	width: 6px;
	background: transparent;
}

.bx_searche_scrollable::-webkit-scrollbar-thumb {
	background: var(--gray-200);
	border-radius: var(--radius-sm);
	cursor: pointer;
}

.title-search-result {
	overflow: hidden !important;
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	z-index: 3000;
	display: none;
	height: auto !important;
	max-height: none !important;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	width: 100%;
}

@media screen and (max-width: 960px) {
	.bx_searche .btn.bx_item_link {
		display: none;
	}
}

@media (max-width: 640px) {
	.search-block {
		padding: 7px 0;
	}

	div.search-input-div {
		padding-right: 10px;
		font-size: 14px;
	}

	div.search-input-div input[type="text"] {
		padding: 0;
		line-height: 1;
	}

	div.title-search-result .bx_searche {
		max-height: 392px;
		margin: 10px auto auto;
	}

	.bx_searche_scrollable {
		gap: 10px;
	}

	.bx_searche .bx_item_block {
		display: flex;
		text-decoration: none;
		padding: 10px;
		height: 100px;
		box-sizing: border-box;
		position: relative;
		align-items: center;
		gap: 10px;
	}

	.bx_searche .bx_item_name {
		margin-bottom: 4px;
		font-size: 14px;
	}

	.bx_searche .bx_item_description {
		font-size: 12px;
	}

	.bx_searche_footer {
		margin: 10px 0 10px 10px;
	}
}
/* End */
/* /local/templates/main_new/assets/css/style.css?1773522359516 */
/* /local/templates/main_new/assets/css/ui/products.css?17738248431835 */
/* /local/templates/main_new/components/bitrix/catalog.section.list/v_main_menu_links/style.css?17752342895442 */
/* /local/templates/main_new/components/bitrix/breadcrumb/v_custom/style.css?17740264451269 */
/* /local/templates/main_new/components/bitrix/catalog.section.list/v_main_menu_mobile_links/style.css?1775242611180 */
/* /local/templates/main_new/components/bitrix/search.title/v_main-search/style.css?17763669485770 */
