

/* Start:/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/style.css?175644762211847*/
.bx-filter {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 0;
	margin-bottom: 0;

	& .filter-title {
		font-size: 20px;
	}
}

.bx-filter *,
.mobile-filter * {
	font-family: 'Aeroport', sans-serif;
}

.bx-filter-parameters-box {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	border-bottom: solid 2px #DEDEDE;
	padding-bottom: 26px;
	margin-bottom: 0;

	@media screen and (max-width: 1024px) {
		display: none;

		&.bx-filter-parameters-box-price {
			display: flex;
		}
	}

	& .bx-filter-container-modef {
		position: absolute;
	}

	& .filter-title {
		font-size: 20px;
	}

	& .accordion-item__body {
		position: relative;
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

}

.bx-filter-parameters-box-mobile {
	position: relative;
	width: 100%;
	display: none;
	flex-direction: column;
	gap: 16px;
	position: relative;
	border-bottom: solid 1px #DEDEDE;
	padding-bottom: 36px;
	margin-bottom: 0;

	@media screen and (max-width: 1024px) {
		display: flex;
	}

	& .bx-filter-container-modef {
		position: absolute;
	}

	& .filter-title {
		font-size: 20px;
	}

	& .accordion-item__body {
		position: relative;
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
}

.accordion-body {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: all 0.3s ease;
}

.open .accordion-body {
	gap: 20px;
}


.accordion-open,
.popup-full-open {
	position: absolute;
	height: 24px;
	display: flex;
	cursor: pointer;
	justify-content: space-between;
	align-items: center;
	line-height: 1;
	gap: 2px;
	top: 6px;
	right: 0;
	font-size: 14px;
	color: #171717;
}

.accordion-open-icon,
.popup-full-open-icon {
	transition: transform 0.3s ease;
	height: 24px;
	width: 24px;
}

.popup-full-open-icon {
	transform: rotate(-90deg);
}

.is-open .accordion-open-icon {
	transform: scaleY(-1);
}

.bx-filter-parameters-box--top {
	padding-top: 16px;
}

.bx-filter-parameters-box--top._top {
	padding-top: 0;
}

.bx-filter-parameters-box-title {
	font-size: 20px;
}

.bx-filter-parameters-box-title._top span {
	padding-top: 0;
}

.bx-filter-parameters-box-title._top span svg {
	top: 7px;
}

.bx-filter-search-wrap {
	height: 0px;
	overflow: hidden;
	transition: height 0.3s ease;
}

.open .bx-filter-search-wrap {
	height: 40px;
}

.bx-filter-search {
	position: relative;
}

.bx-filter-search input {
	display: flex;
	justify-content: normal;
	align-items: center;
	width: 100%;
	padding: 0 16px;
	font-size: 14px;
	color: #171717;
	height: 40px;
	margin: 0;
	border: none;
	background: #F2F1F0;
	outline: none;
	transition: all .1s ease-out;
	border-radius: var(--border-radius-image);
}

.bx-filter-search .icon {
	position: absolute;
	top: 13px;
	left: 0;
	opacity: .4;
}

.checkBox-input {
	display: flex;
	justify-content: normal;
	position: relative;
	gap: 12px;
	cursor: pointer;

	&:hover {
		color: var(--color-accent);
	}

	&.disabled {
		display: flex;
		justify-content: normal;
		position: relative;
		align-items: center;
		gap: 12px;
		cursor: pointer;
		cursor: default;
		opacity: 0.3;

		&:hover {
			color: var(--color-primary);
		}
	}

	& input {
		position: absolute;
		opacity: 0;
		width: 0;
		height: 0;
	}
}

.checkBox-input__check {
	width: 20px;
	height: 20px;
	min-width: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #C1BBB7;
	border-radius: 4px;
	margin-top: 2px;
}

.disabled .checkBox-input__check {
	background-color: #F2F1F0;
}

.checkBox-input__check svg {
	width: 16px;
	height: 16px;
	fill: transparent;
}

.checkBox-input input:checked+.checkBox-input__check svg {
	fill: #171717;
}

.disabled input:checked+.checkBox-input__check svg {
	fill: transparent;
}

.bx-filter-brand {
	max-height: 100px;
	height: auto;
	overflow-y: hidden;
	transition: all 1s ease;
	display: flex;
	flex-direction: column;
	gap: 16px;
	scrollbar-color: #171717 #F2F1F0;
	scrollbar-width: thin;

	&::-webkit-scrollbar {
		width: 3px;
		background: #F2F1F0;
		border-radius: 3px;
	}

	&::-webkit-scrollbar-button {
		display: none;
		opacity: 0;
		width: 0;
		height: 0;
	}

	&::-webkit-scrollbar-thumb {
		background-color: #171717;
	}

	&::-webkit-scrollbar-track {
		border-width: 0;
		background: #F2F1F0;
	}

}

.open .bx-filter-brand {
	height: auto;
	max-height: 260px;
	overflow-y: auto;
}

.bx-filter-brand label {
	flex-direction: row;
	margin-bottom: 0;
	gap: 12px;

	&:nth-child(-n+3) {
		display: flex;
	}

	&:nth-child(n+4) {
		display: none;
	}
}

.open .bx-filter-brand label:nth-child(n+4) {
	display: flex;
}

.bx-filter-parameters-box.bx-active .bx-filter-block,
.bx-filter-parameters-box-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bx-filter-parameters-box-container-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.bx-filter-input-container {
	width: calc(100% - 10px);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;

	& span {
		position: absolute;
		display: block;
		font-size: 14px;
		left: 16px;
	}

	& input {
		display: flex;
		justify-content: normal;
		align-items: center;
		width: 100%;
		padding: 0 16px 0 40px;
		font-size: 14px;
		color: #171717;
		height: 40px;
		margin: 0;
		border: none;
		background: #F2F1F0;
		outline: none;
		transition: all .1s ease-out;
		border-radius: 12px;
	}
}



.bx-ui-slider-track-container {
	padding: 5px .5px;
	clear: both;
}

.bx-ui-slider-track {
	position: relative;
	height: 2px;
}

.bx-ui-slider-range,
.bx-ui-slider-pricebar,
.bx-ui-slider-pricebar-vd,
.bx-ui-slider-pricebar-vn,
.bx-ui-slider-pricebar-v {
	position: absolute;
	top: 0;
	bottom: 0;
}

.bx-ui-slider-range {
	z-index: 10;
}

.bx-ui-slider-pricebar {
	z-index: 100;
}

.bx-ui-slider-pricebar-vd {
	z-index: 5;
}

.bx-ui-slider-pricebar-vn {
	z-index: 6;
}

.bx-ui-slider-pricebar-v {
	z-index: 7;
}

.bx-ui-slider-handle {
	position: absolute;
	top: 0;
	margin-top: -4px;
	width: 10px;
	height: 10px;
	background: var(--color-primary);
	border: 0;
	border-radius: 100%;
}

.bx-ui-slider-handle:hover {
	-webkit-cursor: grab;
	-ms-cursor: grab;
	-o-cursor: grab;
	cursor: grab;
}

.bx-ui-slider-handle:active {
	-webkit-cursor: grabbing;
	-ms-cursor: grabbing;
	-o-cursor: grabbing;
	cursor: grabbing;
}

.bx-ui-slider-handle.left {
	left: 0;
	margin-left: -.5px;
}

.bx-ui-slider-handle.right {
	right: 0;
	margin-right: -.5px;
}


.popup.mobile-filters_popup .popup__wrapper-scroll-container,
.popup.popup-full-checkbox .popup__wrapper-scroll-container {
	padding-bottom: 40px;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.accordion>.bx-filter-parameters-box:last-child {
	border-bottom: none;
}

.popup.mobile-filters_popup,
.popup.popup-full-checkbox {
	overflow: hidden;
	top: 105px;
	padding: 0 0 0 0;
	background: transparent;
}

.popup.popup-full-checkbox {
	top: 105px;
	height: calc(100% - 66px - 105px);
	background-color: #FFF;
}

.popup__title {
	display: none;

	@media screen and (max-width: 1024px) {
		display: block;
		font-size: 20px;
		margin-bottom: 34px;
		text-align: center;
	}
}

.popup.mobile-filters_popup .popup__wrapper,
.popup.popup-full-checkbox .popup__wrapper {
	/* padding: 12px 0 20px 20px; */
	padding: 12px 0 20px 0;
	height: calc(100vh - 105px);
	width: 100%;
	max-width: 100%;
}

.popup.popup-full-checkbox .popup__wrapper {
	height: calc(100vh - 105px - 87px);
}

.mobile-filter .form_tag {
	height: max-content;
}

.popup.mobile-filters_popup .mobile-filters_popup__close,
.popup.popup-full-checkbox .full-checkbox_popup__close {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 2;
	display: none;
	cursor: pointer;

	& svg {
		width: 20px;
		height: 20px;
		fill: #171717;
	}

	&:hover svg {
		fill: var(--color-accent);
	}
}

.smartfilter {
	flex-grow: 1;
}

.ai-filter__buttons {
	padding: 0 0 0 2rem;
	border-top: solid 20px #FFF;
	border-bottom: solid 20px #FFF;
	margin-left: -2rem;
	margin-top: -20px;
	position: relative;
	z-index: 1;
	background-color: #FFF;

	@media screen and (max-width: 1024px) {
		padding: 12px 20px 12px 20px;
		width: calc(100% + 20px);
		margin-left: -20px;
		margin-top: -2px;
		border-top: solid 1px #ededed;
		border-bottom: none;
		background-color: #FFF;
		position: sticky;
		bottom: 0;
		z-index: 10000;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 12px;

		&>* {
			width: calc(50% - 6px);
		}
	}
}

.mobile-filters_popup__button-show {
	display: none !important;
}


.menu-alphab {
	position: fixed;
	top: 180px;
	right: 22px;
	width: 50px;
	align-items: flex-end;
	justify-content: center;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-height: calc(100dvh - 250px);
	gap: 10px;
}

.menu-alphab__item {
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 12px;
	color: #717171;
	display: block;
	text-align: center;
	width: 11px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-alphab__item.active {
	font-size: 16px;
	color: #171717;
}

.menu-alphab__item:hover {
	color: #171717;
}

@media screen and (max-width: 1024px) {
	.popup.mobile-filters_popup .popup__wrapper .mobile-filter {
		height: 100%;
	}

	.popup.mobile-filters_popup .mobile-filters_popup__close,
	.popup.popup-full-checkbox .full-checkbox_popup__close {
		display: block;
	}

	.mobile-filters_popup__button-show {
		display: flex !important;
		cursor: pointer;
		gap: 20px !important;
	}

	.mobile-filters_popup__button-show-count {
		display: flex;
		width: 5px;
		overflow: visible;
		justify-content: center;
	}

	.mobile-filter .form_tag {
		height: 100%;
	}

	.popup.mobile-filters_popup .popup__wrapper-scroll-container {
		overflow: auto;
		height: calc(100dvh - 80px - 105px);
		scrollbar-width: thin;
		scrollbar-color: #171717 #eee;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		padding-bottom: 0;
		padding-left: 20px;

		&::-webkit-scrollbar {
			width: 4px;
			height: 4px;
			background: #eee;
		}

		&::-webkit-scrollbar-thumb {
			border-radius: 10px;
			background-color: #171717;
		}
	}

	.accordion {
		margin-right: 20px;
		min-height: calc(100dvh - 80px - 105px - 68px);
	}

	.bx-filter-brand {
		max-height: fit-content;
		height: fit-content;
		overflow-y: auto;
	}

	.accordion-body-all {
		padding-bottom: 80px;
	}

	.accordion-body-all .bx-filter-brand {
		gap: 16px;

		& label {

			font-size: 16px;

			& .checkBox-input__check {
				margin-top: 3px;
			}

			&:nth-child(-n+6) {
				display: flex;
			}

			&:nth-child(n+7) {
				display: flex;
			}
		}

		& .bx-filter-brand__letter {
			display: flex;
			flex-direction: column;
			gap: 16px;
			margin-bottom: 16px;
			margin-right: 80px;

			& .filter-title {
				font-size: 20px;
				font-weight: 700;
				line-height: 1;
			}
		}
	}

	.accordion-body .bx-filter-brand {
		flex-direction: row;
		flex-wrap: wrap;

		& label {
			align-items: center;
			line-height: 0.8;
			order: 2;

			&:nth-child(-n+6) {
				display: flex;
			}

			&:nth-child(n+7) {
				display: none;

				&.checkBox-input--checked {
					order: 1;
					display: flex;
				}
			}

			&.checkBox-input--checked {
				order: 1;
				display: flex;
			}

		}
	}

	.accordion-body .checkBox-input {
		height: 32px;
		background-color: #F2F1F0;
		border-radius: 16px;
		padding: 0 16px;

		&:hover {
			background-color: var(--color-accent-light);
			color: var(--color-default);
		}
	}

	.accordion-body .checkBox-input.disabled {

		&:hover {
			background-color: #F2F1F0;
			color: var(--color-primary);
		}
	}

	.accordion-body .checkBox-input--checked,
	.accordion-body .checkBox-input input:checked+.checkBox-input--checked {
		background-color: #171717;
		color: #FFF;
	}

	.accordion-body .checkBox-input .checkBox-input__check {
		display: none;
	}
}
/* End */


/* Start:/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/colors.css?17519093492372*/
.bx-filter.bx-blue .bx-filter-section {
}
/*
* INPUTS
*
*/
.bx-retina .bx-filter.bx-blue .bx-filter-input-container input:focus {
	-webkit-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	-moz-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	-o-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
}
/*
*Track
*
*/
.bx-filter.bx-blue .bx-ui-slider-track{background: #C1BBB7;}
.bx-filter.bx-blue .bx-ui-slider-pricebar-vd{background: #849da4;}
.bx-filter.bx-blue .bx-ui-slider-pricebar-vn{background: #C1BBB7;}
.bx-filter.bx-blue .bx-ui-slider-pricebar-v {background: #171717;}

/*
*	Select
*
*/
.bx-filter.bx-blue .bx-filter-select-container.bx-active,
.bx-filter.bx-blue .bx-filter-select-container:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter.bx-blue .bx-filter-select-container.bx-active,
.bx-retina .bx-filter.bx-blue .bx-filter-select-container:focus {
	-webkit-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	-moz-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	-o-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
}
/*
*	Select popup
*
*/
/*
* TAGS
*
*/
.bx-filter.bx-blue .bx-filter-tag {
	border-top: 1px solid #d7eaf7;
	border-bottom: 1px solid #d7eaf7;
}
.bx-filter.bx-blue .bx-tag-link {
	color: #68939e;
}
/*
*	LABEL
*
*/
/*
*	Checkbox / Radio 
*
*/
/*
* 	BTN 
*
*/
.bx-filter.bx-blue .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-filter.bx-blue .bx-filter-param-btn:hover,
.bx-filter.bx-blue .bx-filter-param-btn:active,
.bx-filter.bx-blue .bx-filter-param-btn:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter.bx-blue .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-retina .bx-filter.bx-blue .bx-filter-param-btn:hover,
.bx-retina .bx-filter.bx-blue .bx-filter-param-btn:active,
.bx-retina .bx-filter.bx-blue .bx-filter-select-container:focus {
	-webkit-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	-moz-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	-o-border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
	border-image: url(/local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/images/active.png) 2 repeat;
}
/*
* BTN P/M
*
*/
/*
*	icon
*
*/
/*
* 	BIZ
*
*/
/*
*	BTN result and reset 
*
*/

.bx-filter.bx-blue .btn-link {
	padding: 8px 10px;
	background: transparent;
	border: 2px solid #f8475e;
	text-align: center;
	font-size: 14px;
	color: #f8475e;
	transition: all .15s ease-out;
}

/* End */


/* Start:/local/templates/new_main/components/bitrix/catalog.section/a_section/style.css?17521615942092*/

.overlay__section--sale {position: fixed; z-index: 9998; left: 0; top: 0; background-color: rgba(0, 0, 0, 0.5); width: 100vw; height: 100vh; max-width: 100%; overflow: hidden; display: flex; align-items:center; justify-content: center;}
.section__modal--close {position: absolute; z-index: 99; top: 15px; right: 15px; color: #778899; width: 30px; height: 30px; display: flex; align-items:center; justify-content: center; font-size: 24px; cursor: pointer;}
.section__modal--sale {width: calc(100% - 30px); max-width: 620px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 10px; min-height: 320px; position: relative; overflow: hidden;  max-height: 100vh;}

.section__modal--content {display: block; text-align: center; padding: 30px; overflow-y: auto; max-height: 320px; scrollbar-width: thin; scrollbar-color: #000 #eee;}

.section__modal--content::-webkit-scrollbar {width: 4px;}
.section__modal--content::-webkit-scrollbar-track {background: #eee}
.section__modal--content::-webkit-scrollbar-thumb {background-color: #000; border-radius: 2px; border: 0;}

.section__modal--title {font-size: 18px; font-weight: bold; margin-bottom: 17px; line-height: 24px;}
.section__modal--content button {box-shadow: none; border: 0; outline: 0; background: #000; color: #fff;min-width: 217px; height: 40px; display: flex; align-items:center; justify-content: center; margin:  17px auto 0px auto;  font-weight: bold;}
.section__modal--image {width: 47%; height: 100%; display: block; min-height: 320px;  max-height: 100vh;}
.section__modal--content-image {width: 53%; max-width: 53%;}

.section__modal--season {max-width: 800px; min-height: 420px; max-height: 100vh;}
.section__modal--season .section__modal--image {min-height: 420px;  max-height: 100vh;}
.section__modal--season .section__modal--content {max-height: 420px;}

.invisible {display: none;}
.invisible__forever {display: none !important;}

@media (max-width: 769px) {
.modal--image {display: none;}
.section__modal--content-image {width: 100%; max-width: 100%;}
}

 
/* End */
/* /local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/style.css?175644762211847 */
/* /local/templates/new_main/components/bitrix/catalog.smart.filter/a_filter/themes/blue/colors.css?17519093492372 */
/* /local/templates/new_main/components/bitrix/catalog.section/a_section/style.css?17521615942092 */
