

/* Start:/local/templates/dresscodeV2/components/bitrix/catalog.smart.filter/.dress-before-renew/style.css?177382738419267*/
/**
 * Умный фильтр каталога — современный дизайн в стиле сайта.
 * Шрифт: Montserrat, акцент: #ffcc33, скругления 8–12px.
 */

/* Контейнер */
#smartFilter.smart-filter {
	font-family: "Montserrat", sans-serif;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	border: 1px solid #eee;
	overflow: hidden;
	margin-top: 0;
	position: relative;
}

/* Заголовок блока фильтра — самый крупный шрифт, без стрелки (фильтры не скрываются) */
#smartFilter .smart-filter__header.title {
	display: flex;
	align-items: center;
	gap: 10px;
	height: auto;
	line-height: 1.3;
	padding: 14px 18px;
	background: #f8f9fa;
	color: #1f2937;
	font-size: 17px;
	font-weight: 600;
	border-bottom: 1px solid #eee;
	transition: background 0.2s;
}

#smartFilter .smart-filter__header:hover {
	background: #f0f1f3;
}

#smartFilter .smart-filter__header-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E")
		center/contain no-repeat;
	opacity: 0.85;
}

#smartFilter .smart-filter__header-text {
	flex: 1;
}

#smartFilter .smart-filter__form {
	padding: 0 0 20px;
}

/* Группа параметров */
#smartFilter .paramsBox {
	border-bottom: 1px solid #f0f0f0;
	padding: 16px 18px;
	font-size: 13px;
	position: relative;
}

#smartFilter .paramsBox:last-of-type {
	border-bottom: none;
}

/* Строка заголовка фильтра: название + стрелка на месте (только поворот) */
#smartFilter .paramsBoxTitleWrap {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	position: relative;
}

#smartFilter .paramsBoxTitle {
	font-weight: 600;
	color: #374151;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	user-select: none;
	flex: 1;
	min-width: 0;
}

#smartFilter .paramsBoxTitle span {
	cursor: pointer;
}

/* Иконка раскрытия — в одной строке с названием, только поворот без сдвига */
#smartFilter .propExpander {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	cursor: pointer;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E")
		center/contain no-repeat;
	transition: transform 0.25s ease;
	border: none;
	-webkit-appearance: none;
	appearance: none;
}

#smartFilter .propExpander.expanded {
	transform: rotate(90deg);
}

/* Свернутый блок параметров */
#smartFilter .params {
	transition:
		opacity 0.2s ease,
		max-height 0.25s ease;
	overflow: hidden;
}

#smartFilter .params.collapsed {
	opacity: 0;
	max-height: 0;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

/* Списки чекбоксов и радио */
#smartFilter .checkbox,
#smartFilter .radio {
	list-style: none;
	padding: 0;
	margin: 0;
}

#smartFilter .checkbox li,
#smartFilter .radio li {
	padding: 6px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

#smartFilter .checkbox .off,
#smartFilter .radio .off {
	display: none;
}

/* В шаблоне Bitrix часть значений прячется через li.off внутри .checkboxList */
#smartFilter .checkboxList .off {
	display: none;
}

/* Чекбокс и радио — кастомный вид без картинок */
#smartFilter input[type="checkbox"],
#smartFilter input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 18px;
	height: 18px;
	margin: 0;
	cursor: pointer;
}

#smartFilter input[type="checkbox"] + label,
#smartFilter input[type="radio"] + label {
	position: relative;
	padding-left: 28px;
	min-height: 20px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	color: #4b5563;
	transition: color 0.15s;
}

#smartFilter input[type="checkbox"] + label:hover,
#smartFilter input[type="radio"] + label:hover {
	color: #1f2937;
}

#smartFilter input[type="checkbox"] + label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid #d1d5db;
	border-radius: 4px;
	background: #fff;
	transition:
		border-color 0.2s,
		background 0.2s,
		box-shadow 0.2s;
}

#smartFilter input[type="radio"] + label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid #d1d5db;
	border-radius: 50%;
	background: #fff;
	transition:
		border-color 0.2s,
		background 0.2s;
}

#smartFilter input[type="checkbox"]:checked + label::before {
	background: #ffcc33;
	border-color: #ffcc33;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2937' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
}

#smartFilter input[type="radio"]:checked + label::before {
	border-color: #ffcc33;
	background: #fff;
	box-shadow: inset 0 0 0 5px #ffcc33;
}

#smartFilter input[type="checkbox"]:focus + label::before,
#smartFilter input[type="radio"]:focus + label::before {
	outline: none;
}

#smartFilter input[type="checkbox"]:focus,
#smartFilter input[type="radio"]:focus {
	outline: none;
}

/* Неактивные пункты после подсчёта — серый текст и курсор, перебиваем обычные стили label */
#smartFilter .disabled,
#smartFilter label.disabled,
#smartFilter input[type="checkbox"]:disabled + label,
#smartFilter input[type="radio"]:disabled + label,
#smartFilter li.disabled label {
	color: #9ca3af !important;
	cursor: not-allowed !important;
}

/* Внешний вид чекбокса/радио в состоянии disabled */
#smartFilter input[type="checkbox"]:disabled + label::before,
#smartFilter input[type="radio"]:disabled + label::before {
	opacity: 0.6;
	border-color: #d1d5db;
	background: #f3f4f6;
}

#smartFilter input[type="checkbox"]:disabled:checked + label::before {
	background: #e5e7eb;
	border-color: #d1d5db;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

#smartFilter input[type="radio"]:disabled:checked + label::before {
	box-shadow: inset 0 0 0 5px #d1d5db;
}

#smartFilter .disabled .wrap,
#smartFilter .checkboxList .disabled .icon .wrap {
	opacity: 0.5;
}

/* Количество в скобках */
#smartFilter .elCount {
	color: #9ca3af;
	font-size: 13px;
	font-weight: 400;
	margin-left: 2px;
}

/* Ссылка «Показать ещё» */
#smartFilter .showALL {
	color: #ffcc33;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
}

#smartFilter .showALL:hover {
	text-decoration: underline;
}

/* Выпадающий список (dropdown) */
#smartFilter .dropdown {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	position: relative;
	font-size: 14px;
	display: block;
}

#smartFilter .checkedItem {
	display: flex;
	align-items: center;
	padding: 10px 36px 10px 12px;
	border-radius: 8px;
	cursor: pointer;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
		right 12px center/16px no-repeat;
	transition:
		border-color 0.2s,
		background-color 0.2s;
}

#smartFilter .checkedItem:hover {
	border-color: #d1d5db;
	background-color: #fafafa;
}

#smartFilter .dropdownList {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 4px;
	list-style: none;
	padding: 6px 0;
	margin: 4px 0 0;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	z-index: 100;
	max-height: 260px;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.2s,
		visibility 0.2s;
}

#smartFilter .dropdownList.opened {
	opacity: 1;
	visibility: visible;
}

#smartFilter .dropdownList .item {
	display: block;
	padding: 10px 12px;
	color: #374151;
	transition: background 0.15s;
}

#smartFilter .dropdownList .item:hover {
	background: #f8f9fa;
	color: #1f2937;
}

#smartFilter .dropdownList .selected .item {
	background: rgba(255, 204, 51, 0.12);
	color: #1f2937;
	font-weight: 500;
}

#smartFilter .dropdown input {
	position: absolute;
	left: -9999px;
}

/* Картинки в чекбоксах (цвета и т.д.) */
#smartFilter .checkboxList .icon,
#smartFilter .dropdown .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	margin-right: 10px;
	flex-shrink: 0;
	overflow: hidden;
}

#smartFilter .checkboxList .icon .wrap,
#smartFilter .dropdown .icon .wrap {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#smartFilter .checkboxList.inline li {
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 8px;
}

/* Диапазон (слайдер и поля От/До) */
#smartFilter .rangeSlider {
	padding: 4px 0;
}

#smartFilter .rangeSlider label {
	display: inline-block;
	margin-right: 8px;
	color: #6b7280;
	font-size: 13px;
}

#smartFilter .rangeSlider input[type="text"] {
	width: 72px;
	height: 36px;
	padding: 0 10px;
	margin-right: 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	color: #374151;
	font-size: 14px;
	font-family: inherit;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}

#smartFilter .rangeSlider input[type="text"]:focus {
	outline: none;
	border-color: #ffcc33;
	box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.15);
}

/* Слайдер — трек и ползунки */
#smartFilter .slider {
	height: 6px;
	margin: 16px 0 0;
	background: #e5e7eb;
	border-radius: 3px;
	position: relative;
	max-width: 100%;
}

#smartFilter .slider .handler {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 24px;
	cursor: pointer;
}

#smartFilter .slider .blackoutLeft,
#smartFilter .slider .blackoutRight {
	position: absolute;
	height: 6px;
	top: 0;
	background: #ffcc33;
	border-radius: 3px;
	pointer-events: none;
}

#smartFilter .slider .blackoutLeft {
	left: 0;
}

#smartFilter .slider .blackoutRight {
	right: 0;
}

#smartFilter .slider ins {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: 2px solid #ffcc33;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
	cursor: grab;
	z-index: 2;
	pointer-events: auto;
	transition:
		box-shadow 0.2s,
		transform 0.2s;
}

#smartFilter .slider ins:hover {
	box-shadow: 0 2px 8px rgba(255, 204, 51, 0.35);
}

#smartFilter .slider ins:active {
	cursor: grabbing;
}

#smartFilter .slider .left {
	right: -10px;
}

#smartFilter .slider .right {
	left: -10px;
}

/* Кнопки «Показать» и «Сбросить» */
#smartFilterControls.smart-filter__actions {
	display: flex;
	gap: 10px;
	padding: 18px 18px 0;
	margin: 0;
	list-style: none;
	flex-wrap: wrap;
}

#smartFilterControls.smart-filter__actions li {
	width: auto;
	float: none;
	flex: 1;
	min-width: 0;
}

#smartFilterControls.smart-filter__actions li:last-child {
	float: none;
}

#smartFilter .smart-filter__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 44px;
	padding: 0 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	text-decoration: none;
	transition:
		background 0.2s,
		color 0.2s,
		border-color 0.2s;
	cursor: pointer;
	border: none;
	width: 100%;
	box-sizing: border-box;
}

#smartFilter .smart-filter__btn--primary {
	background: #ffcc33;
	color: #1f2937;
}

#smartFilter .smart-filter__btn--primary:hover {
	background: #f5c22e;
}

#smartFilter .smart-filter__btn--secondary {
	background: #fff;
	color: #6b7280;
	border: 1px solid #e5e7eb;
}

#smartFilter .smart-filter__btn--secondary:hover {
	background: #f9fafb;
	border-color: #d1d5db;
	color: #374151;
}

#smartFilter #set_filter[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

/* Компактная кнопка «Показать N» — на одной линии с выбранным элементом, справа */
/* Перебиваем стили из template_styles.css (#modef { left }) и тем (например #modef { background: #FFA420 }) */
#smartFilter #modef.smart-filter__apply-wrap {
	position: absolute;
	right: 12px;
	left: auto !important;
	top: 60px;
	display: none;
	align-items: center;
	gap: 6px;
	z-index: 50;
	width: auto;
	background: transparent !important;
	background-image: none !important;
	border: none !important;
	padding: 0 !important;
	box-shadow: none !important;
}

#smartFilter #modef.smart-filter__apply-wrap--visible,
#smartFilter #modef.smart-filter__apply-wrap[style*="inline-block"],
#smartFilter #modef.smart-filter__apply-wrap[style*="display: inline-block"] {
	display: inline-flex !important;
}

/* Сама кнопка — в стиле сайта (жёлтый акцент #ffcc33) */
#smartFilter .smart-filter__apply-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	color: #1f2937;
	background: #ffcc33;
	border: none;
	border-radius: 20px;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	transition:
		background 0.2s,
		box-shadow 0.2s,
		transform 0.15s;
}

#smartFilter .smart-filter__apply-btn:hover {
	background: #f5c22e;
	box-shadow: 0 2px 6px rgba(255, 204, 51, 0.35);
}

#smartFilter .smart-filter__apply-btn:active {
	transform: scale(0.98);
}

/* Число товаров в кнопке */
#smartFilter .smart-filter__apply-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 18px;
	padding: 0 5px;
	font-size: 11px;
	background: rgba(31, 41, 55, 0.12);
	border-radius: 10px;
	color: #1f2937;
}

/* Крестик скрыть */
#smartFilter .smart-filter__apply-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	margin: 0;
	border: none;
	background: #f3f4f6;
	color: #6b7280;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	transition:
		background 0.2s,
		color 0.2s;
	-webkit-appearance: none;
	appearance: none;
}

#smartFilter .smart-filter__apply-close:hover {
	background: #e5e7eb;
	color: #1f2937;
}

#smartFilter #modef_send {
	text-decoration: none;
}

/* На малых экранах template_styles скрывает #modef — перебиваем для нашей кнопки */
@media all and (max-width: 1024px) {
	#smartFilter #modef.smart-filter__apply-wrap--visible,
	#smartFilter #modef.smart-filter__apply-wrap[style*="inline-block"] {
		display: inline-flex !important;
	}
}

/* Подсказка (hint) — желтый кружок с вопросом, без картинки */
#smartFilter .hint {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ffcc33 !important;
	background-image: none !important;
	color: #1f2937;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	cursor: help;
	position: relative;
	flex-shrink: 0;
	transition:
		background 0.2s,
		transform 0.2s;
	vertical-align: middle;
	margin-left: 4px;
}

#smartFilter .hint:hover {
	background: #f5c22e !important;
	background-image: none !important;
	transform: scale(1.1);
}

#smartFilter .hint::before {
	content: "?";
	display: block;
}

/* Контент подсказки в фильтре — только хранилище, не показываем */
#smartFilter .hintValue {
	display: none !important;
}

/* Единое всплывающее окно подсказки в body — всегда поверх и без обрезки */
#smartFilterHintPopup {
	display: none;
	position: fixed;
	z-index: 999999;
	margin: 0;
	padding: 12px 14px;
	padding-top: 14px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	font-size: 13px;
	line-height: 1.5;
	color: #374151;
	min-width: 200px;
	max-width: 320px;
	white-space: normal;
	pointer-events: auto;
	font-family: "Montserrat", sans-serif;
	box-sizing: border-box;
}

#smartFilterHintPopup.is-open {
	display: block;
}

/* Стрелка сверху (подсказка под иконкой) */
#smartFilterHintPopup::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
}

#smartFilterHintPopup::after {
	content: "";
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #e5e7eb;
	z-index: -1;
}

/* Подсказка над иконкой — стрелка вниз */
#smartFilterHintPopup.hintPopup--above::before {
	top: auto;
	bottom: -6px;
	border-bottom: none;
	border-top: 6px solid #fff;
}

#smartFilterHintPopup.hintPopup--above::after {
	top: auto;
	bottom: -7px;
	border-bottom: none;
	border-top: 7px solid #e5e7eb;
}

#smartFilterHintPopup .close {
	position: absolute;
	right: 8px;
	top: 8px;
	cursor: pointer;
	font-size: 18px;
	color: #9ca3af;
	line-height: 1;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition:
		background 0.2s,
		color 0.2s;
}

#smartFilterHintPopup .close:hover {
	background: #f3f4f6;
	color: #1f2937;
}

/* Календарь */
#smartFilter .filterCalendar {
	position: relative;
	display: block;
	width: 48%;
	float: left;
}

#smartFilter .filterCalendar + .filterCalendar {
	margin-left: 4%;
}

#smartFilter .filterCalendar input[type="text"] {
	width: 100%;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	color: #374151;
	font-size: 14px;
}

#smartFilter .filterCalendar .fakeCalendarIcon {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: #e5e7eb;
	border-radius: 2px;
	pointer-events: none;
}

/* Общие сбросы для инпутов */
#smartFilter input[type="text"]:focus,
#smartFilter input[type="email"]:focus,
#smartFilter input[type="password"]:focus,
#smartFilter textarea:focus,
#smartFilter select:focus {
	outline: none;
}

#smartFilter button,
#smartFilter input,
#smartFilter select,
#smartFilter textarea {
	box-sizing: border-box;
}

/* End */


/* Start:/local/templates/dresscodeV2/components/bitrix/system.pagenavigation/round/style.css?17727030592400*/
.bx-pagination {
	margin: 10px 0;
}
.bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
}
.bx-pagination .bx-pagination-container ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
	margin: 0 2px 15px 2px;
}
.bx-pagination .bx-pagination-container ul li span {
	-webkit-transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	-moz-transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	-ms-transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	-o-transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	background: #eff0f1;
	padding: 0 8px;
	display: block;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	font-size: 14px;
	border-radius: 16px;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-pagination .bx-pagination-container ul li a {
	text-decoration: none;
	display: block;
	border-radius: 16px;
	display: block;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	vertical-align: middle;
}
.bx-pagination .bx-pagination-container ul li a:hover span {
	background: #dadada;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span {
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
	color: #444;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span {
	color: #aab1b4;
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span {
	background: #fff;
	border-color: #dadada;
	color: #1a1a1a;
}

/* End */
/* /local/templates/dresscodeV2/components/bitrix/catalog.smart.filter/.dress-before-renew/style.css?177382738419267 */
/* /local/templates/dresscodeV2/components/bitrix/system.pagenavigation/round/style.css?17727030592400 */
