

/* Start:/bitrix/templates/universe_s1/components/bitrix/catalog/catalog.1/style.css?1787122494825*/
.page-catalog {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
}

.page-catalog .section-tabs,
.page-catalog .page-catalog-search__form,
.page-catalog .p-infograd-search {
    grid-column: 1 / -1
}

.page-catalog .sidearea-block {
    margin-bottom: 30px;
}

.page-catalog .sidearea-block-title {
    padding: var(--padding-md-el);
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer; 
}

.page-catalog .sidearea-block .toggle_block.svg {
    width: 22px;
    height: 22px;
}

.page-catalog .sidearea-block .toggle_block.svg use {
    stroke: var(--color-gray2);
    transition-duration: .1s;
}

@media (max-width: 991px) {
    .page-catalog {
        grid-template-columns: 1fr;
    }
}
/* End */


/* Start:/bitrix/templates/universe_s1/components/bitrix/catalog.section.list/infograd-catalog-page-tabs/style.css?17869517942553*/

.sections-block__tab {
    display: grid;
    list-style: none;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section-block__tab {
    border: 1px solid #f2f2f2;
    margin: 0 -1px -1px 0;
    padding: 10px;
    position: relative;
    z-index: 1;
    webkit-transition-duration: 350ms;
    -moz-transition-duration: 350ms;
    -ms-transition-duration: 350ms;
    -o-transition-duration: 350ms;
    transition-duration: 350ms;
    -webkit-transition-property: box-shadow;
    -moz-transition-property: box-shadow;
    -ms-transition-property: box-shadow;
    -o-transition-property: box-shadow;
    transition-property: box-shadow;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-block__tab:hover {
    z-index: 2;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.section-block__picture-block{
    height: 200px;
    width: 100%;
    padding: 20px 60px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    -webkit-transition: opacity 350ms ease-in-out;
    -moz-transition: opacity 350ms ease-in-out;
    -ms-transition: opacity 350ms ease-in-out;
    -o-transition: opacity 350ms ease-in-out;
    transition: opacity 350ms ease-in-out;

}

.section-block__picture-block:hover{
    opacity: 0.5;
}

.section-block__img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.section-block__name {
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    color: #2d2d2d;
    height: 50px;
    overflow: hidden;
    -webkit-transition-duration: 350ms;
    -moz-transition-duration: 350ms;
    -ms-transition-duration: 350ms;
    -o-transition-duration: 350ms;
    transition-duration: 350ms;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    -ms-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
    text-align: center;
}

@media (max-width: 1199px) {
    .sections-block__tab {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .sections-block__tab {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .sections-block__tab {
        grid-template-columns: 1fr;
    }
}
/* End */


/* Start:/bitrix/templates/universe_s1/components/bitrix/catalog.smart.filter/infograd_vertical/style.css?178712249430079*/
.bx_filter{
	margin-bottom: 0;
}

.bx_filter_toggle{
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #1d1d1d;
	fill: #808080;
	stroke: #808080;
}

.bx_filter_toggle:hover{
	color: var(--color-main);
	fill: var(--color-main);
	stroke: var(--color-main);
}

.bx_filter_toggle .svg{
	fill: inherit;
	stroke: inherit;
}

.bx_filter_toggle-icon{
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.bx_filter_toggle-icon .svg{
	width: 16px;
	height: 16px;
}

.bx_filter_toggle-text{
	flex: 1 1 auto;
}

.bx_filter_toggle-arrow{
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.35s;
}

.bx_filter_toggle-arrow .svg{
	width: 10px;
	height: 10px;
	transition: transform 0.35s;
}

.bx_filter_toggle-arrow .svg use{
	fill: #808080;
	transition: fill 0.35s;
}

.bx_filter[data-expanded="true"] .bx_filter_toggle-arrow .svg{
	transform: rotate(180deg);
}

.bx_filter_toggle-arrow:hover{
	background-color: var(--color-main);
}

.bx_filter_toggle-arrow:hover .svg use{
	fill: #fff;
}

.bx_filter_content{
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s ease-in-out;
}

.bx_filter[data-expanded="true"] .bx_filter_content{
	grid-template-rows: 1fr;
}

.bx_filter_content-inner{
	overflow: hidden;
	min-height: 0;
	padding-top: 35px;
	border-top: 1px solid #e8e8e8;
}

.bx_filter .bx_filter_section{
	position:relative;
	border-radius: 0px;
	background-color: var(--color-white);
}

.bx_filter input[type=checkbox]:checked + span{
    background-color: transparent;
}

.bx_filter .bx_filter_button_box {
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	padding: 0 var(--padding-sm-el) var(--padding-md-el);
	clear: both;
}

.bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(4n+2){clear:both;}
@media (max-width:860px){
	.bx_filter.bx_horizontal .bx_filter_parameters_box{width:33.333%;}
	.bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(4n+2){clear:none;}
	.bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(3n+2){clear:both;}
}
@media (max-width:640px){
	.bx-touch .bx_filter.bx_horizontal .bx_filter_parameters_box{width:50%;}
	.bx-touch .bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(4n+2){clear:none;}
	.bx-touch .bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(3n+2){clear:none;}
	.bx-touch .bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(2n+2){clear:both;}
}
@media (max-width:450px){
	.bx-touch .bx_filter.bx_horizontal .bx_filter_parameters_box{float:none;width:100%;}
	.bx-touch .bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(4n+2){clear:none;}
	.bx-touch .bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(3n+2){clear:none;}
	.bx-touch .bx_filter.bx_horizontal .bx_filter_parameters_box:nth-child(2n+2){clear:none;}
}

.bx_filter .bx_filter_parameters_box_title {
	display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;
	cursor:pointer;
	position: relative;	
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    vertical-align: middle;
    word-break: break-word;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.bx_filter .bx_filter_parameters_box_title .svg {
	width: 10px;
    height: 10px;
    
	transform: rotate(0deg);
    transition: transform .3s;
}

.bx_filter .bx_filter_parameters_box_title .svg use {
	stroke: var(--color-black);
    transition-duration: .1s;
}

.bx_filter_parameters_box.active .bx_filter_parameters_box_title .svg {
	transform: rotate(180deg);
}

/* .bx_filter .bx_filter_parameters_box_title:after{
	position: absolute;
	content: ' ';
	width:7px;
	height: 4px;
	top: 50%;
	right: 0px;
	margin-top: -1px;
	opacity: .8;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAFAgMAAAD09B5LAAAABGdBTUEAALGPC/xhBQAAAAlQTFRF////AAAAAAAAflGpXQAAAAN0Uk5TvwCA2cz+0wAAABdJREFUCNdjWLWCQWsBg1cLQ5AIQ0gIACLDA/lykNHsAAAAAElFTkSuQmCC');
} */
.bx_filter_parameters_box {
	padding: 15px 0;
}

.bx_filter_parameters_box:not(:first-of-type) {
	border-top: 1px solid var(--color-gray3);
}

/* .bx_filter .bx_filter_parameters_box:first-child{
	border-top: 0px;
}
.bx_filter_parameters_box:last-child {
	border-bottom: 1px solid var(--color-gray3);
}  */
 
/* .bx_filter .bx_filter_parameters_box.active .bx_filter_parameters_box_title:after{
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAFAgMAAAD09B5LAAAABGdBTUEAALGPC/xhBQAAAAlQTFRF////AAAAAAAAflGpXQAAAAN0Uk5TvwCA2cz+0wAAABdJREFUCNdjCAthiJrCkLWEYdUKBgYGACBrA/l9XbhoAAAAAElFTkSuQmCC");
} */
.bx_filter .bx_filter_block{
	display:none;
	padding:0;
	max-height: 180px;
	overflow: auto;
}
.bx_filter .bx_filter_button_box .bx_filter_block,
.bx_filter .bx_filter_parameters_box.active .bx_filter_block{
	display:block;
}
.bx_filter .bx_filter_parameters_box.active .bx_filter_block i{
	font-size: 15px;
	font-style: normal;
	color: #596b70;
	display: block;
	padding-bottom: 3px;
}
.bx_filter_parameters_box_container {
	display: flex;
}

.bx_filter_parameters_box_container:first-child {
	display: block;
}


/*bx_filter_param_area => bx_filter_parameters_box_container*/
.bx_filter .bx_filter_parameters_box_container.btn-field-filter{
	display: flex;
	flex-direction: row;
	gap: 15px;
}
.bx_filter_parameters_box_container input {
	width: 100%;
}

.bx_filter_parameters_box.active {
	display: flex;
	flex-direction: column;
}

.bx_filter_parameters_box.active .bx_filter_parameters_box_title {
	margin-bottom: var(--padding-md-el);
	transition: .1s;
}


/*bx_filter_param_area_block => bx_filter_parameters_box_container_block*/
.bx_filter .bx_filter_parameters_box_container_block{
	font-size:11px;
	float:left;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	/* width:45%; */
	width: 50%;
	color:#3f3f3f;
}
.bx_filter .bx_filter_parameters_box_container .bx_filter_parameters_box_container_block:nth-child(1){
	padding-right: 5px;
}
.bx_filter .bx_filter_parameters_box_container .bx_filter_parameters_box_container_block:nth-child(2){
	padding-left: 5px;
	text-align: right;
}
/*bx_input_container => bx_filter_input_container*/
.bx_filter .bx_filter_parameters_box_container .bx_filter_input_container{
	display: flex;
    align-items: center;
    gap: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 35px;
}
.top-slick-field {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.bx_filter .bx_filter_parameters_box_container .bx_filter_input_container .after-input,
.bx_filter .bx_filter_parameters_box_container .bx_filter_input_container .before-input {
	font-size: 16px;
	display: none;
}

.bx_filter .bx_filter_parameters_box_container .bx_filter_input_container input{
	display:block;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	font-size: 16px;
	height:35px;
	margin: 0;
	padding:0 10px;
	background:#fff;
	border: 1px solid #ddd;
}

.bx_filter .bx_filter_parameters_box_container .bx_filter_input_container input::placeholder {
	opacity: .5;
	font-size: 14px;
}

.bx_filter .bx_filter_parameters_box_container .bx_filter_calendar_container{
	max-width:100%;
	position:relative;
}

.bx_filter .bx_filter_parameters_box_container .bx_filter_calendar_container input.calendar{
	padding:0 23px 0 4px;
	font-size:15px;
}

.bx_filter .bx_filter_parameters_box_container .bx_filter_input_container img.calendar-icon{
	display:block;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	position:absolute;
	font-size:18px;
	top:7px;
	right:3px;
}

/*Track*/
.bx_filter .bx_ui_slider_track{
	display: none;
	position:relative;
	height:7px;
	margin:25px 10px;
	border:1px solid #8da3ad;
	background:#a1c0c8;
	background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ExYzBjOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiM2Q1ZGYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#a1c0c8), color-stop(100%,#b3d5df));
	background:-webkit-linear-gradient(top, #a1c0c8 0%,#b3d5df 100%);
	background:   -moz-linear-gradient(top, #a1c0c8 0%,#b3d5df 100%);
	background:    -ms-linear-gradient(top, #a1c0c8 0%,#b3d5df 100%);
	background:     -o-linear-gradient(top, #a1c0c8 0%,#b3d5df 100%);
	background:        linear-gradient(top bottom, #a1c0c8 0%,#b3d5df 100%);
	box-shadow:0 1px 0 0 rgba(255,255,255,.35);

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a1c0c8', endColorstr='#b3d5df',GradientType=0 );
}
.bx_filter .bx_ui_slider_part{
	position:absolute;
	top:-6px;
	width:1px;
	height:17px;
	background:#a2bfc7;
}
.bx_filter .bx_ui_slider_part.p1{left:-1px;}
.bx_filter .bx_ui_slider_part.p2{left:25%;}
.bx_filter .bx_ui_slider_part.p3{left:50%;}
.bx_filter .bx_ui_slider_part.p4{left:75%;}
.bx_filter .bx_ui_slider_part.p5{right:-1px;}
.bx_filter .bx_ui_slider_part span{
	font-size:11px;
	font-weight: bold;
	position:absolute;
	top:-16px;
	left:50%;
	display:block;
	width:100px;
	margin-left:-50px;
	text-align:center;
	color:#000;
}
.bx_filter .bx_ui_slider_part.p2 span,
.bx_filter .bx_ui_slider_part.p3 span,
.bx_filter .bx_ui_slider_part.p4 span{color:#6b8086;}

.bx_filter .bx_ui_slider_range,
.bx_filter .bx_ui_slider_pricebar,
.bx_filter .bx_ui_slider_pricebar_VD,
.bx_filter .bx_ui_slider_pricebar_VN,
.bx_filter .bx_ui_slider_pricebar_V{
	position:absolute;
	top:-1px;
	bottom:-1px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

.bx_filter .bx_ui_slider_range{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index:99;
	height: 7px;
}
.bx_filter .bx_ui_slider_pricebar{
	z-index:100;
}

.bx_filter .bx_ui_slider_pricebar_VD{
	z-index:60;
	border-top:   1px solid #74868e;
	border-bottom:1px solid #74868e;
	background:#849da4;
	background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg0OWRhNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5M2FmYjciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#849da4), color-stop(100%,#93afb7));
	background:-webkit-linear-gradient(top, #849da4 0%,#93afb7 100%);
	background:   -moz-linear-gradient(top, #849da4 0%,#93afb7 100%);
	background:    -ms-linear-gradient(top, #849da4 0%,#93afb7 100%);
	background:     -o-linear-gradient(top, #849da4 0%,#93afb7 100%);
	background:        linear-gradient(top bottom, #849da4 0%,#93afb7 100%);

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#849da4', endColorstr='#93afb7',GradientType=0 );
}
.bx_filter .bx_ui_slider_pricebar_VN{
	z-index:70;
	border:1px solid #1267007d;
	background: var(--color-text-white);
}
.bx_filter .bx_ui_slider_pricebar_V{
	z-index:80;
	top:-1px;
	bottom:-1px;
	background-color: var(--color-main);
}



.bx_filter .bx_ui_slider_handle{
	position:absolute;
	top:100%;
	width:22px;
	height:22px;
}
.bx_filter .bx_ui_slider_handle:hover{
	-webkit-cursor:grab;
	-ms-cursor:grab;
	-o-cursor:grab;
	cursor:grab;
}
.bx_filter .bx_ui_slider_handle:active{
	-webkit-cursor:grabbing;
	-ms-cursor:grabbing;
	-o-cursor:grabbing;
	cursor:grabbing;
} 
.bx_filter .bx_ui_slider_handle.left{
	left:0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 0%;
	width: 10px;
	background-color: var(--color-second);
}
.bx_filter .bx_ui_slider_handle.right{
	right:0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 0%;
	width: 10px;
	background-color: var(--color-second);
}

/*
*	Select
*
*/
.bx_filter .bx_filter_select_container{
	display:inline-block;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	height:35px;
	padding:1px;
	border-radius:3px;
	background:#8ca3ae;
	background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzhjYTNhZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiNmM4ZDIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#8ca3ae), color-stop(100%,#b6c8d2));
	background:-webkit-linear-gradient(top, #8ca3ae 0%,#b6c8d2 100%);
	background:   -moz-linear-gradient(top, #8ca3ae 0%,#b6c8d2 100%);
	background:    -ms-linear-gradient(top, #8ca3ae 0%,#b6c8d2 100%);
	background:     -o-linear-gradient(top, #8ca3ae 0%,#b6c8d2 100%);
	background:        linear-gradient(top bottom, #8ca3ae 0%,#b6c8d2 100%);
	box-shadow:0 1px 0 0 rgba(255,255,255,.75);

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8ca3ae', endColorstr='#b6c8d2',GradientType=0 );
}
.bx_filter .bx_filter_select_block{
	position:relative;
	display:block;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	height:33px;
	margin:0;
	padding:0 33px 0 10px;
	border:none;
	border-radius:2px;
	background:#fff;
	box-shadow:inset 0 3px 6px 0 rgba(215,215,215,.75);
}
.bx_filter .bx_filter_select_text{
	font-size:15px;
	line-height:33px;
	overflow:hidden;
	max-width:100%;
	height:33px;
	cursor:pointer;
	vertical-align:middle;
	white-space:nowrap;
	text-overflow:ellipsis;
	-ms-text-overflow:ellipsis;
}
.bx_filter .bx_filter_select_text.fix{
	min-width:120px;
}
.bx_filter .bx_filter_select_text label{
	cursor:pointer;
}
.bx_filter .bx_filter_select_arrow{
	position:absolute;
	top:0;
	right:0;
	width:34px;
	height:33px;
	cursor:pointer;
	background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAG0lEQVQY02OYOXPmf1yYAQRwSsAATglkBch8ADy7LKHqFrgoAAAAAElFTkSuQmCC') no-repeat center;
}
/*
*	Select popup
*
*/
.bx_filter_select_popup{padding:0;}
.bx_filter_select_popup ul{
	margin:0;
	padding:0;
	list-style:none;
}
.bx_filter_select_popup ul li{
	display:block;
	text-align: left;
	vertical-align:middle;
}
.bx_filter_select_popup ul li:first-child{
	border-bottom: 1px solid #e9eaf3;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.bx_filter_select_popup ul li label{
	font-size:14px;
	line-height:26px;
	display:block;
	text-align: left !important;
	overflow:hidden;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	height:26px;
	padding:0 5px;
	cursor:pointer;
	vertical-align:middle;
	white-space:nowrap;
	text-overflow:ellipsis;
	-ms-text-overflow:ellipsis;
	color:#575757;
}
.bx_filter_select_popup ul li label.selected,
.bx_filter_select_popup ul li label:hover{
	color:#000;
	background:#f3f8fa;
}
.bx_filter_select_popup ul li label.disabled{
	color:#b8b8b8;
	background:transparent;
}
.bx_filter_select_popup ul li .bx_filter_param_text{
	line-height: 26px !important;
}

/*
* TAGS
*
*/
.bx_filter.bx_horizontal .bx_filter_parameters_box.tags{
	width: 100%;
	clear: both
}
.bx_filter .bx_filter_tag{
	padding:18px;
	border:1px solid #aed5e0;
	border-radius:5px;
	background:rgba(151,214,233,.33);
}
.bx_filter .bx_tag_link{
	font-size:12px;
	text-decoration:none;
	color:#68939e;
	border-bottom:1px solid;
	text-shadow:none;
}
.bx_filter .bx_tag_link.active,
.bx_filter .bx_tag_link:hover{
	color:#1d3d46;
	border-bottom:none;
}

/*
*	LABEL
*
*/
.bx_filter_block .bx_filter_parameters_box_container label {
	display: flex;
	width: 100%;
}

.bx_filter_block .bx_filter_parameters_box_container label .bx_filter_input_checkbox {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 7px;
	width: 100%;
}

.bx_filter_block .bx_filter_parameters_box_container label .bx_filter_input_checkbox input {
	width: 15px;
	margin: 0;
	margin-top: 6px;
}

.bx_filter_block .bx_filter_parameters_box_container label .bx_filter_input_checkbox input[type="checkbox"] {
	width: 16px;
	height: 16px;
    flex: none;
	accent-color: var(--color-main3);
}

.bx_filter_block .bx_filter_parameters_box_container label .bx_filter_input_checkbox .bx_filter_param_text {
	font-size: 12px;
	line-height: 1.2;
}

.bx_filter .bx_filter_param_label{
	font-size:13px;
	position:relative;
	display:block;
	text-align:left;
}
.bx_filter .bx_filter_param_label.dib{display: inline-block;}
.bx_filter .bx_filter_param_text{
	line-height:34px;
	position:relative;
	display:inline-block;
	vertical-align:middle;
	text-align:center;
	cursor:pointer;
}
.bx_filter .bx_filter_param_label.disabled .bx_filter_param_text{
	color:#6c6c6c;
	/*text-decoration: line-through;*/
}
.bx_filter_select_popup .bx_filter_param_label.active{
	background: #f3f8fa;
}
/*
*	Checkbox / Radio
*
*/
.bx_filter .bx_filter_input_checkbox{
	position:relative;
	display:block;
	clear:both;
	overflow:hidden;
	min-height:20px;
	padding-top:4px;
	padding-bottom:4px;
}
.bx_filter .bx_filter_input_checkbox input[type=radio],
.bx_filter .bx_filter_input_checkbox input[type=checkbox]{
	position: relative;
	top: -3px;
	float:left;
}
.bx_filter .bx_filter_input_checkbox .bx_filter_param_text{
	display: block;
	line-height: 15px;
	text-align: left;
}

/*
* 	BTN
*
*/
.bx_filter .bx_filter_param_btn{
	display:inline-block;
	width:34px;
	height:34px;
	text-align:center;
	text-decoration:none;
	color:#000;
	vertical-align: middle;
	border:1px solid #9dbcc3;
	border-radius:3px;
	background:#fbfdfd;
	background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZiZmRmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZmUxZTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbfdfd), color-stop(100%,#cfe1e7));
	background:-webkit-linear-gradient(top, #fbfdfd 0%,#cfe1e7 100%);
	background:   -moz-linear-gradient(top, #fbfdfd 0%,#cfe1e7 100%);
	background:    -ms-linear-gradient(top, #fbfdfd 0%,#cfe1e7 100%);
	background:     -o-linear-gradient(top, #fbfdfd 0%,#cfe1e7 100%);
	background:        linear-gradient(top bottom, #fbfdfd 0%,#cfe1e7 100%);
	background-clip:padding-box;
	box-shadow: 0 1px 0 rgba(0,0,0,.1), inset 0 0 0 1px rgba(255,255,255,.22);
	text-shadow:0 1px 0 #fff;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbfdfd', endColorstr='#cfe1e7',GradientType=0 );
	-webkit-transition:border .3s ease, box-shadow .1s ease, color .3s ease;
	-moz-transition:border .3s ease, box-shadow .1s ease, color .3s ease;
	-ms-transition:border .3s ease, box-shadow .1s ease, color .3s ease;
	-o-transition:border .3s ease, box-shadow .1s ease, color .3s ease;
	transition:border .3s ease, box-shadow .1s ease, color .3s ease;
	cursor: pointer;
}
.bx_filter .bx_filter_param_btn:hover{border-color:#b4d5de}
.bx_filter .bx_filter_param_btn:active,
.bx_filter .bx_filter_param_label.active .bx_filter_param_btn{
	border-color:#b4d5de;
	background:#fcfefe;
	background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZmUyZTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#feffff), color-stop(100%,#cfe2e7));
	background:-webkit-linear-gradient(top, #fcfefe 0%,#feffff 100%);
	background:   -moz-linear-gradient(top, #fcfefe 0%,#feffff 100%);
	background:    -ms-linear-gradient(top, #fcfefe 0%,#feffff 100%);
	background:     -o-linear-gradient(top, #fcfefe 0%,#feffff 100%);
	background:        linear-gradient(top bottom, #fcfefe 0%,#cfe2e7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfefe', endColorstr='#feffff',GradientType=0 );
	box-shadow:0 0 0 3px #2995d7,inset 0 2px 3px rgba(0,0,0,.12);
}
/* --- colors */
.bx_filter .bx_filter_param_btn.bx_color_sl{
	/*width:24px;*/
	/*padding:0 1px;*/
}
.bx_filter .bx_filter_param_label.disabled .bx_filter_param_btn.bx_color_sl{
	background: transparent;
	box-shadow: none
}
.bx_filter .bx_filter_param_label.disabled .bx_filter_param_btn.bx_color_sl{position: relative;}
.bx_filter .bx_filter_param_label.disabled .bx_filter_param_btn.bx_color_sl:before{
	position: absolute;
	bottom:0;
	right: 0;
	top: 0;
	left: 0;
	content: ' ';
	/*width: 19px;*/
	/*height:19px;*/
	display: block;
	z-index:100;
	background: url(/bitrix/templates/universe_s1/components/bitrix/catalog.smart.filter/infograd_vertical/images/missing_v2.png) no-repeat center;
	opacity: .7;
}

/*
* BTN P/M
*
*/
.bx_filter .bx_filter_param_btn.bx_spm{
	width:23px;
	min-width:23px;
	height:23px;
	padding:0;
	vertical-align: middle;
}
.bx_filter .bx_filter_param_btn.bx_spm.bx_minus{
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAECAIAAADXmFKkAAAAIUlEQVQYV2NgKFmCD5UuYUDno5ElUBWLoUJwUWT0nxAAABiMRP18QPJ4AAAAAElFTkSuQmCC), -webkit-linear-gradient(#fbfdfd 0%, #cfe1e7 100%);
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAECAIAAADXmFKkAAAAIUlEQVQYV2NgKFmCD5UuYUDno5ElUBWLoUJwUWT0nxAAABiMRP18QPJ4AAAAAElFTkSuQmCC),	  -o-linear-gradient(#fbfdfd 0%, #cfe1e7 100%);
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAECAIAAADXmFKkAAAAIUlEQVQYV2NgKFmCD5UuYUDno5ElUBWLoUJwUWT0nxAAABiMRP18QPJ4AAAAAElFTkSuQmCC),		 linear-gradient(#fbfdfd 0%, #cfe1e7 100%);
	background-repeat:no-repeat,repeat;
	background-position:center 10px,center;
}
.bx_filter .bx_filter_param_btn.bx_spm.bx_plus{
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAATElEQVQoz2NgQAclS/7DMUEAVriYWMVQhSCaKJNLcTmjFMmNyBibOFgQLrEYu0a4YrCCxbhNQxb7jwaQFWLIUR7OpUtIDWciFONzIwAP8KL1rVnYDQAAAABJRU5ErkJggg==), -webkit-linear-gradient(#fbfdfd 0%, #cfe1e7 100%);
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAATElEQVQoz2NgQAclS/7DMUEAVriYWMVQhSCaKJNLcTmjFMmNyBibOFgQLrEYu0a4YrCCxbhNQxb7jwaQFWLIUR7OpUtIDWciFONzIwAP8KL1rVnYDQAAAABJRU5ErkJggg==),	  -o-linear-gradient(#fbfdfd 0%, #cfe1e7 100%);
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAATElEQVQoz2NgQAclS/7DMUEAVriYWMVQhSCaKJNLcTmjFMmNyBibOFgQLrEYu0a4YrCCxbhNQxb7jwaQFWLIUR7OpUtIDWciFONzIwAP8KL1rVnYDQAAAABJRU5ErkJggg==),		 linear-gradient(#fbfdfd 0%, #cfe1e7 100%);
	background-repeat:no-repeat,repeat;
	background-position:center 6px,center;
}
.bx_filter .bx_filter_param_btn.bx_spm:active{
	outline:none !important;
	box-shadow:inset 0 2px 3px rgba(0,0,0,.12);
}
.bx_filter span.bx_spm{
	font-size:18px;
	font-weight:bold;
	line-height:23px;
	display:inline-block;
	height:23px;
	margin:0 10px;
	vertical-align:middle;
	color:#000;
}

/*
*	icon
*
*/
.bx_filter_select_popup .bx_filter_select_text_icon,
.bx_filter .bx_filter_select_text_icon{
	line-height:33px;
	position:relative;
	display:inline-block;
	width:24px;
	height:24px;
	margin-top:-2px;
	margin-right:2px;
	vertical-align:middle;
	border-radius:2px;
}
.bx_filter_select_popup .bx_filter_btn_color_icon,
.bx_filter .bx_filter_btn_color_icon{
	line-height:24px;
	position:relative;
	top:5px;
	border-radius: 2px;
	display:inline-block;
	width:24px;
	height:24px;
	vertical-align:middle;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
	-webkit-background-size:cover;
	background-size:cover;
}
.bx_filter_select_popup .bx_filter_btn_color_icon{
	width:20px;
	height:20px;
	margin:2px 0;
	top: 0 !important;
}
.bx_filter .bx_filter_select_block .bx_filter_btn_color_icon{
	top:-1px !important;
}
.bx_filter_btn_color_icon.all {
	position: relative;
	border: none;
	box-shadow: none
}

.bx_filter_btn_color_icon.all:after,
.bx_filter_btn_color_icon.all:before{
	position: absolute;
	width: 60%;
	height:60%;
	background: #fff;
	content: " ";
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
}
.bx_filter_btn_color_icon.all:after{
	right: 0;
	bottom: 0;
}
.bx_filter_btn_color_icon.all:before{
	top:0;
	left: 0;
}
.bx_filter .bx_filter_param_label.disabled .bx_filter_btn_color_icon{
	opacity: .2;
}

/*
* 	BIZ
*
*/
.bx_filter .bx_filter_parameter_biz{
	font-size:15px;
	display:inline-block;
	margin-right:10px;
	text-decoration:none;
	color:#215968;
	border-bottom:1px dashed;
}
.bx_filter .bx_filter_parameter_biz:hover{
	text-decoration:none;
	border-bottom:1px solid;
}
.bx_filter .bx_filter_parameter_biz.active{
	position:relative;
	padding-left:20px;
	color:#d54a4a;
	border-bottom:1px solid;
}
.bx_filter .bx_filter_parameter_biz.active:hover{
	border-bottom:1px dashed;
}
.bx_filter .bx_filter_parameter_biz.active:before{
	position:absolute;
	top:4px;
	left:1px;
	display:block;
	width:13px;
	height:13px;
	content:' ';
	background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAYAAAC5tzfZAAABFElEQVQoz2NgIBJcl+Qzui7J33Vdgo+RWA38NxQknwDp/zekhRoIarghyc94Q15iC5D+f1NJ5v/n7dumE7ZFWqgYbANQ08c1a37+///fAL8GCT7L6zLCf0CaXjbUAdX/j0aWdAJKTACaxookJnJTUeoFyIaHIYH////8ORHZzdw35MTegyRvSAkeAdISYH8oSu4Fid0x0f//5/nzo0BbWOCagBzur0ePvrujp/kf5Aygc54DbZkDYt9UkPj/7czpl0A1ohhuBwra/Lp//809Zwewh8GagfSHpUt+A+VMcXoaKKn45+PHK0/iY8EaX1SUgzyeRDB4gYp4//3+veX9/Hn//379OpPY1ALSyAzEOUDMhksNAKf2po+AEPuKAAAAAElFTkSuQmCC') no-repeat center left;
}

/*
*	BTN result and reset
*
*/
.bx_filter .bx_filter_search_button,
.bx_filter .bx_filter_search_reset {
	min-width: 0;
    font-size: 12px;
    line-height: 10px;
}

.bx_filter .bx_filter_search_reset{
    background-color: transparent;
    color: var(--color-main);
    border-color: var(--color-main);
    border: 1px solid var(--color-main);
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 14px 25px;
    width: 100%;
}

.bx_filter .bx_filter_search_reset:hover{
    background-color: var(--color-main);
    color: #fff;
}


/*
* 	Result Popup
*
*/
.bx_filter .bx_filter_popup_result{
	font-size:13px;
	font-weight:normal;
	line-height:33px;
	position:absolute;
	z-index:930;
	display:none;
	height:33px;
	margin-top:-7px;
	margin-left:10px;
	padding:0 10px;
	white-space:nowrap;
	color:#3f3f3f;
	border-top:1px solid #c0d6dc;
	border-right:1px solid #c0d7dd;
	border-bottom:1px solid #c0d6dc;
	border-left:1px solid #c0d7dd;
	border-radius:3px;
	background:#fff;
	box-shadow:0 2px 5px 0 rgba(0,0,0,.1);
}
.bx_filter .bx_filter_popup_result .arrow{
	position:absolute;
	top:50%;
	width:8px;
	height:14px;
	margin-top:-7px;
	background:url(/bitrix/templates/universe_s1/components/bitrix/catalog.smart.filter/infograd_vertical/images/arr_left.png) no-repeat center;
}
.bx_filter.bx_horizontal .bx_filter_popup_result{
	position: static !important;
	display: inline-block
}
.bx_filter.bx_horizontal .bx_filter_popup_result .arrow{
	display: none;
}
.bx_filter .bx_filter_popup_result.right{left:102%;}
.bx_filter .bx_filter_popup_result.left{right:102%;}
.bx_filter .bx_filter_popup_result.right .arrow{left: -8px;background:url(/bitrix/templates/universe_s1/components/bitrix/catalog.smart.filter/infograd_vertical/images/arr_left.png)  no-repeat center;}
.bx_filter .bx_filter_popup_result.left  .arrow{right:-8px;background:url(/bitrix/templates/universe_s1/components/bitrix/catalog.smart.filter/infograd_vertical/images/arr_right.png) no-repeat center;}
.bx_filter .bx_filter_popup_result a{color:#0073a3;}
.bx_filter .bx_filter_popup_result a:hover{text-decoration:none;}
.bx_filter .bx_filter_popup_result_close{display:none;}

@media (max-width:530px){
	.bx-touch .bx_filter .bx_filter_popup_result{
		font-size:12px;
		line-height:14px;
		position:fixed !important;
		z-index:1001;
		top:auto !important;
		right:0 !important;
		bottom:0 !important;
		left:0 !important;
		margin-top: 0;
		margin-left:0;
		width:auto;
		height:auto;
		padding:10px;
		border-radius:0;
		box-shadow:0 -2px 5px 0 rgba(0,0,0,.1);
	}
	.bx_filter .bx_filter_popup_result .arrow{
		display: none;
	}
	.bx-touch .bx_filter .bx_filter_popup_result_close{
		position:absolute;
		top:50%;
		right:10px;
		display:block;
		width:22px;
		height:22px;
		margin-top:-11px;
		background:url(/bitrix/templates/universe_s1/components/bitrix/catalog.smart.filter/infograd_vertical/images/x.png) no-repeat center;
		background-size:16px;
	}
}
/* End */


/* Start:/bitrix/templates/universe_s1/components/bitrix/system.pagenavigation/ajax_more_pagenav/style.css?17871333364188*/
.ajax_pagination .btn.btn_more {
    margin: 30px 0 0 0;
    background-color: transparent;
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 18px 0;
    vertical-align: top;
    border: 1px solid #F2F2F2;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition-duration: 350ms;
    -moz-transition-duration: 350ms;
    -ms-transition-duration: 350ms;
    -o-transition-duration: 350ms;
    transition-duration: 350ms;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -ms-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-main);
}

.ajax_pagination .btn.btn_more:hover {
    border: 1px solid #FBFCFD;
    background-color: #FBFCFD;
}

.ajax_pagination .btn.btn_more .svg use{
    stroke: var(--color-main);
}
.ajax_pagination .btn.btn_more .svg{
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition-duration: 350ms;
    -moz-transition-duration: 350ms;
    -ms-transition-duration: 350ms;
    -o-transition-duration: 350ms;
    transition-duration: 350ms;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -ms-transition-property: transform;
    -o-transition-property: transform;
    transition-property: transform;
}

.ajax_pagination .btn.btn_more:hover .svg{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:10px;
    list-style-type: none;
    margin: 30px 0 0 0;
	padding: 0;
}

.pagination li {
	display: flex;
    padding: 0;
    margin: 0;
}

.pagination li:before {
    content: none;
}

.pagination li a,
.pagination li span {
    display: block;
    background-color: transparent;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    line-height: 1.42857143;
    text-align: center;
    padding: 6px;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    color: #2d2d2d;
    -webkit-transition-duration: 350ms;
    -moz-transition-duration: 350ms;
    -ms-transition-duration: 350ms;
    -o-transition-duration: 350ms;
    transition-duration: 350ms;
    -webkit-transition-property: color, background-color, border-color;
    -moz-transition-property: color, background-color, border-color;
    -ms-transition-property: color, background-color, border-color;
    -o-transition-property: color, background-color, border-color;
    transition-property: color, background-color, border-color;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.pagination li:hover a {
	background-color: var(--color-main);
	border-color:var(--color-main);
	color: var(--color-white);
}

.pagination>.active>a, 
.pagination>.active>span, 
.pagination>.active>a:hover, 
.pagination>.active>span:hover, 
.pagination>.active>a:focus, 
.pagination>.active>span:focus {
	background-color: var(--color-main);
	border-color:var(--color-main);
    color:#fff;
}

.wrap_pagination {
	text-align: center;
}

.pagination>.next>a,
.pagination>.prev>a {
    display: none;
    border: none !important;
    background: none !important;
    padding: 15px !important;
    pointer-events: none;
}

@media (max-width: 575.98px) {
	.ajax_pagination .btn.btn_more {
		margin-top: var(--margin-el);   
		min-height: 43px; 
		border-radius: var(--border-radius);
	}
	.pagination {
		margin-top: 20px;
	}
}
/* End */


/* Start:/bitrix/templates/universe_s1/components/bitrix/catalog.section/infograd.catalog.list.2/style.css?17871224949456*/
.infograd-catalog-list__items{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infograd-catalog-list__item{
    padding: 30px;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: box-shadow;
    -moz-transition-property: box-shadow;
    -ms-transition-property: box-shadow;
    -o-transition-property: box-shadow;
    transition-property: box-shadow;
}

.infograd-catalog-list__item:hover {
    -webkit-box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.15);
}
.infograd-catalog-list__item-content{
    flex: 1 1 auto;
}

.infograd-catalog-list__item-picture{
    width: 100px;
    height: 100px;
    position: relative;
}


.infograd-catalog-list__item-picture img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-catalog-element__slider-preview.svg{
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    line-height: 1;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #ccc;
    color: #848790;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 250ms ease-in-out;
    -moz-transition: opacity 250ms ease-in-out;
    -ms-transition: opacity 250ms ease-in-out;
    -o-transition: opacity 250ms ease-in-out;
    transition: opacity 250ms ease-in-out;
}

.page-catalog-element__slider-preview svg{
    display: block;
    width: 100%;
    height: 100%;
}

.infograd-catalog-list__item-picture:hover .page-catalog-element__slider-preview{
    opacity: 0.9;
}


.infograd-catalog-list__item-name{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: #1B1E25;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition-duration: 350ms;
    -moz-transition-duration: 350ms;
    -ms-transition-duration: 350ms;
    -o-transition-duration: 350ms;
    transition-duration: 350ms;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    -ms-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
}

.infograd-catalog-list__item-description {
    margin: 16px 0 20px 0;
    max-height: 105px;
    max-width: 800px;
    font-size: 14px;
    line-height: 1.5;
    color: #404040;
    overflow: hidden;
}


.infograd-catalog-list__item-status-item{
    font-style: normal;
    font-weight: normal;
    line-height: 1.5;
    color: #777;
    text-align: left;
    white-space: nowrap;
    font-size: 14px;
}

.infograd-catalog-list__item-status-item .svg{
    width: 14px;
    height: 14px;
}

.infograd-catalog-list__item-article-availible-analogs .svg use,
.infograd-catalog-list__item-status-item .svg use{
    fill:#fa9696;
}

.infograd-catalog-list__item-status-item.availible{
    border-color: #5abb34;
}

.infograd-catalog-list__item-status-item.availible .svg use{
    fill:#5abb34
}

.block-basket{
    justify-content: flex-end;
}

.block-basket__measure span{
    color: var(--color-main);
}

.block-basket__price{
    align-items: center;
}

.block-basket__price-value{
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #1B1E25;
}

.block-basket__counter{
    display: flex;
}

.block-basket__counter .minus,
.block-basket__counter .plus{
    padding: 15px 23px;
    border-radius: 6px;
    background: #f7f7f7;
    cursor: pointer;
}

.block-basket__counter-field{
    position: relative;
}

.block-basket__counter input{
    display: block;
    position: relative;
    background-color: transparent;
    border: none;
    outline: 0;
    padding: 15px 3px;
    color: #3f3f3f;
    width: 60px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.block-basket__button-basket-added .svg use,
.block-basket__button-basket .svg use{
    fill:#fff;
}


.block-basket{
    align-items: center;
    align-items: flex-start;
}

.block-basket__button-basket,
.block-basket__button-basket-added{
    justify-content: flex-start;
    white-space: nowrap;
}

.block-basket__buttons{
    align-items: center;
}


.block-basket__buttons .block-basket__button-compare,
.block-basket__buttons .block-basket__button-compare-added,
.block-basket__buttons .block-basket__button-favorite{
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    color: #808080;
    fill: #808080;
    background: transparent !important;
    padding: 15px;
    width: 20px;
    height: 20px;
    text-align: center;
    border: 1px solid #E8E8E8;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition-duration: 350ms;
    -moz-transition-duration: 350ms;
    -ms-transition-duration: 350ms;
    -o-transition-duration: 350ms;
    transition-duration: 350ms;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    -ms-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.block-basket__button-favorite.active .svg use,
.block-basket__buttons .block-basket__button-compare:hover .svg use,
.block-basket__buttons .block-basket__button-favorite:hover .svg use{
    fill: var(--color-main);
}

.block-basket__button-compare-added:not([data-compare-state=added]),
.block-basket__button-compare[data-compare-state=added],
.block-basket__button-basket.animate-process .btn-text,
.block-basket__button-subscribe,
.block-basket__button-order{
    display:none;
}
.block-basket__button-basket-added:hover{
    text-decoration: none;
}

.block-basket__button-basket.animate-process .intec-ui-part-effect{
    display: block;
}

.block-basket__button-basket.animate-process .intec-ui-part-effect.intec-ui-part-effect-bounce .intec-ui-part-effect-wrapper>i {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.block-basket__button-basket.animate-process .intec-ui-part-effect.intec-ui-part-effect-bounce .intec-ui-part-effect-wrapper>i:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    animation: intec-ui-basket-button-effect-bounce 1.2s infinite ease-in-out both
}

.block-basket__button-basket.animate-process .intec-ui-part-effect.intec-ui-part-effect-bounce .intec-ui-part-effect-wrapper>i:first-child+i:before {
    animation-delay: -.16s;
}

.block-basket__button-basket.animate-process .intec-ui-part-effect.intec-ui-part-effect-bounce .intec-ui-part-effect-wrapper>i:first-child:before {
    margin-left: 0;
    animation-delay: -.32s;
}


@keyframes intec-ui-basket-button-effect-bounce {
    0%,100%,80% {
        transform: scale(0)
    }

    40% {
        transform: scale(1)
    }
}

.block-basket__button-basket-added[data-basket-state=added]{
    display:flex;
}

.block-basket__btn-more.analogs-availible.colored{
    background-color: #5abb34;
    border-color: #5abb34;
}

.page-catalog-element__info-analogs-button:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}


.block-basket__button-compare-added .svg use,
.block-basket__button-favorite-added .svg use{
    fill:var(--color-main)
}



.block-basket.noavailible .block-basket__button-basket,
.block-basket.noprice .block-basket__price,
.block-basket.noprice .block-basket__counter,
.block-basket.noprice .block-basket__measure,
.block-basket.noprice .block-basket__button-subscripte{
    display: none;
}

.block-basket.noprice .block-basket__button-order{
    display: block;
}


.block-basket__btn-more.analogs-availible{
    background-color: #5abb34;
    border-color: #5abb34;
}

.infograd-popup.popup-type-fastview{
    max-width: 1200px;
    padding: 25px 0 20px;
    margin-bottom: 50px;
}
.infograd-popup.popup-type-fastview .infograd-popup-close{
    cursor: pointer;
    outline: none;
    opacity: .5;
    position: absolute;
    top: 26px;
    right: 10px;
    width: 24px;
    height: 24px;
}

@media (max-width: 767.98px) {
    .infograd-catalog-list__item{
        padding: 20px;
    }

    .infograd-catalog-list__item,
    .infograd-catalog-list__item-header,
    .infograd-catalog-list__item-property{
        flex-direction: column;
        align-items: flex-start;
    }
    .infograd-catalog-list__item-props-price{
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0 10px;
    }
}
/* End */


/* Start:/bitrix/templates/universe_s1/components/bitrix/catalog.product.subscribe/.default/style.css?17518678081068*/
.popup-window.popup-window-subscribe .popup-window-titlebar-text {
  padding: 0;
  font-size: 18px;
  line-height: 150%;
  color: #1B1E25;
}
.popup-window.popup-window-subscribe .popup-window-content {
  margin-bottom: 26px;
}
.popup-window.popup-window-subscribe .bx-catalog-popup-message {
  margin: 0;
  font-size: 14px;
  color: #404040;
}
.popup-window.popup-window-subscribe form > p {
  margin-top: -10px;
  margin-bottom: 10px;
}
.popup-window.popup-window-subscribe form .bx-catalog-subscribe-form-container-label {
  margin-bottom: 4px;
  line-height: 1.5;
  color: #606060;
}
.popup-window.popup-window-subscribe .bx-catalog-popup-message {
  margin: 0;
  font-size: 14px;
  color: #404040;
}
.popup-window.popup-window-subscribe .popup-window-buttons {
  padding: 0;
}
.popup-window.popup-window-subscribe .intec-ui.intec-ui-control-button {
  padding: 8px 22px;
}
.popup-window.popup-window-subscribe .intec-ui.intec-ui-control-button:not(:first-child) {
  margin-left: 8px;
}

/*# sourceMappingURL=style.css.map */

/* End */
/* /bitrix/templates/universe_s1/components/bitrix/catalog/catalog.1/style.css?1787122494825 */
/* /bitrix/templates/universe_s1/components/bitrix/catalog.section.list/infograd-catalog-page-tabs/style.css?17869517942553 */
/* /bitrix/templates/universe_s1/components/bitrix/catalog.smart.filter/infograd_vertical/style.css?178712249430079 */
/* /bitrix/templates/universe_s1/components/bitrix/system.pagenavigation/ajax_more_pagenav/style.css?17871333364188 */
/* /bitrix/templates/universe_s1/components/bitrix/catalog.section/infograd.catalog.list.2/style.css?17871224949456 */
/* /bitrix/templates/universe_s1/components/bitrix/catalog.product.subscribe/.default/style.css?17518678081068 */
