/**************************************/
/*** Основные переменные шаблона ***/
/**************************************/
:root {
	--color-black: #301815;
	--color-white: #ffffff;
	--color-gray: #C2B9B1;
	--color-lightgray: #F2F0EE;
	--color-border: #C2B9B1;
	--color-red: #FD2437;
	--color-primary: #FD8A4F;
	--color-secondary: #6FCB59;
	--color-tertiary: #EDFCE9;
	--color-quaternary: #B780FC;
	--color-yellow: #FFC01F;
	--color-bg: #FDFAF9;
	--color-shadow: rgba(164, 139, 123, 0.2);
}
/**************************************/
/*** Основные стили ***/
/**************************************/
body {color: var(--color-black);background-color: var(--color-bg);font-family: 'Mulish', sans-serif;}
/*** Скролы сайта ***/
::-webkit-scrollbar {width: 8px;height: 0;}
::-webkit-scrollbar-thumb {border-radius: 4px;background-color: var(--color-gray);}
::-webkit-scrollbar-track {border-radius: 4px;background-color: var(--color-white);}
/*** Вспомогательные элементы ***/
a {color: var(--color-black);}
a:hover, a.is-actived, a.added {color: var(--color-primary);}
.tc {color: var(--color-primary);}
.required em {color: var(--color-red);}
.noscript {color: var(--color-white);background-color: var(--color-primary);padding: 20px;position: fixed;top: 0;z-index: 99;text-align: center;width: 100%;}
/**************************************/
/*** Инпут поля ***/
/**************************************/
input, select, textarea {height: 56px;padding: 0 16px;color: var(--color-black);background-color: var(--color-lightgray);border-color: var(--color-lightgray);border-width: 1px;border-style: solid;border-radius: 12px;width: 100%;font-size: inherit;font-weight: 400;font-family: inherit;outline: 0;-webkit-appearance: none;-moz-appearance: none;appearance: none;}
input:focus, select:focus, textarea:focus {border-color: var(--color-secondary);background-color: var(--color-white);}
input.focus, select.focus, textarea.focus {border-color: var(--color-primary);}
input.error, textarea.error {border-color: var(--color-red);}
textarea {height: auto;padding: 16px;resize: vertical;}
select {cursor: pointer;}
input[type="file"] {margin-top: 4px;height: auto;line-height: 1;border: 0;padding: 0;border-radius: 0;background: transparent;}
input::-ms-clear {display: none;}
/* Квадрат с иконкой */
.square {background-color: transparent;color: var(--color-black);background: var(--color-white);border: 1px solid var(--color-gray);width: 20px;height: 20px;line-height: 18px;font-size: 18px;margin: 0;padding: 0;border-radius: 4px;text-align: center;cursor: pointer;}
.square:after {content: '';font-family: 'icomoon';font-size: 12px;}
.square:checked {color: var(--color-white);background-color: var(--color-secondary);border-color: var(--color-secondary);}
.square:hover {background-color: var(--color-tertiary);border-color: var(--color-secondary);}
.square:checked:after {content: '\e906';}
.square:hover:checked {background-color: var(--color-secondary);}
.square:disabled {background-color: var(--color-gray);border-color: var(--color-gray);cursor: default;pointer-events: none;}
.square:disabled:after {content: '';}
.square + label {cursor: pointer;}
.square:disabled + label {color: var(--color-gray);cursor: default;pointer-events: none;}
/* Чекбокс */
.checkbox {vertical-align: middle;}
.checkbox + label {padding-left: 12px;}
/* Селекты */
.selectBox {position: relative;}
.selectBox:after {content: '\e907';font-size: 8px;bottom: 16px;right: 16px;position: absolute;font-family: 'icomoon';pointer-events: none;transition: all 0.3s ease;}
.selectBox select {padding: 0 28px 0 16px;height: 44px;border-radius: 4px;text-overflow: ellipsis;transition: all 0.3s ease;}
.selectBox select::-ms-expand {display: none;}
.selectBox:hover:after {color: var(--color-secondary);}
.selectBox:hover select, .selectBox select:focus {color: var(--color-secondary);background-color: var(--color-tertiary);border-color: var(--color-tertiary);}
.selectBox select option {color: var(--color-black);cursor: pointer;}
/* Текст в не активном инпуте */
::-webkit-input-placeholder {color: var(--color-gray);}
::-moz-placeholder {color: var(--color-gray);}
:-moz-placeholder {color: var(--color-gray);}
:-ms-input-placeholder {color: var(--color-gray);}
/* Текст в активном инпуте */
:focus::-webkit-input-placeholder {color: var(--color-black);transition: opacity .3s ease;}
:focus::-moz-placeholder {color: var(--color-black);transition: opacity .3s ease;}
:focus:-moz-placeholder {color: var(--color-black);transition: opacity .3s ease;}
:focus:-ms-input-placeholder {color: var(--color-black);transition: opacity .3s ease;}
/**************************************/
/*** Кнопки ***/
/**************************************/
button, [class*="button-"], .paymentFormSubmitLink, .paymentFormTbodySubmitButton {color: var(--color-white);background: var(--color-primary);padding: 0 32px;line-height: 44px;border: 0;border-radius: 12px;text-align: center;font-size: inherit;font-weight: 500;font-family: inherit;cursor: pointer;display: inline-block;position: relative;transition: all 0.3s ease;}
button:hover, [class*="button-"]:hover, .paymentFormSubmitLink:hover, .paymentFormTbodySubmitButton:hover, button.is-actived, [class*="button-"].is-actived {color: var(--color-white);background: var(--color-secondary);border-color: var(--color-secondary);}
/*** Кнопка. Основная ***/
.button-primary {background: var(--color-primary);border-color: var(--color-primary);}
.button-primary:hover, .button-primary.is-actived {background: var(--color-secondary);border-color: var(--color-secondary);color: var(--color-white);}
/*** Кнопка. Вторичная ***/
.button-secondary {background: var(--color-secondary);border-color: var(--color-secondary);}
.button-secondary:hover, .button-secondary.is-actived {background: var(--color-primary);border-color: var(--color-primary);color: var(--color-white);}
/*** Кнопка. Третичная ***/
.button-tertiary {background: var(--color-tertiary);border-color: var(--color-tertiary);color: var(--color-secondary);}
.button-tertiary:hover, .button-tertiary.is-actived {background: var(--color-secondary);border-color: var(--color-secondary);color: var(--color-white);}
/*** Кнопка. Выключенная ***/
[class*="button-"].is-disabled, [class*="button-"]:disabled {background-color: var(--color-gray);border-color: var(--color-gray);pointer-events: none;cursor: default;}
/*** Кнопка. Нет в наличии ***/
.button-empty {color: var(--color-gray);background: var(--color-lightgray);border-color: var(--color-lightgray);}
.button-empty:hover {background: var(--color-gray);border-color: var(--color-gray);}
/*** Кнопка. Маленькая ***/
.button-small {padding: 0 12px;font-size: 12px;line-height: 20px;}
/*** Кнопка. Большая ***/
.button-big {padding: 0 44px;font-size: 18px;line-height: 56px;}
/*** Кнопка. Анимация поворота ***/
.button-rotate i {font-size: 18px;vertical-align: middle;transition: all 0.3s ease;display: inline-block;}
.button-rotate span {margin-left: 8px;vertical-align: middle;transition: all 0.3s ease;}
.button-rotate:hover i, .button-rotate.is-actived i {transform: rotate(90deg);}
.button-rotate.is-actived:hover i {transform: rotate(0deg);}
/*** Кнопка. Ссылка. Без стилей фона ***/
.button-link {color: inherit;background-color: transparent;padding: 0;border: 0;line-height: 1;}
.button-link:hover, .button-link.is-actived {color: var(--color-primary);background-color: transparent;}
/*** Кнопка. Фенсибокс ***/
.fancybox-button {background: var(--color-shadow);color: var(--color-lightgray);border: 0;}
.fancybox-close-small {font-size: 20px;line-height: 1;background: transparent;}
.fancybox-close-small:hover {background: none;color: var(--color-primary);}
/*** Кнопка с иконкой ***/
.button-icon {display: -ms-flexbox;display: -webkit-flex;display: flex;-ms-flex-align: center;-webkit-align-items: center;-webkit-box-align: center;align-items: center;-webkit-justify-content: flex-start;justify-content: flex-start;}
.button-icon i {font-size: .75em;}
.button-icon i + span {margin-left: 8px;}
.button-icon span + i {margin-left: 8px;}
/*** Кнопка с иконкой подробнее ***/
.button-more {color: var(--color-gray);font-size: 16px;font-weight: bold;}
.button-more i {font-size: .75em;vertical-align: bottom;}
.button-more.is-actived i:before {content: '\e90a';}
/**************************************/
/*** Количество ***/
/**************************************/
.qty {background-color: var(--color-lightgray);border-radius: 4px;}
.qty__select {color: var(--color-gray);width: 40px;height: 40px;line-height: 44px;font-size: 12px;padding: 0;text-align: center;transition: all 0.3s ease;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
.qty__select:hover {color: var(--color-black);border-color: var(--color-black);cursor: pointer;}
.qty__input {width: 48px;height: 40px;border: 0;padding: 0 4px;font-weight: bold;text-align: center;}
.qty__input:focus {background-color: var(--color-lightgray);}
.qty__disable {color: var(--color-gray);pointer-events: none;}
/**************************************/
/*** Наверх ***/
/**************************************/
#toTop {color: var(--color-white);background-color: var(--color-black);border-radius: 100%;box-shadow: 0px 0px 20px var(--color-shadow);position: fixed;bottom: 32px;right: 32px;width: 56px;height: 56px;line-height: 56px;font-size: 20px;text-align: center;transition: all 0.3s ease;z-index: 9;}
#toTop:hover {color: var(--color-white);background-color: var(--color-primary);cursor: pointer;}
.toTop {display: none;}
@media all and (max-width: 767px) {
	#toTop {bottom: 60px;right: 16px;display: none !important;}
}
/**************************************/
/*** Основные блоки ***/
/**************************************/
section {margin: 40px 0;position: relative;display: block;}
main {margin: 40px 0;position: relative;display: block;}
.main__left {width: 25%;padding-right: 16px;}
.main__right.has-sidebar {width: 75%;padding-left: 16px;}
.main__right {width: 100%;}
@media all and (max-width: 1023px) {
	section {margin: 32px 0;}
	main {margin: 32px 0;}
	.main__left {width: 100%;order: 2;}
	.main__right.has-sidebar {width: 100%;padding-left: 0;order: 1;}
}
/**************************************/
/*** Модальные окна ***/
/**************************************/
.fancybox-container .fancybox-content {max-width: 800px;padding: 0;overflow: hidden;border-radius: 12px;}
.fancybox-slide--html .modal .fancybox-close-small {color: var(--color-white);background: rgba(255, 255, 255, 0.2);border-radius: 12px;padding: 12px;top: 14px;right: 16px;transition: all 0.3s ease;}
.fancybox-slide--html .modal .fancybox-close-small:hover {background: rgba(255, 255, 255, 0.4);}
.fancybox-slide--html .modal .fancybox-close-small:before {content: '\e90b';font-family: 'icomoon';}
.fancybox-slide--html .modal .fancybox-button svg {display: none;}
.modal {border-radius: 12px;}
.modal__title {color: var(--color-white);background-color: var(--color-primary);padding: 16px 24px;border-radius: 12px 12px 0 0;}
.modal__content {padding: 24px;}
@media all and (max-width: 479px) {
	.fancybox-slide--html .modal .fancybox-close-small {top: 0;right: 0;background-color: transparent;}
	.modal__title {padding: 12px;}
}
/*** Обратный звонок ***/
#fancybox__callback {max-width: 640px;}
#fancybox__callback .form__button {padding: 0;font-size: 24px;width: 56px;height: 56px;line-height: 56px;color: var(--color-white);border-radius: 100%;position: absolute;top: 0;right: 0;}
#fancybox__callback .form__input {height: 56px;border-radius: 56px;padding: 0 56px 0 28px;flex-grow: 1;}
#fancybox__callback .form__field {width: calc(100% - 208px);}
#fancybox__callback .form__text {font-weight: 500;}
#fancybox__feedback .form__button {width: 100%;}
@media all and (min-width: 640px) {
	#fancybox__callback .form__pp {width: 192px;margin: 0 0 0 16px;}
	#fancybox__callback .form__pp span {display: block;}
}
@media all and (max-width: 639px) {
	#fancybox__callback .form__field {width: 100%;}
}
/**************************************/
/*** Блок Заголовков ***/
/**************************************/
.block__title {margin-bottom: 24px;position: relative;}
.block__title .title {line-height: 1.25;font-size: 28px;font-weight: 800;}
.block__title .subtitle {font-size: 16px;}
.block__nav .title {width: calc(100% - 80px);}
.block__nav .swiper-navigation {margin-left: 8px;width: 72px;justify-content: space-between;}
#page__title .block__title {margin-bottom: 8px;}
@media all and (max-width: 639px) {
	.block__nav .title {font-size: 24px;}
}
@media all and (max-width: 479px) {
	.block__title .title {font-size: 20px;}
}
/**************************************/
/*** Хлебные крошки ***/
/**************************************/
#breadcrumbs {margin-bottom: 24px;padding-bottom: 4px;font-size: 14px;width: 100%;overflow-x: auto;display: block;position: relative;}
#breadcrumbs ul {flex-wrap: nowrap;white-space: nowrap;}
#breadcrumbs ul li:before {content: "";background-color: var(--color-gray);border-radius: 100%;margin: 0 8px;line-height: 1;vertical-align: middle;width: 4px;height: 4px;display: inline-block;}
#breadcrumbs ul li:first-child::before {display: none;}
#breadcrumbs ul li a {color: var(--color-gray);}
#breadcrumbs ul li a:hover {color: var(--color-primary);}
#breadcrumbs ul li:last-child {color: var(--color-gray);font-weight: bold;}
#breadcrumbs ul li a i {vertical-align: middle;margin-right: 4px;}
#breadcrumbs::-webkit-scrollbar {width: 0;height: 4px;}
@media all and (max-width: 1023px) {
	#breadcrumbs ul li span {text-overflow: ellipsis;white-space: nowrap;overflow: hidden;max-width: 320px;display: inline-block;vertical-align: middle;}
}
/**************************************/
/*** Рейтинг Товаров ***/
/**************************************/
.ratings {letter-spacing: 8px;color: var(--color-gray);font-size: 20px;line-height: 1;font-family: 'icomoon';white-space:nowrap;position: relative;display: inline-block;vertical-align: middle;overflow: hidden;}
.ratings:before {content: '\e91f\e91f\e91f\e91f\e91f';}
.ratings .rating {position: absolute;left: 0;top: 0;overflow: hidden;}
.ratings .rating:before {color: var(--color-yellow);content: '\e91f\e91f\e91f\e91f\e91f';}
.stars {overflow: hidden;}
.star {color: var(--color-gray);font-size: 20px;width: 20px;height: 20px;line-height: 20px;white-space: nowrap;float:left;cursor: pointer;zoom:1;display:block;margin-right: 8px;}
.star:after {content: '\e91f';font-family: 'icomoon';}
.stars .fullStar {color: var(--color-yellow);}
.stars .tmp_fs {color: var(--color-yellow);}
.stars .tmp_es {color: var(--color-gray);}
/**************************************/
/*** Иконки Новинка, Хит, Скидка ***/
/**************************************/
[class^="sticker__"] {background: var(--color-white);font-size: 14px;font-weight: bold;margin-right: 4px;padding: 4px 16px;border-radius: 12px 12px 0 0;line-height: 16px;text-align: center;text-transform: lowercase;}
[class^="sticker__"]:last-child {margin-right: 0;}
.sticker__sales {background: transparent;color: var(--color-white);position: relative;margin: 0;padding: 4px 8px;}
.sticker__sales:after {content: '\e927';font-family: 'icomoon';color: var(--color-red);font-size: 32px;position: absolute;top: 0;left: 0;z-index: 0;}
.sticker__sales span {position: relative;z-index: 2;}
.sticker__sale {color: var(--color-black);}
.sticker__sale:before {content: 'Скидка';}
.sticker__best {color: var(--color-quaternary);}
.sticker__best:before {content: 'Хит';}
.sticker__new {color: var(--color-secondary);}
.sticker__new:before {content: 'Новинка';}
/**************************************/
/*** Много, Мало, Нет в наличии ***/
/**************************************/
.rest-alot {color: var(--color-secondary);}
.rest-few {color: var(--color-secondary);}
.rest-zero {color: var(--color-gray);}
/**************************************/
/*** Цены ***/
/**************************************/
.price__now {font-weight: 700;font-size: 20px;line-height: 1.25;display: inline-block;}
.price__old {color: var(--color-gray);font-weight: 500;font-size: 14px;line-height: 1;display: inline-block;text-decoration: line-through;}
.RUB .num:after {content: '₽';margin-left: 4px;line-height: 1;display: inline-block;}
.RUB .num + span {display: none;}
.price__old .num:after {text-decoration: line-through;}
.has-price-old .price__now {color: var(--color-red);}
/**************************************/
/*** Товары ***/
/**************************************/
.products__container .row {margin-top: -24px;}
.products__container .row-small {margin-top: -16px;}
.product__item {width: calc(25% - 24px);margin: 24px 12px 0 12px;}
.product__form {height: 100%;background-color: var(--color-white);border: 1px solid var(--color-lightgray);border-radius: 16px;position: relative;transition: all 0.3s ease;}
.product__form:hover {border-color: var(--color-secondary);box-shadow: 0 16px 32px 0 var(--color-shadow);}
.product__margin {margin-bottom: 16px;}
.product__image {position: relative;}
.product__img {height: 272px;overflow: hidden;}
.IE .product__img img {max-width: 272px;max-height: 272px;}
.product__link + .product__link {margin-left: 4px;}
.product__link {color: var(--color-gray);background-color: var(--color-white);border-radius: 100%;box-shadow: 0 2px 10px 0 var(--color-shadow);font-weight: bold;}
.product__link:hover, .product__link.added {color: var(--color-secondary);background-color: var(--color-tertiary);}
.product__link span {display: none;}
.product__link i {font-size: 20px;width: 36px;height: 36px;line-height: 36px;text-align: center;display: inline-block;}
.product__ratings_count {display: none;}
.product__shop {padding: 16px;overflow: hidden;}
.product__name {line-height: 20px;height: 60px;overflow: hidden;font-weight: 500;}
.product__name span {display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.IE .product__name {display: block;}
.product__desc {max-height: 88px;overflow: hidden;}
.inCart__added {display: none;}
.product__inCart .inCart__added {display: inline-block;}
.product__inCart .inCart__label {display: none;}
.counter {color: var(--color-red);font-size: 14px;font-weight: 800;}
.counter i {font-size: 20px;margin-right: 8px;}
.counter__item:after {content: ':';display: inline-block;margin: 0 4px 0 0;}
.counter__item:last-child::after {display: none;}
.product__empty .product__name {color: var(--color-gray);}
.product__empty .price__now {color: var(--color-gray);}
.add-notify {display: none;}
.product__empty .add-notify {display: inline-flex;align-items: center;justify-content: center;}
.add-cart {display: inline-flex;align-items: center;justify-content: center;}
.product__empty .add-cart {display: none;}
/* .product__item:not(.product__empty) .add-notify {display: none;}
.product__empty .product__add.add-notify {display: inline-flex;}
.product__empty.product__empty .add-cart {display: none;} */
/*** Товары таблицей ***/
.products__grid .product__inCart .product__qty {display: flex;}
.products__grid .product__qty {position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(48, 24, 21, 0.6);border-radius: 16px 16px 0 0;display: none;}
.products__grid .qty {background-color: transparent;}
.products__grid .qty__input {background-color: transparent;color: var(--color-white);font-size: 30px;font-weight: 500;}
.products__grid .qty__select {color: var(--color-white);font-size: 16px;}
.products__grid .qty__select:hover {color: var(--color-primary);}
.products__grid .product__img {border-radius: 16px 16px 0 0;}
.products__grid .product__label {z-index: 2;position: absolute;top: 16px;left: 12px;}
.products__grid .product__sticker {z-index: 2;position: absolute;bottom: 0;left: 12px;}
.products__grid .product__links {position: absolute;right: 12px;bottom: -12px;transition: all 0.3s ease;z-index: 3;}
.products__grid .product__addCart {position: absolute;top: -12px;right: -4px;z-index: 2;}
.products__grid .product__add {width: 60px;height: 60px;color: var(--color-primary);background-color: var(--color-white);border-radius: 100%;box-shadow: 0 2px 10px 0 var(--color-shadow);text-align: center;align-items: center;justify-content: center;}
.products__grid .product__add:hover {color: var(--color-white);background-color: var(--color-secondary);}
.products__grid .product__add i {font-size: 32px;margin: 0;vertical-align: middle;}
.products__grid .product__add span {display: none;}
.products__grid .product__add:after {content: '\e91a';font-family: 'icomoon';color: var(--color-primary);background-color: var(--color-white);border-radius: 100%;width: 20px;height: 20px;line-height: 20px;font-size: 8px;text-align: center;display: block;box-shadow: 0 2px 10px 0 var(--color-shadow);position: absolute;top: 0;right: 0;transition: all 0.3s ease;}
.products__grid .product__add:hover:after {color: var(--color-secondary);}
.products__grid .add-notify {color: var(--color-gray);}
.products__grid .add-notify:hover {color: var(--color-white);}
.products__grid .product__inCart .product__add:after {display: none;}
.products__grid .product__empty .product__add:after {display: none;}
.products__grid .product__price {width: calc(100% - 128px - 8px);flex-grow: 1;text-align: left;}
.products__grid .price__old {display: block;margin: 0 0 4px 0;}
.products__grid .product__props {max-width: 128px;}
@media all and (min-width: 480px) and (max-width: 639px), all and (min-width: 768px) and (max-width: 1199px) {
	.products__grid .product__links {flex-direction: column;}
	.products__grid .product__link {margin: 4px 0 0 0;}
}
@media all and (min-width: 1024px) {
	.has-sidebar .product__item {width: calc(33.333333% - 24px);}
	.has-sidebar .product__img {height: 216px;}
	.products__grid .product__links {opacity: 0;transform: translateY(100%);}
	.products__grid .product__item:hover .product__links {opacity: 1;transform: translateY(0);}
}
@media all and (min-width: 1200px) {
	.has-sidebar .product__img {height: 269px;}
}
@media all and (max-width: 1199px) {
	.product__img {height: 220px;}
	.products__grid .product__has-mod .product__price {width: calc(100% - 96px - 8px);}
	.products__grid .product__props {max-width: 96px;}
}
@media all and (max-width: 1023px) {
	.product__item {width: calc(33.333333% - 24px);}
	.product__img {height: 228px;}
}
@media all and (max-width: 767px) {
	.product__item {width: calc(50% - 24px);}
	.product__img {height: 290px;}
	.products__grid .product__has-mod .product__price {width: calc(100% - 144px - 8px);}
}
@media all and (max-width: 639px) {
	.product__img {height: 210px;}
	.product__shop {padding: 12px;}
	.products__grid .product__props {max-width: 88px;}
	.products__grid .product__props:after {right: 6px;}
	.products__grid .product__props select {padding: 0 24px 0 8px;}
	.products__grid .product__sticker {left: 8px;}
	.products__grid .product__links {right: 8px;}
}
@media all and (max-width: 479px) {
	.product__item {width: 100%;}
	.product__img {height: 342px;}
	.products__grid .product__has-mod .product__price {width: calc(100% - 144px - 8px);}
	.products__grid .product__props {max-width: 144px;}
	.products__grid .product__margin {margin-bottom: 12px;}
}
@media all and (max-width: 374px) {
	.product__img {height: 286px;}
}
/*** Товары списком ***/
.products__list .product__item {width: 100%;margin: 16px 0 0 0;}
.products__list .product__form {align-items: stretch;}
.products__list .product__margin {margin-bottom: 12px;}
.products__list .product__image {width: 184px;border-right: 1px solid var(--color-lightgray);}
.products__list .product__img {height: 184px;overflow: hidden;border-radius: 16px 0 0 16px;}
.products__list .product__shop {width: calc(100% - 184px);padding: 12px 12px 12px 24px;display: flex;flex-wrap: wrap;flex-direction: column;}
.products__list .product__sticker {position: absolute;bottom: 0;left: 12px;}
.products__list .product__label {position: absolute;top: 12px;left: 12px;}
.products__list .product__price {flex-grow: 1;}
.products__list .price__old {display: block;}
.products__list .product__inner {gap: 16px 32px;}
.products__list .product__qty {display: none;}
.products__list .product__addCart {text-align: right;}
.products__list .product__add {padding: 0 48px;}
.products__list .product__add i {margin-right: 4px;font-size: 20px;}
.products__list .product__link {box-shadow: none;font-weight: 500;font-size: 14px;}
.products__list .product__link + .product__link {margin-left: 16px;}
.products__list .product__link:hover {background-color: transparent;}
.products__list .product__link span {display: inline-block;vertical-align: middle;}
.products__list .product__link i {margin-right: 4px;box-shadow: none;vertical-align: middle;font-size: 16px;width: auto;height: auto;line-height: 1;}
.products__list .product__available {position: absolute;top: 16px;right: 16px;font-size: 14px;}
.products__list .product__name {height: auto;flex-grow: 1;}
.products__list .product__name span {-webkit-line-clamp: 1;}
.products__list .product__desc {color: var(--color-gray);line-height: 1.25;display: none;}
.products__list .product__desc span {display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.products__list .product__add.add-notify {display: none;}
.products__list .product__empty .product__add.add-cart {display: none;}
.products__list .product__empty .product__add.add-notify {display: flex;}
.product__attr {color: var(--color-gray);line-height: 1.25;font-size: 14px;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.product__attr-item:after {content: ';';margin-left: -3px;}
.product__attr-item {margin-right: 4px;display: inline;}
.product__attr-name {margin-right: 2px;}
.product__add {gap: 4px;}
@media all and (max-width: 767px) {
	.products__list .product__props {max-width: 120px;}
	.products__list .product__add {padding: 0 32px;}
	.products__list .product__props {display: none;}
}
@media all and (max-width: 639px) {
	.products__list .product__image {width: 150px;}
	.products__list .product__img {height: 150px;}
	.products__list .product__shop {width: calc(100% - 150px);padding-left: 16px;}
	.products__list .product__props {display: none;}
	.products__list .product__name span {-webkit-line-clamp: 2;}
	.products__list .product__desc {display: none;}
	.products__list .product__link span {display: none;}
	.products__list .product__add {padding: 0 12px;font-size: 20px;width: 44px;height: 44px;display: inline-flex;align-items: center;justify-content: center;}
	.products__list .product__add span {display: none;}
	.products__list .product__add i {margin-right: 0;}
	.products__list [class^="sticker__"] {padding: 4px 8px;}
	.products__list .product__attr {display: none;}
}
@media all and (max-width: 479px) {
	.products__list .product__image {width: 100px;}
	.products__list .product__img {height: 100px;border-radius: 16px 0 0 0;}
	.products__list .product__shop {width: calc(100% - 100px);padding: 8px 8px 8px 12px;}
	.products__list .product__sticker {display: none;}
	.products__list .product__available {top: 10px;right: 10px;}
	.products__list .product__available b {display: none;}
	.products__list .product__label {display: none;}
}
/*** Товары на главной ***/
.pdt__visible .product__item.is-show {display: block !important;}
.products__buttons {text-align: center;margin-top: 24px;padding: 0 16px;}
@media all and (min-width: 1024px) {
	.pdt__visible .product__item:nth-child(n+9) {display: none;}
}
@media all and (max-width: 1023px) {
	.pdt__visible .product__item:nth-child(n+7) {display: none;}
}
@media all and (max-width: 767px) {
	.pdt__visible .product__item:nth-child(n+5) {display: none;}
}
@media all and (max-width: 479px) {
	.pdt__visible .product__item:nth-child(n+3) {display: none;}
}
/****************************************/
/*** Категории ***/
/****************************************/
.categories.has-products {display: none;}
.categories__item {width: calc(16.666666% - 16px);margin: 0 8px 16px 8px;position: relative;transition: all 0.3s ease;}
.categories__item:hover .categories__name {color: var(--color-white);background-color: var(--color-secondary);}
.categories__image {height: 182px;border-radius: 12px;}
.loading .categories__image {background-color: var(--color-lightgray);}
.categories__image img {border-radius: 12px;}
.categories__name {margin: -32px auto 0;padding: 12px;width: calc(100% - 24px);height: 64px;line-height: 20px;overflow: hidden;background-color: var(--color-lightgray);border-radius: 12px;font-weight: bold;position: relative;text-align: center;}
.categories__name span {display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.IE .categories__name {display: block;}
.products + .htmlDataBlock {margin-top: 32px;}
@media all and (min-width: 1024px) {
	/* .categories__full .categories__list {display: flex;}
	.has-sidebar .categories__list {display: none;} */
	.has-sidebar .categories__item {width: calc(25% - 16px);}
	.has-sidebar .categories__image {height: 164px;}
}
@media all and (min-width: 1199px) {
	.has-sidebar .categories__item {width: calc(20% - 16px);}
	.has-sidebar .categories__image {height: 160px;}
}
@media all and (max-width: 1199px) {
	.categories__item {width: calc(20% - 16px);}
	.categories__image {height: 180px;}
}
@media all and (max-width: 1023px) {
	.categories__item {width: calc(25% - 16px);}
	.categories__image {height: 172px;}
}
@media all and (max-width: 767px) {
	.categories__item {width: calc(33.333333% - 16px);}
	.categories__image {height: 192px;}
}
@media all and (max-width: 639px) {
	.categories__image {height: 138px;}
	.categories__name {width: 100%;margin: 4px 0 0 0;}
}
@media all and (max-width: 479px) {
	.categories__item {width: calc(50% - 16px);}
	.categories__image {height: 164px;}
}
@media all and (max-width: 374px) {
	.categories__image {height: 136px;}
}
/****************************************/
/*** Категории на главной ***/
/****************************************/
#catalog .swiper {width: calc(100% - 192px);}
#catalog .swiper-navigate {width: 176px;margin-right: 16px;background-color: #FFF1E8;border-radius: 16px;padding: 16px;position: relative;}
#catalog .swiper-navigate:before {content: '';position: absolute;top: 0;right: 0;width: 100%;height: 100%;background-position: bottom;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='181' height='76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 37.814C0-2.873 50-14.83 81.5 22.773 113 60.375 181 33.843 181 19.765v44.258C181 70.651 175.627 76 169 76H12C5.373 76 0 70.704 0 64.076V37.814Z' fill='%23FED9C2'/%3E%3C/svg%3E");}
#catalog .swiper-navigate:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='181' height='81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 27.257c0-7.434 50.418 42.461 96.627 36.326C140.12 57.81 181-5 181 1v68.012C181 75.639 175.627 81 169 81H12C5.373 81 0 75.638 0 69.011V27.257Z' fill='%23FFE6D7'/%3E%3C/svg%3E");}
#catalog .swiper-title {font-size: 22px;font-weight: 800;margin-bottom: 16px;line-height: 1.25;position: relative;}
@media all and (max-width: 1199px) {
	#catalog .swiper {width: calc(100% - 196px);}
	#catalog .swiper-navigate {width: 180px;}
}
@media all and (max-width: 1023px) {
	#catalog .swiper {width: calc(100% - 188px);}
	#catalog .swiper-navigate {width: 172px;}
}
@media all and (max-width: 767px) {
	#catalog .swiper {width: calc(100% - 208px);}
	#catalog .swiper-navigate {width: 192px;}
	#catalog .swiper-navigate:before {background-size: 100%;}
	#catalog .swiper-navigate:after {background-size: 100%;}
}
@media all and (max-width: 639px) {
	#catalog .swiper {width: 100%;}
	#catalog .swiper-title {width: calc(100% - 80px);margin: 0;}
	#catalog .swiper-navigation {width: 80px;text-align: right;}
	#catalog .swiper-navigate {width: 100%;margin: 0 0 16px 0;display: flex;flex-wrap: wrap;align-items: center;}
	#catalog .swiper-navigate:before {background-size: 100% 32px;border-radius: 16px;}
	#catalog .swiper-navigate:after {background-size: 100% 32px;border-radius: 16px;}
}
/****************************************/
/*** Особые категории в Каталоге ***/
/****************************************/
.special-categories {display: none;}
@media all and (min-width: 1023px) {
	.special-categories {margin-bottom: 16px;display: block;}
	.special-categories__item {width: calc(33.333333% - 16px);margin: 0 8px 16px 8px;padding: 16px;font-size: 28px;font-weight: 800;text-align: center;border-radius: 12px;position: relative;}
	.special-categories__item-best {color: #4D62AE;background-color: #E7ECFF;}
	.special-categories__item-new {color: #5EA94B;background-color: #E8FFE2;}
	.special-categories__item-discount {color: #D2767F;background-color: #FFE5E8;}
	.special-categories__item span {z-index: 2;position: relative;}
	.special-categories__item:before, .special-categories__item:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom;background-size: 100% 70%;background-repeat: no-repeat;}
	.special-categories__item:after {background-size: 100% 60%;}
	.special-categories__item-best:before {background-image: url("data:image/svg+xml,%3Csvg width='181' height='76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 37.814C0-2.873 50-14.83 81.5 22.773 113 60.375 181 33.843 181 19.765v44.258C181 70.651 175.627 76 169 76H12C5.373 76 0 70.704 0 64.076V37.814Z' fill='%23C9D4FC'/%3E%3C/svg%3E");}
	.special-categories__item-new:before {background-image: url("data:image/svg+xml,%3Csvg width='181' height='76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 37.814C0-2.873 50-14.83 81.5 22.773 113 60.375 181 33.843 181 19.765v44.258C181 70.651 175.627 76 169 76H12C5.373 76 0 70.704 0 64.076V37.814Z' fill='%23C5F9B8'/%3E%3C/svg%3E");}
	.special-categories__item-discount:before {background-image: url("data:image/svg+xml,%3Csvg width='181' height='76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 37.814C0-2.873 50-14.83 81.5 22.773 113 60.375 181 33.843 181 19.765v44.258C181 70.651 175.627 76 169 76H12C5.373 76 0 70.704 0 64.076V37.814Z' fill='%23FCCFD3'/%3E%3C/svg%3E");}
	.special-categories__item-best:after {background-image: url("data:image/svg+xml,%3Csvg width='181' height='81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 27.257c0-7.434 50.418 42.461 96.627 36.326C140.12 57.81 181-5 181 1v68.012C181 75.639 175.627 81 169 81H12C5.373 81 0 75.638 0 69.011V27.257Z' fill='%23DAE1FC'/%3E%3C/svg%3E");}
	.special-categories__item-new:after {background-image: url("data:image/svg+xml,%3Csvg width='181' height='81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 27.257c0-7.434 50.418 42.461 96.627 36.326C140.12 57.81 181-5 181 1v68.012C181 75.639 175.627 81 169 81H12C5.373 81 0 75.638 0 69.011V27.257Z' fill='%23D8FDCF'/%3E%3C/svg%3E");}
	.special-categories__item-discount:after {background-image: url("data:image/svg+xml,%3Csvg width='181' height='81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 27.257c0-7.434 50.418 42.461 96.627 36.326C140.12 57.81 181-5 181 1v68.012C181 75.639 175.627 81 169 81H12C5.373 81 0 75.638 0 69.011V27.257Z' fill='%23FADCDF'/%3E%3C/svg%3E");}
}
/**************************************/
/*** Свайпер слайдер навигация ***/
/**************************************/
.swiper {overflow: hidden;position: relative;}
.swiper-slide {margin: 0;}
.swiper-button-next, .swiper-button-prev {color: var(--color-gray);background-color: var(--color-white);border: 0;border-radius: 100%;width: 32px;height: 32px;line-height: 32px;margin: 0;padding: 0;top: auto;left: auto;right: auto;position: relative;z-index: 5;opacity: 1;}
.swiper-button-prev + .swiper-button-next {margin-left: 8px}
.swiper-button-next:hover, .swiper-button-prev:hover {background-color: var(--color-white);color: var(--color-black);}
.swiper-button-next:after, .swiper-button-prev:after {font-size: 14px;font-family: 'icomoon';line-height: inherit;}
.swiper-button-next:after {content: '\e909'}
.swiper-button-prev:after {content: '\e908'}
.swiper-navigation {position: relative;}
.swiper-navigation-lock {display: none;}
.swiper-pagination-current {font-size: 18px;font-weight: bold;}
.swiper-pagination-bullet {padding: 4px;margin: 0 4px;}
.swiper-pagination-bullet-active {background-color: var(--color-primary);}
.swiper-progressbar.swiper-pagination-progressbar {margin-left: 8px;width: calc(100% - 80px - 64px);background-color: var(--color-lightgray);position: relative;}
.swiper-progressbar .swiper-pagination-progressbar-fill {background-color: var(--color-primary);}
.swiper-fraction {width: 48px;justify-content: flex-end;}
.swiper-button-disabled {opacity: 1;}
/**************************************/
/*** Навигация по страницам ***/
/**************************************/
.pages__item {margin: 0 2px;font-size: 14px;}
.pages__item.first, .pages__item.last {font-size: 12px;}
.pages__link {color: var(--color-gray);background-color: var(--color-lightgray);font-weight: 500;border-radius: 8px;width: 36px;height: 36px;display: flex;align-items: center;justify-content: center;}
.pages__link:hover {color: var(--color-secondary);background-color: var(--color-tertiary);font-weight: bold;}
.pages__link.is-actived {color: var(--color-black);font-weight: bold;background-color: var(--color-lightgray);cursor: default;pointer-events: none;}
.pages__ajax {display: none;}
/**************************************/
/*** Тулбар ***/
/**************************************/
.toolbar {margin-bottom: 24px;}
.toolbar__label {margin-bottom: 8px;display: none;}
.toolbar-bottom {margin-top: 24px;}
.toolbar select {height: 44px;}
.toolbar__sort-list {padding: 8px 0;border-bottom: 2px solid var(--color-lightgray);}
.toolbar__sort-item {color: var(--color-gray);font-size: 14px;font-weight: 500;margin-right: 24px;position: relative;}
.toolbar__sort-item:last-child {margin-right: 0;}
.toolbar__sort-item.is-actived, .toolbar__sort-item:hover {color: var(--color-black);}
.toolbar__sort-item:after {content: '';background-color: var(--color-secondary);opacity: 0;width: 0;height: 2px;bottom: -8px;left: 0;position: absolute;display: block;transition: all 0.3s ease;}
.toolbar__sort-item.is-actived:after, .toolbar__sort-item:hover:after {opacity: 1;width: 100%;}
@media all and (max-width: 1023px) {
	.toolbar__sort {width: 100%;order: 1;margin-bottom: 16px;white-space: nowrap;display: flex;flex-wrap: wrap;overflow-y: auto;}
}
/*** Показать по ***/
.toolbar__show {flex-grow: 1;justify-content: flex-end;color: var(--color-gray);}
.toolbar__show .toolbar__label {display: inline-block;margin: 0;}
.toolbar__show select {color: var(--color-gray);padding: 0 16px 0 12px;height: 16px;line-height: 1;width: auto;background-color: transparent;border: 0;font-weight: bold;}
.toolbar__show select:hover {background-color: transparent;}
.toolbar__show .selectBox:after {bottom: 0;right: 0;font-size: 12px;}
@media all and (max-width: 479px) {
	.toolbar__show .toolbar__label {display: none;}
}
/****************************************/
/*** Вид отображения Таблицей/Списком ***/
/****************************************/
.toolbar__view {flex-grow: 1;justify-content: flex-end;}
.view__icon {margin-left: 8px;padding: 14px;background-color: var(--color-lightgray);border-radius: 12px;}
.view__icon.is-actived, .view__icon:hover {color: var(--color-secondary);background-color: var(--color-tertiary);}
@media all and (max-width: 1023px) {
	.toolbar__view {order: 3;}
}
/****************************************/
/*** Сайдбар ***/
/****************************************/
.sidebar__block {margin-bottom: 48px;}
.sidebar__block:last-child {margin-bottom: 0;}
.sidebar__title {margin-bottom: 24px;font-size: 18px;font-weight: bold;position: relative;}
.sidebar__title i {margin-right: 8px;font-size: 20px;}
.sidebar__close {display: none;}
.sidebar__close i {margin: 0;}
.sidebar .catalog__sub {padding: 8px;background-color: var(--color-lightgray);border-radius: 12px;}
.sidebar .catalog__sub[data-level="1"] {margin-top: 8px;}
/* .sidebar .catalog__item.is-opened .catalog__link {padding-left: 0;background-color: var(--color-secondary);color: var(--color-white);justify-content: center;border-radius: 12px;} */
/* .sidebar .catalog__item[data-level="0"] {display: none;}
.sidebar .catalog__item[data-level="0"].is-opened {display: block;}
.sidebar .catalog__item[data-level="0"].is-opened .catalog__link[data-level="0"] {background-color: var(--color-secondary);color: var(--color-white);justify-content: center;border-radius: 12px;}
.sidebar .catalog__item[data-level="0"].is-opened .catalog__link[data-level="0"] .catalog__open {display: none;} */
@media all and (max-width: 1023px) {
	.sidebar__close {color: var(--color-gray); right: 16px;position: absolute;z-index: 2;display: block;}
	.sidebar__close i {width: 40px;height: 40px;font-size: 16px;color: rgba(255, 255, 255, 0.6);background-color: rgba(255, 255, 255, 0.2);border-radius: 12px;display: flex;align-items: center;justify-content: center;}
}
/****************************************/
/*** Фильтры ***/
/****************************************/
.toolbar__filters {margin-right: 16px;display: none;}
.filters__icon {color: var(--color-black);background-color: var(--color-lightgray);font-weight: bold;}
.filters__icon:hover {color: var(--color-secondary);background-color: var(--color-tertiary);}
.filters__icon i {font-size: 20px;}
.filters__result {margin-left: 8px;color: var(--color-white);background-color: var(--color-red);border-radius: 100%;width: 24px;height: 24px;line-height: 24px; font-size: 12px;font-weight: bold;transition: all 0.3s ease;}
.loading .filters__result {opacity: 0;}
.filters__clear {color: var(--color-gray);position: absolute;right: 0;font-size: 14px;display: none;}
.filters__clear i {font-size: 10px;margin-right: 0;}
.has-filters .filters__clear {display: flex;}
/*** Фильтры. Адаптивность ***/
@media all and (max-width: 1023px) {
	.toolbar__filters {display: inline-block;order: 2;}
	.sidebar__block-filters {width: 100%;max-width: 400px;position: fixed;top: 0;right: 0;margin: 0;z-index: 12;transform: translateX(100%);transition: all 0.5s ease-in-out;background-color: var(--color-bg);}
	.sidebar__block-filters.is-opened {transform: translateX(0);}
	.sidebar__block-filters .sidebar__content {padding: 16px;height: calc(100vh - 56px);overflow-y: auto;}
	.sidebar__block-filters .sidebar__content::-webkit-scrollbar {width: 4px;}
	.sidebar__block-filters .sidebar__title {color: var(--color-white);background-color: var(--color-primary);margin: 0;padding: 18px;}
	.filters__clear {right: 72px;color: rgba(255, 255, 255, 0.6);}
	.filters__clear:hover {color: var(--color-white);}
}
@media all and (max-width: 479px) {
	.filters__icon {padding: 0 1rem;}
}
/*** Сайдбар. Фильтры ***/
.filter__search {display: none;}
.filter__items {max-height: 160px;overflow-y: auto;}
.filter__items::-webkit-scrollbar {width: 4px;height: 0;border-radius: 10px;}
.filter__name {padding-right: 24px;font-size: 18px;font-weight: bold;}
.filter__clear {display: none;text-decoration: underline;}
.filter__clear:hover {cursor: pointer;text-decoration: none;}
.filter__list.has-filters .filter__clear {display: block;}
.filter__list {margin-top: 12px;padding: 16px;background-color: var(--color-lightgray);border-radius: 12px;}
.filter__item {margin-top: 12px;overflow: hidden;}
.filter__item.checked {color: var(--color-primary);}
.filter__item label {padding: 0 0 0 16px;width: calc(100% - 20px);line-height: 18px;}
.filter__item label span + span {color: var(--color-gray);font-size: 14px;font-weight: 500;margin-left: 4px;}
.filter__list.is-actived .filter__title i:before {content: '\e90a';}
.filters__buttons {margin-top: 16px;text-align: center;display: none;}
.filters__button {width: 100%;padding: 0;justify-content: center;}
.has-filters .filters__buttons {display: block;}
.filter__title {position: relative;}
.filter__title i {position: absolute;right: 0;top: 4px;font-size: 12px;color: var(--color-gray);}
.filter__title.is-actived i:before {content: '\e90a';}
.filter__content {margin-top: 16px;display: none;}
.filter__list.is-actived .filter__content {display: block;}
/*** Сайдбар. Фильтры цены ***/
.filters-price {margin: 0;}
.filters-price #goods-filter-price-slider {margin-top: 16px;height: 20px;border-radius: 20px;background: #F4DEE0;width: 100%;position: relative;border: 0;cursor: pointer;}
.filters-price .ui-slider-horizontal .ui-slider-handle {top: 4px;margin-left: 4px;}
.filters-price .ui-slider-handle {background: var(--color-white);border-radius: 100%;width: 12px;height: 12px;margin: 0;outline: 0;position: absolute;z-index: 2;}
.filters-price .ui-slider-handle:last-child {left: auto;right: 0;margin-left: -16px;}
.filters-price .ui-slider-handle.ui-state-hover, .filters-price .ui-slider-handle.ui-state-focus {background: var(--color-white);cursor: pointer;}
.filters-price .ui-slider .ui-slider-range {background: var(--color-red);height: 20px;border-radius: 20px;position: absolute;top: 0;cursor: pointer;}
.goodsFilterPriceRangePointers input {background-color: var(--color-white); width: calc(50% - 8px);height: 40px;padding: 0 16px;text-align: left;}
.goodsFilterPriceSubmit {display: none;margin-top: 16px;}
.goodsFilterPriceSubmit .button-link {color: var(--color-gray);align-items: baseline;}
.goodsFilterPriceSubmit .button-link:hover {color: var(--color-primary);}
.filters-price.has-filters .goodsFilterPriceSubmit {display: flex;}
.filters__results {background-color: var(--color-lightgray);border-radius: 8px;font-weight: bold;margin-bottom: 16px;padding: 14px 0;text-align: center;display: none;}
.has-filters .filters__results {display: block;}
/****************************************/
/*** Сайдбар. Каталог ***/
/****************************************/
.sidebar__block-catalog .sidebar__title i {width: 36px;height: 36px;line-height: 36px;border-radius: 10px;font-size: 12px;background-color: var(--color-lightgray);text-align: center;}
.catalog__sub {display: none;padding: 0 0 0 16px;margin: 0;list-style: none;}
.is-opened > .catalog__sub {display: block;}
.catalog__open {padding: 0 8px;position: absolute;right: 8px;}
.catalog__open:before {content: '\e909';font-family: 'icomoon';display: block;font-size: 10px;}
.catalog__open.is-opened:before, .is-opened > .catalog__link > .catalog__open:before {content: '\e907';}
.catalog__link {margin: 1px 0;padding: 8px 12px;line-height: 20px;position: relative;}
.catalog__link:hover, .catalog__link.is-opened {padding-left: 16px;color: var(--color-secondary);background: var(--color-tertiary);border-radius: 12px;}
.catalog__link.is-opened {font-weight: bold;}
@media all and (max-width: 1023px) {
	.sidebar__block-catalog {display: none;}
}
/**************************************/
/*** Карточка товара ***/
/**************************************/
.productView .modal__title {display: none;}
.productView__margin {margin-top: 16px;}
/* Товар. Основное ображения */
.productView__images {width: 378px;position: relative;}
.productView__image {max-height: 378px;border-radius: 12px;overflow: hidden;position: relative;}
.productView__image.loading {height: 378px;background-color: var(--color-lightgray);}
.productView__sticker {position: absolute;left: 16px;bottom: 40px;z-index: 2;}
.productView__ratings {position: absolute;right: 16px;bottom: 40px;background: var(--color-white);font-size: 14px;font-weight: bold;padding: 4px 16px;border-radius: 12px 12px 0 0;line-height: 16px;text-align: center;text-transform: lowercase;z-index: 2;}
.productView__ratings i {color: var(--color-yellow);margin-right: 4px;}
/* Товар. Дополнительные изображения */
.productView__images .swiper-wrapper {padding-bottom: 40px;}
.productView__images .swiper-navigate {position: absolute;width: 100%;bottom: -8px;text-align: center;justify-content: center;}
.productView__images .swiper-button-prev, .productView__images .swiper-button-next {position: relative;background-color: transparent;}
.productView__images .swiper-pagination {position: relative;margin: 0 8px;white-space: nowrap;width: 84px;}
.productView__images .swiper-pagination-bullet {width: 20px;height: 4px;border-radius: 4px;opacity: 1;background-color: var(--color-gray);padding: 0;transform: none;}
.productView__images .swiper-pagination-bullet-active {background-color: var(--color-secondary)}
/* Товар. Основная информация */
.productView__shop {width: calc(100% - 378px);padding-left: 32px;}
.productView__articles {color: var(--color-gray);font-size: 14px;}
.productView__available {font-size: 14px;}
.productView__text {line-height: 1.5;overflow: hidden;margin-bottom: 16px;font-size: 14px;}
.productView__text-content.mask {max-height: 120px;}
.productView__text-more {margin-top: 16px;}
.productView__name {font-size: 28px;line-height: 1.25;max-height: 140px;overflow: hidden;}
.productView__form {background-color: transparent;border: 0;padding: 0;box-shadow: none;}
.productView__form:hover {box-shadow: none;}
.productView__description h4 {margin-bottom: 12px;}
.productView__description-content.mask {max-height: 120px;}
.productView__description-more {margin-top: 16px;}
.productView__description + .productView__opinion {margin-top: 32px;}
.productView__price {margin-right: 32px;}
.productView__price .price__now {font-size: 24px;}
.productView__price .price__old {font-size: 16px;display: block;margin-bottom: 4px;}
.productView__qty {width: 180px;}
.productView__qty .qty {justify-content: center;}
.productView__qty .qty__input {width: 64px;}
/* Товар. Акция */
.productView__campaign {max-width: calc(100% - 56px);color: var(--color-red);background: #FFE5E8;border-radius: 12px;padding: 16px;position: relative;}
.productView__campaign-icon {font-size: 32px;z-index: 2;}
.productView__campaign-discount {position: absolute;right: -56px;padding: 18px;font-size: 18px;font-weight: bold;z-index: 2;}
.productView__campaign-discount:after {font-size: 48px;}
.productView__campaign-content {padding: 0 16px;z-index: 2;}
.productView__campaign-name {font-size: 18px;font-weight: 800;margin-bottom: 8px;}
.productView__campaign-date {font-size: 14px;font-weight: 700;}
.productView__campaign-counter {text-transform: none;}
.productView__campaign:before {content: '';border-radius: 12px;position: absolute;top: 0;right: 0;width: 100%;height: 100%;background-position: bottom;background-size: 100% 40px;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='181' height='76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 37.814C0-2.873 50-14.83 81.5 22.773 113 60.375 181 33.843 181 19.765v44.258C181 70.651 175.627 76 169 76H12C5.373 76 0 70.704 0 64.076V37.814Z' fill='%23FCCFD3'/%3E%3C/svg%3E");}
.productView__campaign:after {content: '';border-radius: 12px;position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom;background-size: 100% 32px;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='181' height='81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 27.257c0-7.434 50.418 42.461 96.627 36.326C140.12 57.81 181-5 181 1v68.012C181 75.639 175.627 81 169 81H12C5.373 81 0 75.638 0 69.011V27.257Z' fill='%23FADCDF'/%3E%3C/svg%3E");}
.counter__label {margin-right: 8px;}
/* Товар. Модификации */
.modifications-props__selectBox {margin: 16px 16px 0 16px;}
.modifications-props__name {margin-bottom: 8px;display: block;}
.modifications-values {display: none !important;}
.modifications-values__name {margin: 16px 16px 0 16px;}
.modifications__value {margin: 16px 16px 0 16px;}
.modifications__description {margin-top: 16px;display: none;}
/* Товар. В корзину */
.productView__addtoCart {gap: 16px;margin-top: 16px;}
.productView__add {width: 100%;font-weight: 700;gap: 8px;padding: 0 24px;}
.productView__add i {font-size: 20px;}
.productView .productView__addtoCart .button-link {display: none;}
/* Товар. В избранное, сравнение */
.productView__links {flex-grow: 1;justify-content: flex-end;}
.productView__link {color: var(--color-gray);font-size: 14px;font-weight: 500;}
.productView__link:hover, .productView__link.added {color: var(--color-secondary);}
.productView__link + .productView__link {margin-left: 32px;}
.productView__link i {font-size: 16px;vertical-align: middle;}
.productView__link span {margin-left: 8px;vertical-align: middle;}
/* Товар. Нет в наличии */
.productView__empty .productView__qty {display: none;}
.productView__empty .add-cart {display: none;}
.productView__empty .add-notify {display: inline-block;}
@media all and (min-width: 480px) {
	.productView__available {margin-right: 24px;}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.thumblist__image {width: 122px;height: 122px;}
}
@media all and (max-width: 1199px) {
	.productView__images {width: 320px;}
	.productView__image {height: 320px;}
	.productView__shop {width: calc(100% - 320px);padding-left: 16px;}
}
@media all and (max-width: 1023px) {
	.productView__images {width: 100%;}
	.productView__shop {width: 100%;padding: 32px 0 0 0;}
	.productView__addtoCart {justify-content: space-between;}
	.productView__add {width: calc(50% - 8px);}
}
@media all and (max-width: 639px) {
	.productView__link span {display: none;}
	.productView__link + .productView__link {margin-left: 16px;}
	.productView__inner {position: relative;}
}
@media all and (max-width: 479px) {
	.productView__image {height: 288px;}
	.productView__addtoCart .add-cart {width: 100%;margin-right: 0;}
	.productView__available {width: 100%;}
	.productView__articles {width: 100%;}
	.productView__links {position: absolute;right: 0;top: 0;}
	.productView__price {margin-right: 16px;}
	.productView__qty {width: 160px;}
	.productView__campaign-icon {display: none;}
	.counter__label {width: 100%;margin: 0 0 4px 0;}
	.productView__campaign-content {padding: 0;}
}
/* Товар. Табы */
.productView__tabs {margin-top: 24px;}
.tabs__nav {font-size: 20px;margin: 0 32px 16px 0;}
.tabs__nav.is-actived {cursor: default;}
.tabs__content {margin-top: 16px;}
[data-tab-content] {display: none;}
[data-tab-content].is-show {display: block;}
@media all and (min-width: 1024px) {
	.productView__left {width: 50%;padding-right: 16px;}
	.productView__right {width: 50%;padding: 16px;background-color: var(--color-white);border-radius: 12px;}
}
@media all and (max-width: 1023px) {
	.productView__left {width: 100%;}
	.productView__right {width: 100%;}
}
/* Товар. Характеристики */
.productView__features {margin-top: 24px;}
.features__items {margin-top: 8px;}
.features__item {margin-top: 8px;line-height: 1.25;}
.features__item:nth-child(n+5) {display: none;}
.features__items.is-show .features__item:nth-child(n) {display: block;}
.features__name {color: var(--color-gray);font-weight: bold;margin-right: 8px;display: inline;}
.features__value {display: inline;}
.features__more {margin-top: 12px;display: none;}
/* Товар. Доставка */
.goods-delivery__item {margin-top: 16px;}
.goods-delivery__item:first-child {margin-top: 12px;}
.goods-delivery__title {font-weight: 700;position: relative;cursor: pointer;}
.goods-delivery__title i {font-size: 12px;}
.goods-delivery__title.is-actived i:before {content: '\e90a';}
.goods-delivery__content {font-size: 14px;margin-top: 12px;padding-left: 32px;display: none;}
.goods-delivery__desc {margin-bottom: 16px;}
.goods-delivery__price {margin-left: 4px;color: var(--color-secondary);}
.goods-delivery__zone {margin-top: 16px;}
.goods-delivery__zone-name {font-weight: bold;}
.goods-delivery__sublabel {margin: 12px 0;}
.goods-delivery__index {color: var(--color-secondary);font-weight: bold;font-size: 14px;width: 24px;height: 24px;background-color: var(--color-tertiary);border-radius: 100%;}
.goods-delivery__name {max-width: calc(100% - 24px);padding: 0 8px;}
.order-delivery__items {display: none;}
.order-delivery__item:nth-child(n+2) {margin-top: 24px;}
.order-delivery__title {margin-bottom: 12px;font-weight: bold;}
.order-delivery__radio {margin-right: 12px;}
.order-delivery__desc:not(:empty) {margin-top: 16px;}
.order-delivery-zone__list {margin-top: 16px;}
.order-delivery-zone__item {margin-top: 12px;}
.order-delivery-zone__name {padding: 0 12px;}
.order-delivery-zone__price {font-weight: bold;}
/* Товар. Добавить Отзыв */
.opinion__container {width: calc(50% - 16px);margin-right: 24px;flex-grow: 1;}
.opinion__addForm {width: calc(50% - 24px);margin: 0;flex-grow: 1;position: sticky;position: -webkit-sticky;top: 0;background-color: var(--color-white);border-radius: 12px;padding: 20px;}
.opinion__form {margin-top: 8px;}
.opinion__block {margin-bottom: 16px;}
.opinion__block:last-child {margin-bottom: 0;}
.opinion__block label {margin-bottom: 8px;display: none;}
.opinion__label {margin-right: 8px;}
.opinion__button {line-height: 48px;}
.opinion__ratings {font-size: 16px;}
.goodsOpinionRating.loading {height: 24px;}
/* Положительный/Отрицательный отзыв */
.generally input {display: none;}
.generally label {display: block;color: var(--color-gray);margin: 0;cursor: pointer;}
.generally input:checked + label, .generally label:hover {color: var(--color-secondary);cursor: pointer;}
.generally i {font-size: 24px;margin: 0 8px;}
.generally label:hover i.icon-thumb_up  {color: var(--color-secondary);}
.generally label:hover i.icon-thumb_down {color: var(--color-red);}
.generally input:checked + label i.icon-thumb_up  {color: var(--color-secondary);}
.generally input:checked + label i.icon-thumb_down {color: var(--color-red);}
/* Капча */
.opinion__captcha {position: relative;}
.captcha__image {position: absolute;right: 0;bottom: 0;border-radius: 0 12px 12px 0;width: 76px;height: 56px;}
.IE .captcha__image img {width: 60px;}
.captcha__refresh {position: absolute;right: 82px;bottom: 14px;font-size: 20px;}
.captcha__input {width: 100%;}
@media all and (min-width: 479px) {
	.opinion__block .form__pp {margin: 0 0 0 16px;}
	.opinion__block .form__pp [data-fancybox] {display: block;}
}
@media all and (max-width: 1023px) {
	.opinion__container {width: 100%;}
	.opinion__addForm {width: 100%;margin: 32px 0 0 0;}
}
@media all and (max-width: 479px) {
	.opinion__button {width: 100%;}
}
/* Товар. Навигация Отзывов */
.opinion__navs {margin-bottom: 16px;}
.opinion__nav {font-size: 18px;padding: 16px;background-color: var(--color-white);border-radius: 12px;flex-grow: 1;margin-right: 8px;text-align: center;}
.opinion__nav:last-child {margin-right: 0;}
.opinion__nav.is-actived {color: var(--color-primary);}
/* Товар. Отзыв */
.opinion__item {margin-bottom: 20px;padding: 16px;background-color: var(--color-white);border-radius: 12px;position: relative;}
.opinion__item:nth-child(n+4) {display: none;}
.opinion__item.is-show {display: block;}
.opinion__item.is-hide {display: none;}
.opinion__items.is-show .opinion__item:nth-child(n) {display: block;}
.opinion__text {margin-top: 12px;}
.opinion__text label {margin-bottom: 8px;display: none;}
.opinion__text p {margin: 0;}
.opinion__date {position: absolute;top: 16px;right: 16px;color: var(--color-gray);font-size: 14px;font-weight: 500;}
.opinion__name {font-weight: bold;}
.opinion__ratings {margin-top: 12px;}
.opinion__answer {margin-top: 12px;padding: 16px;background-color: var(--color-lightgray);border-radius: 12px;}
.opinion__answer label {margin-bottom: 8px;display: block;font-weight: bold;}
.opinion__delete {margin-top: 12px;width: 100%;}
.opinion__pages {margin-top: 12px;}
.opinion__avatar {width: 60px;height: 60px;font-size: 28px;font-weight: bold;color: var(--color-white);background-color: var(--color-gray);border-radius: 100%;text-transform: uppercase;}
.opinion__content {width: calc(100% - 60px);padding-left: 16px;}
/* Товар. Средняя Оценка Отзыва */
.opinion__score {margin-bottom: 24px;justify-content: space-between;}
.opinion__score-block {width: calc(25% - 16px); background-color: var(--color-white);border-radius: 12px;padding: 24px;font-size: 40px;font-weight: bold;}
.opinion__score-block i {margin-right: 16px;}
.opinion__score-block:nth-child(1) i {color: var(--color-yellow);}
.opinion__score-block:nth-child(2) i {color: var(--color-secondary);}
.opinion__score-label {color: var(--color-gray);font-size: 16px;font-weight: 500;margin-top: 8px;width: 100%;}
.opinion__total {width: calc(50% - 16px);color: var(--color-gray);font-size: 16px;font-weight: 500;}
.opinion__total-block + .opinion__total-block {margin-top: 20px;}
.opinion__total-label {text-decoration: underline;flex-grow: 1;cursor: pointer;}
.opinion__total-bar {width: 160px;height: 20px;line-height: 20px;background-color: var(--color-lightgray);border-radius: 20px;}
.opinion__total-count {color: var(--color-white);font-size: 14px;padding: 0 16px;background-color: var(--color-yellow);border-radius: 20px;display: inline-block;}
.opinion__total-ratings {margin-right: 20px;}
.opinion__nav span + span {margin-left: 4px;}
@media all and (min-width: 1024px) and (max-width: 1199px) {
	.opinion__total {padding: 14px 24px;}
}
@media all and (max-width: 1199px) {
	.opinion__total-label {width: 80px;}
}
@media all and (max-width: 1023px) {
	.opinion__score-block {width: calc(50% - 8px);}
	.opinion__total {width: 100%;margin-top: 16px;}
	.opinion__total-label {width: 180px;flex-grow: 0;}
	.opinion__total-bar {width: calc(100% - 180px - 140px - 20px);}
}
@media all and (max-width: 479px) {
	.opinion__score-block {font-size: 30px;padding: 10px;}
	.opinion__total {padding: 16px;}
	.opinion__total-label {width: 100%;margin-bottom: 8px;font-size: 14px;}
	.opinion__total-ratings {margin-right: 16px;}
	.opinion__total-bar {width: calc(100% - 140px - 16px);}
	.opinion__nav span + span {display: none;}
}
@media all and (max-width: 374px) {
	.opinion__nav {font-size: 16px;padding: 12px 4px;}
	.opinion__score-label {font-size: 14px;}
}
/* Нет отзыва */
.opinion__empty {margin-bottom: 20px;padding: 20px 24px;background-color: var(--color-white);border-radius: 12px;position: relative;}
.opinion__empty-icon {font-size: 40px;color: var(--color-gray);}
.opinion__empty-content {width: calc(100% - 40px - 260px);padding: 0 48px 0 24px;line-height: 1.5;}
.opinion__empty-title {font-weight: bold;margin-bottom: 8px;}
.opinion__empty-buttons {flex-grow: 1;}
.opinion__empty-button {width: 100%;}
@media all and (max-width: 767px) {
	.opinion__empty-content {width: calc(100% - 40px);padding: 0 24px;}
	.opinion__empty-buttons {margin: 16px 0 0 60px;max-width: 260px;}
}
@media all and (max-width: 479px) {
	.opinion__empty-buttons {max-width: 100%;margin: 16px 0 0 0;}
	.opinion__empty-icon {position: absolute;top: 24px;left: 24px;}
	.opinion__empty-content {width: 100%;padding: 0;}
	.opinion__empty-title {padding-left: 60px;}
}
/**************************************/
/*** След. Пред. товар в категории ***/
/**************************************/
.neighbor {margin-top: 16px;}
.neighbor__item {margin: 16px 16px 0 0;}
.neighbor__item span {margin: 0 8px;}
/**************************************/
/*** Сопутствующие товары ***/
/**************************************/
.related {margin-top: 48px;}
.related .swiper-slide {padding: 12px 4px 0 0;}
.related .product__img {height: 268px;}
.related .block__title {margin-bottom: 16px;}
.related .product__form:hover {box-shadow: none;}
@media all and (max-width: 1199px) {
	.related .product__img {height: 216px;}
}
@media all and (max-width: 1023px) {
	.related .product__img {height: 224px;}
}
@media all and (max-width: 767px) {
	.related .product__img {height: 286px;}
}
@media all and (max-width: 639px) {
	.related .product__img {height: 206px;}
}
@media all and (max-width: 479px) {
	.related .product__img {height: 338px;}
}
@media all and (max-width: 374px) {
	.related .product__img {height: 282px;}
}
/**************************************/
/*** Быстрый просмотр ***/
/**************************************/
.fancybox-content .productView__links {display: none;}
.fancybox-content .thumblist {display: none;}
.fancybox-content .productView__features {display: none;}
.fancybox-content .add-cart.quick {display: none;}
.fancybox-content .productView__campaign {display: none;}
/* .fancybox-content .productView__price {margin-right: 32px;}
.fancybox-content .neighbor {display: none;} */
/**************************************/
/*** Выбор модификации ***/
/**************************************/
.fancybox-container .fancybox-content.productViewMod {max-width: 480px;width: 100%;}
.productViewMod .productView__images {display: none;}
.productViewMod .productView__shop {padding: 24px;width: 100%;}
.productViewMod .productView__right {display: none;}
.productViewMod .productView__left {width: 100%;padding-right: 0;}
.productViewMod .productView__name {font-size: 22px;}
.productViewMod .productView__price {margin-right: 16px;}
.productViewMod .productView__articles {display: none !important;}
.productViewMod .productView__available {display: none;}
.productViewMod .productView__add {width: auto;flex-grow: 1;}
.productViewMod .button-link {margin: 16px 0 0 16px;}
.productViewMod .modal__title {display: block;width: 100%;}
/* .productViewMod .productView__inner.justify-between {display: none;}
.productViewMod .productView__campaign {display: none;}
.productViewMod .productView__price {margin-right: 0;}
.productViewMod .productView__addtoCart .add-cart {margin-right: 0;}
.productViewMod .add-cart i {display: none;}
.productViewMod .button-link {padding: 0 0 0 32px;} */
/**************************************/
/*** Список Акций ***/
/**************************************/
.IE .promotion__grid {margin: -16px -8px 0 -8px;display: -ms-flexbox;display: -webkit-flex;display: flex;-ms-flex-wrap: wrap;-webkit-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: stretch;-webkit-align-items: stretch;-webkit-box-align: stretch;align-items: stretch;}
.IE .promotion__item {width: calc(33.333333% - 16px);margin: 16px 8px 0 8px;}
.IE .promotion__desc {width: 100%;}
.promotion__grid {grid-template-columns: repeat(3, 1fr);grid-gap: 16px;display: grid;}
.promotion__item {padding: 20px;background-color: #FFE5E8;border-radius: 12px;overflow: hidden;position: relative;}
.promotion__item:before {content: '';position: absolute;top: 0;right: 0;width: 100%;height: 100%;background-position: top right; background-size: 75% auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='294' height='102' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.018 2.124C-.192.422 1.598 0 3.687 0H281c6.627 0 12 5.49 12 12.118V102C300-11.5 212 6 129.5 35.5 58.512 60.884 8.995 13.338 1.018 2.124Z' fill='%23FCCFD3'/%3E%3C/svg%3E");}
.promotion__item:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom left;background-size: 100% 75%;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='476' height='248' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.108 142.746c0-.96-.114-1.898-.108-2.859.047-7.463 7.544-44.773 137.077-118.812C283.044-62.358 264.548 127.274 298.54 150.818c26.887 18.622 122.266-13.213 160.965-27.336 7.967-2.907 16.495 2.984 16.495 11.465V236c0 6.627-5.373 12-12 12H12.108c-6.627 0-12-5.373-12-12v-93.254Z' fill='%23FADCDF'/%3E%3C/svg%3E");}
.promotion__empty:before {background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='294' height='102' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.018 2.124C-.192.422 1.598 0 3.687 0H281c6.627 0 12 5.49 12 12.118V102C300-11.5 212 6 129.5 35.5 58.512 60.884 8.995 13.338 1.018 2.124Z' fill='%23E8E8E8'/%3E%3C/svg%3E");}
.promotion__empty:after {background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='476' height='248' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.108 142.746c0-.96-.114-1.898-.108-2.859.047-7.463 7.544-44.773 137.077-118.812C283.044-62.358 264.548 127.274 298.54 150.818c26.887 18.622 122.266-13.213 160.965-27.336 7.967-2.907 16.495 2.984 16.495 11.465V236c0 6.627-5.373 12-12 12H12.108c-6.627 0-12-5.373-12-12v-93.254Z' fill='%23ECECEC'/%3E%3C/svg%3E");}
.promotion__form {height: 100%;flex-direction: column;justify-content: space-between;align-items: flex-start;position: relative;z-index: 2;}
.promotion__percentage {position: absolute;top: 0;right: 0;font-size: 18px;font-weight: bold;padding: 20px 20px 12px 20px;}
.promotion__percentage:after {font-size: 48px;}
.promotion__percentage:hover {color: var(--color-white);}
.promotion__margin {margin-bottom: 16px;}
.promotion__name {color: var(--color-red);padding-right: 90px;font-size: 22px;font-weight: 800;}
.promotion__desc {margin-top: 16px;max-height: 60px;line-height: 20px;overflow: hidden;flex-grow: 1;width: 100%;}
.promotion__desc span {display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.promotion__buttons {margin-top: 16px;}
.promotion__button {color: var(--color-red);opacity: .6;}
.promotion__button:hover {opacity: 1;}
.promotion__counter {display: none;}
.promotion__date-expired {display: none;}
.promotion__empty {color: var(--color-gray);background-color: var(--color-lightgray);}
.promotion__empty .promotion__date-expired {display: block;}
.promotion__empty .promotion__date-time {display: none;}
.promotion__empty .promotion__name {color: var(--color-gray);}
.promotion__empty .promotion__desc {color: var(--color-gray);}
.promotion__empty .promotion__button {color: var(--color-gray);}
.promotion__empty .promotion__percentage:after {color: var(--color-gray);}
@media all and (max-width: 1199px) {
	.promotion__percentage {top: 12px;right: 12px;}
}
@media all and (max-width: 1023px) {
	.promotion__grid {grid-template-columns: repeat(2, 1fr);}
}
@media all and (max-width: 639px) {
	.promotion__percentage {top: 8px;right: 8px;padding: 14px 12px 8px 12px;}
	.promotion__percentage:after {font-size: 40px;}
	.promotion__item {padding: 12px;}
}
@media all and (max-width: 479px) {
	.promotion__grid {grid-template-columns: repeat(1, 1fr);}
}
/** Просмотр Акции **/
.promotion__container {margin: 32px 0;}
.promotion__content {margin-bottom: 16px;}
.promotion__content strong {margin: 0 4px;}
.promotion__text {margin-top: 16px;line-height: 1.25;}
.promotion__date-expired {color: var(--color-gray);}
/**************************************/
/*** Корзина ***/
/**************************************/
.mod-cart .cart {display: none;}
.mod-cart #pdt__viewed {display: none;}
.cartTable__item {margin-top: 16px;background-color: var(--color-white);border: 1px solid var(--color-lightgray);border-radius: 16px; transition: all 0.3s ease;position: relative;}
.cartTable__item:first-child {margin-top: 0;}
.cartTable__item:hover {border-color: var(--color-secondary);box-shadow: 0px 16px 32px 0px var(--color-shadow);}
.cartTable__image {width: 120px;height: 120px;border-radius: 16px 0 0 16px;overflow: hidden;}
.cartTable__content {width: calc(100% - 120px);padding: 16px;}
.cartTable__info {width: calc(100% - 180px - 128px - 32px);padding-right: 16px;flex-grow: 1;}
.cartTable__name {line-height: 1.25;display: block;overflow: hidden;}
.cartTable__name span {display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.is-started .cartTable__qty {display: none;}
.cartTable__qty {position: relative;}
.cartTable__qty-price {color: var(--color-gray);font-size: 14px;font-weight: 500;margin-top: 8px;text-align: center;position: absolute;width: 100%;}
.cartTable__price {width: 180px;padding: 0 8px;text-align: center;}
.cartTable__price .price__now {color: var(--color-black);}
.cartTable__price .price__old {display: none;}
.is-started .cartTable__price-qty {display: inline-block;}
.cartTable__price-qty {color: var(--color-gray);font-size: 14px;font-weight: 500;display: none;}
.cartTable__price-qty::before {content: '/';margin: 0 2px 0 4px;display: inline;}
.cartTable__art {margin-top: 8px;display: none;}
.cartTable__prop {margin-top: 8px;color: var(--color-gray);font-size: 14px;display: inline;}
.cartTable__prop label {margin-right: 8px;display: none;}
.cartTable__prop span {font-weight: 600;}
.cartTable__remove {color: var(--color-gray);background-color: var(--color-lightgray);border-radius: 100%; width: 32px;height: 32px;line-height: 30px;}
.cartTable__remove:hover {color: var(--color-secondary);background-color: var(--color-tertiary);}
.cartTable__remove i {font-size: 12px;line-height: 1;}
.cartTable__remove span {display: none;}
.cartTable__buttons {margin-bottom: 16px;}
.cartTable__count {font-size: 18px;font-weight: bold;}
.cartTable__recalc {display: none;}
/*** Корзина. Итоговый блок ***/
.cartTable {width: calc(100% - 378px);padding-right: 32px;}
.cartTotal {width: 378px;position: sticky;top: 96px;padding: 20px 16px;background-color: var(--color-lightgray);border-radius: 12px;}
.cartTotal__item {margin-bottom: 8px;}
.cartTotal__item:last-child {margin-bottom: 0;}
.cartTotal__item-discount .cartTotal__price {color: var(--color-red);}
.cartTotal__item-total {padding-bottom: 16px;margin-bottom: 16px;font-size: 30px;font-weight: bold;position: relative;}
.cartTotal__item-total:after {content: '';position: absolute;bottom: 0;width: 100%;height: 2px;border-radius: 4px;border: none;background: linear-gradient(to right, transparent 75%, var(--color-lightgray) 25%), linear-gradient(to right, #DED6CF, #DED6CF);background-size: 32px 2px, 100% 4px;}
.cartTotal__title {font-size: 18px;font-weight: bold;max-width: 100px;}
.cartTotal__label {max-width: 60%;}
.cartTotal__price {font-weight: bold;}
.cartTotal__buttons {margin-top: 16px;}
.cartTotal__buttons [class*="button-"] {line-height: 48px;width: 100%;text-align: center;}
.cartTotal__buttons .form__pp {text-align: center;font-size: 12px;display: none;}
.is-started .form__pp {margin-top: 0;display: block;}
.cartTotal__min {padding-bottom: 16px;margin-bottom: 16px;position: relative;}
.cartTotal__min-icon {color: var(--color-gray);font-size: 20px;}
.cartTotal__min-price {margin: 0 12px;font-size: 16px;font-weight: 700;}
.cartTotal__min-status {width: 100%;color: var(--color-gray);font-size: 14px;font-weight: bold;}
.cartTotal__min-bg {margin: 10px 0;width: 100%;height: 8px;background-color: var(--color-white);border-radius: 12px;position: relative;}
.cartTotal__min-bg:after {content: '\e906';font-family: 'icomoon';font-size: 8px;color: var(--color-white);background-color: var(--color-gray);border-radius: 100%;width: 20px;height: 20px;line-height: 22px;top: -6px;right: 0;position: absolute;text-align: center;}
.cartTotal__min-bar {width: 20%;height: 100%;background-color: var(--color-secondary);border-radius: 12px;position: absolute;left: 0;top: 0;}
.cartTotal__min:after {content: '';position: absolute;bottom: 0;width: 100%;height: 2px;border-radius: 2px;border: none;background: linear-gradient(to right, transparent 75%, var(--color-lightgray) 25%), linear-gradient(to right, #DED6CF, #DED6CF);background-size: 32px 2px, 100% 4px;}
.order_fast__content .cartTotal__min-bg {background-color: var(--color-lightgray);}
/*** Корзина. Начало оформления заказа ***/
.cartTable__ajax .total__buttons {display: none;}
.confirmOrder {display: none;}
.closeOrder {display: none;}
.is-started .confirmOrder {display: inline-block;pointer-events: all;}
.is-started .closeOrder {display: inline-block;}
.is-started .startOrder {display: none;}
.is-started .cartTable__remove {display: none;}
.is-started .cartTable__buttons {display: none;}
.is-started .cartTable__qty:before {content: '';width: 100%;height: 100%;z-index: 2;position: absolute;display: block;}
.is-started .cartTable__item {margin-top: 8px;}
.is-started .cartTable__image {width: 80px;height: 80px;}
.is-started .cartTable__content {width: calc(100% - 80px);padding: 8px;}
.is-started .cartTable__form {padding: 16px;background-color: var(--color-white);border-radius: 12px;}
.cartTable__title {display: none;}
.is-started .cartTable__title {font-size: 18px;font-weight: 800;padding: 8px;cursor: pointer;display: flex;}
.is-started .cartTable__item:hover {border-color: var(--color-lightgray);box-shadow: none;}
.is-started .cartTable__title.is-actived i:before {content: '\e90a'}
.cartTable__change {display: none;}
.is-started .cartTable__change {margin-top: 16px;display: block;}
@media all and (max-width: 1199px) {
	.cartTable {width: calc(100% - 320px);}
	.cartTotal {width: 320px;}
	.cartTable__price {width: 160px;}
}
@media all and (max-width: 1023px) {
	.cartTable {width: 100%;padding: 0 0 32px 0;}
	.cartTotal {width: 100%;position: relative;top: auto;}
}
@media all and (max-width: 767px) {
	.cartTable__info {width: 100%;padding: 0 0 16px 0;}
	.cartTable__actions {width: calc(100% - 32px);}
	.cartTable__prop {display: none;}
	.cartTable__qty {display: flex;flex-wrap: wrap;align-items: center;}
	.cartTable__qty-price {margin: 0 0 0 16px;position: relative;width: auto;}
	.cartTable__price {flex-grow: 1;}
}
@media all and (max-width: 639px) {
	.cartTable__content {padding: 8px;}
	.cartTable__qty-price {display: none;}
	.cartTable__price {width: 148px;}
}
@media all and (max-width: 479px) {
	.cartTable__item {align-items: flex-start;}
	.cartTable__image {width: 90px;height: 90px;border-radius: 16px 0 0 0;}
	.cartTable__content {width: calc(100% - 90px);}
	.cartTable__info {padding-bottom: 8px;}
	.cartTable__qty {order: 2;}
	.cartTable__price {order: 1;width: 100%;text-align: left;margin-bottom: 8px;padding: 0;}
	.cartTable__remove {position: absolute;right: 8px;bottom: 12px;}
}
/**************************************/
/*** Быстрый заказ ***/
/**************************************/
.order_fast__content {max-width: 800px;padding: 0 24px 24px 24px;}
.cartTable__order {margin-top: 16px;}
.cartTable__order .form__registration {margin: 0 8px;}
.cartTable__order .form__label {display: none;}
.order_fast__form [order] {margin-top: 16px;padding: 16px;width: 100%;background-color: var(--color-white);border-radius: 12px;overflow: hidden;}
.order_fast__form [order]:first-child {margin-top: 0;}
.order_fast__form label.error {display: none !important;}
.order_fast__form select {height: 56px;border-radius: 12px;}
.order_fast__form .selectBox:after {font-size: 12px;bottom: 20px;}
.order_fast__form .row {margin: 0 -8px;}
.order_fast__form .form__field {margin: 0 8px;width: calc(100% - 16px);flex-grow: 1;}
.order_fast__form .form__pass {margin: 16px 8px 0 8px;}
.order_fast__form .form__registration {margin: 0 8px;} 
.order_fast__form .block__title .title {font-size: 18px;text-align: left;text-transform: capitalize;}
.order_fast__form .comment .form__field {margin: 0;width: 100%;}
.order_fast__form .total__buttons {margin-top: 32px;text-align: center;}
.order_fast__form .total__buttons button {pointer-events: all;}
.order-delivery-zone__selectBox {margin-top: 16px;}
.order-delivery__description {margin-top: 16px;}
.order-delivery__desc:not(:empty) {margin-top: 16px;}
.order-payments_items {display: none;}
.order-payment__item + .order-payment__item {margin-top: 12px;}
.order-payment__descriptions {margin-top: 12px;width: 100%;}
.coupon__code {border-radius: 56px;padding: 0 88px 0 32px;}
.coupon__code.focus {border-color: var(--color-secondary);}
.coupon__button {color: var(--color-white);background-color: var(--color-secondary);padding: 0;font-size: 24px;width: 56px;height: 56px;line-height: 64px;border-radius: 100%;position: absolute;top: 0;right: 0;text-align: center;}
.coupon__button:hover {color: var(--color-white);background-color: var(--color-primary);}
.coupon__button span {display: none;}
.coupon__reset {color: var(--color-gray);position: absolute;right: 68px;line-height: 56px;opacity: 0;transition: all 0.3s ease;}
.coupon__reset.focus {opacity: 1;}
.form__fields-trio {width: 100%;}
.form__fields-trio .form__field {width: calc(33.333333% - 16px);margin: 0 8px;}
@media all and (max-width: 479px) {
	.form__fields-trio .form__field {width: 100%;}
	.form__fields-trio .form__field + .form__field {margin-top: 16px;}
	.form__fields-trio .deliveryConvenientDate {width: calc(50% - 16px);}
	.order_fast__content {padding: 0 8px 8px 8px;}
}
/**************************************/
/*** Страница: Оформление заказа ***/
/**************************************/
.stage__navigates {margin-bottom: 32px;}
.stage__nav {flex-grow: 1;font-size: 20px;font-weight: 500;position: relative;transition: all 0.3s ease;}
.stage__nav.is-actived, .stage__nav:hover {color: var(--color-primary);}
.stage__nav:after {content: '';background-color: var(--color-black);width: 100%;height: 2px;position: absolute;bottom: -8px;left: 0;}
.stage__nav.is-actived:after, .stage__nav:hover:after {background-color: var(--color-primary);}
.stages__block {width: 50%;}
.stages__block_full {width: 100%;}
.stages__title {margin-bottom: 16px;}
.stages-list__item {margin-bottom: 12px;display: block;}
.stages-list__item i {font-size: 24px;vertical-align: sub;margin-right: 8px;}
.stages__buttons {width: 100%;}
.stages__buttons [class*="button-"] {margin: 16px 16px 0 0;}
.stages__buttons [class*="button-"]:last-child {margin-right: 0;}
/**************************************/
/*** Контакты ***/
/**************************************/
.contacts__phone + .contacts__phone {margin-top: 12px;}
.contacts__icon {margin-top: 2px;margin-right: 12px;width: 24px;font-size: 24px;color: var(--color-gray);transition: all 0.3s ease;}
.contacts__content {width: calc(100% - 36px);line-height: 1.5;flex-grow: 1;}
.contacts__link {font-weight: 500;align-items: flex-start;}
.contacts__label {width: 100%;margin-bottom: 12px;font-weight: 600;}
.contacts__fancy {font-size: 14px;font-weight: 500;text-decoration: underline;text-align: right;}
.contacts__fancy:hover {text-decoration: underline;}
/**************************************/
/*** Шапка ***/
/**************************************/
header {background-color: var(--color-white);box-shadow: 0px 0px 20px 0px var(--color-shadow);}
.header__top {padding: 12px 0 24px 0;}
/* .header__inner {position: relative;} */
.header__middle {background-color: var(--color-white);transition: all 0.0s ease-in-out;}
.header__middle.is-fixed {position: fixed;width: 100%;top: 0;z-index: 12;padding: 20px 0;box-shadow: 0px 0px 20px var(--color-shadow);transition: all 0.3s ease-in-out;}
@media all and (max-width: 1023px) {
	.header__top {padding-bottom: 16px;}
	.header__middle {padding-bottom: 16px;}
	.header__bottom {display: none;}
}
@media all and (max-width: 767px) {
	/* .header__middle {display: none;} */
	.header-catalog {display: none;}
	.header-addto {display: none;}
	.header__middle {padding: 0;height: 0;}
}
/*** Шапка. Логотип ***/
.header-logo {width: 208px;}
@media all and (max-width: 479px) {
	.header-logo {width: 144px;height: 48px;}
}
/*** Шапка. Контакты ***/
.header-contacts {width: calc(100% - 208px);flex-grow: 1;justify-content: flex-end;}
.header-contacts .contacts__block {margin-left: 32px;white-space: normal;}
.header-contacts .contacts__block:first-child {margin-left: 0;}
.header-contacts .contacts__label {display: none;}
.header-contacts .contacts__worktime {max-width: 176px;}
.header-contacts .contacts__region {max-width: 224px;}
.header-contacts .contacts__email {max-width: 224px;}
.header-contacts .contacts__phone {max-width: 240px;font-size: 18px;white-space: nowrap;}
.header-contacts .contacts__icon {margin-top: 4px;}
.header-contacts .contacts__link:hover .contacts__icon {color: var(--color-black);}
@media all and (max-width: 1199px) {
	.header-contacts .contacts__worktime {display: none;}
}
@media all and (max-width: 1023px) {
	.header-contacts {width: calc(100% - 208px - 56px - 32px);margin-right: 32px;}
	.header-contacts .contacts__region {display: none;}
	.header-contacts .contacts__email {display: none;}
}
@media all and (max-width: 767px) {
	.header-contacts {width: calc(100% - 208px - 56px - 32px - 56px - 32px);margin-right: 16px;}
	.header-contacts .contacts__block {margin: 0;}
}
@media all and (max-width: 639px) {
	.header-contacts {display: none;}
}
@media all and (max-width: 479px) {
}
@media all and (max-width: 374px) {
}
/*** Добавить в ... ***/
.header-addto {max-width: 344px;justify-content: flex-end;position: relative;}
.addto__block {margin-left: 8px;}
.addto__link {width: 56px;height: 56px;font-weight: 700;background-color: var(--color-lightgray);border-radius: 12px;display: flex;align-items: center;justify-content: center;position: relative;}
.addto__link i {font-size: 24px;}
.addto__count {opacity: 0;font-size: 12px;top: -12px;left: calc(50% - 12px);position: absolute;width: 24px;height: 24px;line-height: 24px;background-color: var(--color-primary);color: var(--color-white);border-radius: 100%;text-align: center;font-weight: bold;}
.has-items .addto__count {opacity: 1;}
.cart__icon .cartSumNowDiscount {margin-left: 8px;display: none;}
.has-items .cart__icon {width: 144px;padding: 0 16px;}
.has-items .cart__icon .cartSumNowDiscount {display: inline-block;}
.addto__remove {color: var(--color-gray);}
.addto__remove:hover {color: var(--color-black);}
.addto__remove i {font-size: 12px;}
.addto__block.login {position: relative;}
.addto__login {width: 224px;padding: 0;right: -84px;}
.mainnav__overflow.dropdown__content {padding: 0;}
.dropdown__content .mainnav__link {padding: 20px 32px;}
.dropdown__content .mainnav__link:hover, .dropdown__content .mainnav__link.is-actived {background-color: var(--color-tertiary);color: var(--color-secondary);}
.addto__total-block.is-hidden {opacity: 0;}
@media all and (max-width: 479px) {
	.addto__link {width: 44px;height: 44px;}
	.addto__link i {font-size: 20px;}
}
/*** Шапка. Каталог ***/
.header-catalog {width: 184px;}
.header-catalog__icon i {font-size: 18px;}
.header-adaptive {display: none;}
@media all and (max-width: 1023px) {
	.header-adaptive {display: flex;flex-grow: 1;justify-content: flex-end;}
	.adaptive-search__icon {display: none;}
	.adaptive-search__content {display: none;}
}
@media all and (max-width: 767px) {
	.adaptive-search__icon {display: flex;margin-right: 16px;}
	.adaptive-search__content {display: inline-block;}
	.adaptive-search__content .search__icon {display: none;}
}
/* Выпадающий каталог */
.header-catalog__container {position: relative;}
.header-catalog__content {margin-top: 16px;padding: 16px;left: 0;width: 100%;overflow: hidden;}
.header-catalog:hover .header-catalog__icon {background-color: var(--color-secondary)}
.header-catalog:hover .header-catalog__icon i:before {content: '\e90b'}
header .catalog__items {position: relative;max-height: 260px;overflow-y: auto;}
header .catalog__items::-webkit-scrollbar {width: 4px;}
.catalog__items-main {width: 25%;padding: 0 16px;}
.header-catalog__inner {position: relative;}
.header-catalog__inner:after {content: '';width: 1px;height: 100%;background-color: var(--color-lightgray);display: block;position: absolute;top: 0;left: calc(25% + 6px);}
.catalog__items-main .catalog__item {font-size: 18px;font-weight: bold;}
.catalog__items-main .catalog__item i {font-size: 10px;right: 0;position: absolute;display: inline-block;transition: all 0.3s ease;}
.catalog__items-main .catalog__link {padding: 8px 0;}
.catalog__items-main .catalog__link:hover, .catalog__items-main .catalog__link.is-opened {padding: 8px 16px;}
.catalog__items-main .catalog__link:hover i, .catalog__items-main .catalog__link.is-opened i {right: 16px;}
.catalog__items-sub {padding-left: 32px;width: 75%;}
.catalog__items-sub .catalog__sub[data-level="1"] {padding: 8px 0 0 0;display: flex;flex-wrap: wrap;align-items: flex-start;}
.catalog__items-sub .catalog__sub[data-level="2"] {display: block;padding: 0;}
.catalog__items-sub .catalog__sub[data-level="3"] {display: none;}
.catalog__items-sub .catalog__item[data-level="1"] {width: 25%;order: 2;}
.catalog__items-sub .catalog__item[data-level="1"].parent {order: 1;}
.catalog__items-sub .catalog__link {font-weight: 500;overflow: hidden;text-overflow: ellipsis;display: block;}
.catalog__items-sub .catalog__link[data-level="0"] {padding-left: 8px;font-size: 22px;font-weight: 700;background-color: transparent;}
.catalog__items-sub .catalog__link[data-level="1"] {padding-left: 8px;font-size: 18px;font-weight: 700;}
.catalog__items-sub .catalog__link[data-level="2"] {padding-top: 4px;padding-bottom: 4px;}
.catalog__items-sub .catalog__link i {display: none;}
.catalog__items-sub .catalog__link:hover {background-color: transparent;}
.catalog__items-sub .catalog__item[data-level="0"] {display: none;}
.catalog__items-sub .catalog__item[data-level="0"].is-show {display: block;}
@media all and (max-width: 1199px) {
	.catalog__items-sub .catalog__item[data-level="1"] {width: 33.333333%;}
}
@media all and (min-width: 1024px) {
	.header-catalog__icon:after {content: '';width: 100%;height: 24px;bottom: -20px;left: 0;position: absolute;z-index: 2;}
}
/*** Шапка. Меню ***/
.header-menu {flex-grow: 1;position: relative;}
.mainnav__list {width: 100%;}
.mainnav__list.loading {height: 56px;}
.mainnav__link {padding: 20px 16px;display: block;}
.mainnav__link-discount {color: var(--color-red);padding-left: 44px;position: relative;}
.mainnav__link-discount:before {content: '\e933';font-family: 'icomoon';left: 16px;position: absolute;}
.mainnav__overflow {margin-top: 0;width: 240px;}
.mainnav__overflow.is-opened {transform: scale(1);}
.mainnav__more_hidden {display: none;}
.mainnav__more i {vertical-align: bottom;margin-left: 8px;font-size: 12px;}
.mainnav__more.is-opened a {color: var(--color-primary);}
.mainnav__more.is-opened i:before {content: '\e90a';}
/*** Шапка. Поиск ***/
.header-search {flex-grow: 1;margin-left: 16px;width: calc(100% - 200px - 344px);}
.search__form {position: relative;}
.search__input {padding: 0 176px 0 56px;}
.search__submit {left: 0;color: var(--color-gray);padding: 0;width: 56px;height: 100%;font-size: 24px;line-height: 40px;position: absolute;background-color: transparent;}
.search__submit:hover, .search__focused .search__submit {background-color: transparent;color: var(--color-black);}
.search__icon {display: none;}
.search__form .button-secondary {right: 16px;top: 8px;line-height: 40px;padding: 0 24px;position: absolute;}
.search__reset {color: var(--color-gray);right: 128px;line-height: 56px;opacity: 0;top: 0;position: absolute;transition: all 0.3s ease;cursor: pointer;}
.search__reset:hover {color: var(--color-black);}
.search__filled .search__reset {opacity: 1;}
.search__loading {top: 18px;right: 160px;width: 16px;height: 16px;display: none;position: absolute;}
.search__load .search__loading {display: block;}
.search__loading div {border: 2px solid var(--color-primary);border-color: var(--color-primary) transparent transparent transparent;width: 16px;height: 16px;margin: 0;border-radius: 50%;animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;display: block;position: absolute;}
.search__loading div:nth-child(1) {animation-delay: -0.45s;}
.search__loading div:nth-child(2) {animation-delay: -0.3s;}
.search__loading div:nth-child(3) {animation-delay: -0.15s;}
@keyframes lds-ring {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
@media all and (min-width: 1024px) {
	.search {position: relative;}
	.search__form .button-secondary {opacity: 0;}
	.search__filled .button-secondary {opacity: 1;}
}
@media all and (max-width: 1023px) {
	.search__form {margin-top: 16px;width: 100%;left: 0;z-index: 12;position: absolute;display: none;}
	.search__icon {display: flex;margin-left: auto;}
	.search.is-opened .search__form, .adaptive-search__content.is-opened .search__form {display: block;}
	.search.is-opened .search__input, .adaptive-search__content.is-opened .search__input {border: 1px solid var(--color-lightgray);background-color: var(--color-white);border-radius: 0;}
}
@media all and (max-width: 767px) {
	.header-search {margin: 0;width: 100%;flex-grow: 0;position: absolute;left: 0;}
	.header-search .search__icon {display: none;}
	.search__form {margin-top: 0;}
}
/*** Шапка. Результаты поиска ***/
.search-results {margin-top: 16px;width: 100%;left: 0;z-index: 13;position: absolute;display: none;}
.search-results ::-webkit-scrollbar {width: 4px;height: 0;}
.search-results__inner {padding: 8px;background-color: var(--color-white);box-shadow: 0px 0px 20px var(--color-shadow);border-radius: 12px;}
.search-results__item {margin-top: 16px;}
.search-results__item:first-child {margin-top: 0;}
.search-results__image {width: 60px;height: 60px;margin-right: 16px;border-radius: 12px;}
.search-results__name {line-height: 20px;flex-grow: 1;width: calc(100% - 60px - 16px);}
.search-results__title {font-weight: bold;}
.search-results__showAll {color: var(--color-secondary);margin: 8px 16px 16px 16px;width: 100%;text-align: left;transition: all 0.3s ease;display: none;}
.search-results__showAll:hover {cursor: pointer;}
.search-results__category {width: 200px;padding: 16px;overflow-y: auto;}
.search-results__category .search-results__image {display: none;}
.search-results__goods {width: calc(100% - 200px);padding: 16px;overflow-y: auto;}
@media all and (max-width: 1023px) {
	.search-results {margin-top: 72px;}
	.search-results__inner {border-radius: 0 0 8px 8px;}
}
@media all and (max-width: 767px) {
	.search-results {margin-top: 56px;}
}
@media all and (max-width: 639px) {
	.search-results__category {width: 100%;}
	.search-results__goods {width: 100%;}
}
/**************************************/
/*** Новости ***/
/**************************************/
#news .tabs__content.loading {height: 128px;}
#news .block__nav {padding: 8px 0;background-color: #FFF1E8;border-radius: 12px;}
#news .block__nav:before {content: '';position: absolute;top: 0;right: 0;width: 100%;height: 100%;background-position: bottom;background-size: 100% 32px;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='181' height='76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 37.814C0-2.873 50-14.83 81.5 22.773 113 60.375 181 33.843 181 19.765v44.258C181 70.651 175.627 76 169 76H12C5.373 76 0 70.704 0 64.076V37.814Z' fill='%23FED9C2'/%3E%3C/svg%3E");}
#news .block__nav:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom;background-size: 100% 32px;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='181' height='81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 27.257c0-7.434 50.418 42.461 96.627 36.326C140.12 57.81 181-5 181 1v68.012C181 75.639 175.627 81 169 81H12C5.373 81 0 75.638 0 69.011V27.257Z' fill='%23FFE6D7'/%3E%3C/svg%3E");}
.news__navs {width: calc(100% - 88px);white-space: nowrap;flex-wrap: nowrap;overflow-x: auto;position: relative;z-index: 2;}
.news__navs::-webkit-scrollbar {height: 4px;}
.news__nav {padding: 10px 16px;line-height: 1.25;font-weight: 700;font-size: 20px;}
#news .swiper-slide {height: auto;}
.news__item {margin: 0 8px;background-color: var(--color-white);border-radius: 12px;border: 1px solid var(--color-lightgray);transition: all 0.3s ease;}
.news__item:hover {border-color: var(--color-secondary);box-shadow: 0 16px 32px 0 var(--color-shadow);}
.news__image {width: 100%;height: 192px;border-radius: 12px 12px 0 0;position: relative;overflow: hidden;}
.news__image img {object-fit: cover;width: 100%;height: 100%;}
.news__desc {margin-top: 8px;max-height: 72px;line-height: 24px;display: block;overflow: hidden;flex-grow: 1;}
.news__desc span {display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.news__buttons {margin-top: 16px;}
.news__button {color: var(--color-primary);}
.news__button:hover {color: var(--color-secondary);}
.news__title {max-height: 48px;line-height: 24px;font-size: 20px;font-weight: bold;display: block;overflow: hidden;flex-grow: 1;}
.news__title span {display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.news__content {width: 100%;height: calc(100% - 192px);padding: 16px;display: flex;flex-wrap: wrap;flex-direction: column;}
.news__item .news__date {color: var(--color-gray);background: var(--color-white);font-size: 14px;font-weight: bold;padding: 8px 16px;border-radius: 12px 12px 0 0;line-height: 1;text-align: center;text-transform: lowercase;position: absolute;left: 16px;bottom: 0;}
.news__item .news__date i {font-size: 20px;vertical-align: text-bottom;margin-right: 8px;}
.pdt__news-item {padding: 20px 24px;background-color: #E6FFF3;border: 0;overflow: hidden;position: relative;}
.pdt__news-item:hover {border-color: #E6FFF3;box-shadow: none;}
.pdt__news-item:before {content: '';position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='377' height='332' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 13.218C0-.93 22.173-3.818 26.513 9.647 116.579 289.068 213.235 217.93 290 231c64.472 10.977 81.797 64.167 86.383 88.636 1.257 6.709-4.072 12.364-10.898 12.364H12c-6.627 0-12-5.373-12-12V13.218Z' fill='%23D8FEEC'/%3E%3C/svg%3E");}
.pdt__news-item:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom left;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='380' height='247' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0c-4 308 202 105.5 297 118 77.388 10.183 82.445 89.379 81.66 118.393-.164 6.072-5.231 10.607-11.304 10.607H13c-6.627 0-12-5.373-12-12V0Z' fill='%23CCFCE6'/%3E%3C/svg%3E");}
.pdt__news-title {font-size: 40px;font-weight: 800;color: #56A57F;line-height: 1.25;position: relative;z-index: 2;}
.pdt__news-title:hover {opacity: 1;color: #56A57F;}
.pdt__news-button {opacity: .5;color: #56A57F;justify-content: flex-start;margin-top: 12px;position: relative;z-index: 2;}
.pdt__news-button:hover {opacity: 1;color: #56A57F;}
@media all and (min-width: 1024px) {
	.news__item {width: calc(33% - 16px);}
	.news__item:nth-child(1) {order: 2;}
	.news__item:nth-child(2) {order: 1;}
	.news__item:nth-child(3) {order: 3;}
}
@media all and (max-width: 1023px) {
	.news__item {width: calc(50% - 16px);}
	.pdt__news-item {width: 100%;margin-bottom: 16px;padding: 12px 16px;}
	.pdt__news-title {font-size: 24px;}
	.pdt__news-button {margin-top: 6px;}
	.pdt__news-item:before {background-size: 100% 80%;}
	.pdt__news-item:after {background-size: 100% 50%;background-position: bottom center;}
}
@media all and (max-width: 479px) {
	.news__item {width: 100%;}
	.news__item:nth-child(3) {display: none;}
}
/**************************************/
/*** Страница: Новости ***/
/**************************************/
.news__list_item {margin-bottom: 24px;padding-bottom: 24px;border-bottom: 1px solid var(--color-lightgray);}
.news__list_item:last-child {margin-bottom: 0;padding-bottom: 0;border-bottom: 0;}
.news__list_title {margin-bottom: 16px;max-height: 48px;line-height: 24px;font-size: 18px;font-weight: bold;display: block;overflow: hidden;}
.news__list_date {text-align: right;font-style: italic;display: block;}
.news__file {margin-top: 16px;}
/**************************************/
/*** Подвал ***/
/**************************************/
footer {color: var(--color-white);padding-top: 122px;position: relative;}
footer:before {content: '';position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: top left;background-size: 100% 100%;background-repeat: no-repeat;}
footer:after {content: '';position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom left;background-size: 100% 90%;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='1921' height='391' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 59.474S160-9.5 435 23.5 1899.87 282.139 1911.28 54.57c11.41-227.57 9 336.431 9 336.431H0V59.474Z' fill='%23371E1B'/%3E%3C/svg%3E");}
footer .container {position: relative;}
.footer__inner {position: relative;z-index: 2;}
.footer__blocks {width: calc(25% - 16px);margin: 0 8px 24px 8px;flex-grow: 1;}
.footer__blocks:nth-child(2) {width: calc(50% - 16px);}
.footer__block {width: calc(33.333333% - 16px);margin: 0 8px 16px 8px;}
.footer__title {font-size: 20px;font-weight: bold;margin-bottom: 12px;position: relative;}
.footer__logo {margin-bottom: 16px;padding: 8px;background-color: var(--color-white);border-radius: 12px;text-align: center;}
.footer__text {margin: 16px 8px;width: 100%;}
.footer__link {color: var(--color-white);padding: 8px 0;line-height: 1.25;display: block;}
.footer__link:hover {padding-left: 12px;}
/*** Подвал. Контакты ***/
.footer__contacts .contacts__block {margin-top: 24px;}
.footer__contacts .contacts__block:first-child {margin-top: 0;}
.footer__contacts .contacts__link {color: var(--color-white);}
.footer__contacts .contacts__link:hover {color: var(--color-primary);}
.footer__contacts .contacts__label {display: none;}
.footer__contacts .contacts__phone:nth-child(1) {font-size: 20px;font-weight: bold;}
.footer__contacts .contacts__phone:nth-child(1) .contacts__icon {opacity: 1;margin-top: 4px;}
.footer__contacts .contacts__phone .contacts__icon {opacity: 0;}
.footer__contacts .contacts__phone + .contacts__phone {margin-top: 0;}
.footer__contacts .contacts__callback {margin: 12px 0 32px 36px;}
/*** Подвалю. Соц сети ***/
.footer__social-row {margin: 0 -4px;}
.social__link {margin: 4px;font-size: 24px;width: 64px;height: 40px;background-color: var(--color-white);border-radius: 12px;display: flex;align-items: center;justify-content: center;}
.social__link:hover {color: var(--color-white) !important;background-color: var(--color-primary);}
.social__link span {display: none;}
.social__link.vk {color: #1E88E5;}
.social__link.viber {color: #8E24AA;}
.social__link.youtube {color: #F44336;}
.social__link.odnoklassniki {color: #FF9800;}
.social__link.telegram {color: #039BE5;}
.social__link.whatsapp {color: #2CB742;}
/*** Подвалю. Оплата ***/
.footer__payments-row {margin: -16px -8px 0 -8px;}
.payments__link {margin: 8px;flex-grow: 1;}
.payments__link:hover {margin-top: -6px;}
/*** Подвалю. Копирайт ***/
.footer__copyright {margin-top: 12px;font-size: 12px;color: var(--color-gray);flex-grow: 1;line-height: 1.5;}
.footer__copyright div {display: inline;}
@media(min-width: 1024px) {
	.footer__contacts .contacts__phones {margin-top: 16px;}
}
@media(min-width: 1200px) {
	footer:before {background-image: url("data:image/svg+xml,%3Csvg width='1920' height='463' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 28.896c155-16.665 538.5-59.544 1084 7.582 545.5 67.127 609 11.3 836-7.582V463H0V28.896Z' fill='%23301815'/%3E%3C/svg%3E");}
}
@media(max-width: 1199px) {
	footer {margin-top: -32px;}
	footer:before {display: none;}
	footer:after {background-position: 10%;background-size: auto 100%;}
	.footer__blocks:nth-child(1) {width: 100%;margin: 0 16px 32px 16px;order: 3;display: flex;flex-wrap: wrap;align-items: center;}
	.footer__blocks:nth-child(2) {width: calc(60% - 16px);}
	.footer__blocks:nth-child(3) {width: calc(40% - 16px);padding-left: 36px;}
	.footer__logo {width: 264px;margin-bottom: 0;}
	.footer__social {width: 376px;padding: 0 48px;}
	.footer__copyright {width: calc(100% - 264px - 376px);margin-top: 0;}
}
@media(max-width: 1023px) {
	.footer__text {display: none;}
	.footer__block {width: calc(50% - 16px);}
	.footer__payments {width: 100%;}
	.footer__payments-row {margin-top: 0;}
	.footer__blocks:nth-child(3) {padding: 0 0 16px 0;}
	.footer__copyright {width: 100%;margin-top: 16px;}
	.footer__social {width: calc(100% - 264px);padding: 0 0 0 32px;}
	.payments__link {flex-grow: 0;}
	.payments__link svg {width: 32px;height: 32px;}
	.payments__link.mir svg {width: 56px;height: 16px;}
}
@media (max-width: 767px) {
	footer {padding-top: 80px;}
	.footer__blocks:nth-child(2) {width: 100%;order: 2;}
	.footer__blocks:nth-child(3) {width: 100%;order: 1;}
}
@media (min-width: 640px) and (max-width: 767px) {
	.footer__contacts {display: flex;flex-wrap: wrap;align-items: flex-start;}
	.footer__contacts .contacts__blocks {width: 50%;}
	.footer__contacts .contacts__callback {margin-bottom: 0;}
}
@media (min-width: 640px) {
	.footer__content {display: block !important;}
}
@media (max-width: 639px) {
	.footer__title:after {content: '\e907';font-family: 'icomoon';position: absolute;top: 6px;right: 0;font-size: 12px;}
	.footer__title.is-actived {color: var(--color-primary);}
	.footer__title.is-actived:after {content: '\e90a';}
	.footer__title + .footer__content {display: none;}
	.footer__block {width: 100%;margin: 0 0 24px 0;padding: 0 0 12px 0;border-bottom: 1px solid rgba(255, 255, 255, 0.2);}
	.footer__social {width: 100%;padding: 16px 0 0 0;}
	.footer__payments {margin: 0;padding: 0;border: 0;}
}
@media (max-width: 479px) {
}
/**************************************/
/*** Слайдшоу ***/
/**************************************/
#slideshow {overflow: hidden;}
.slideshow {width: calc(100% - 496px);margin-right: 16px;position: relative;overflow: hidden;}
.slideshow__item.swiper-slide {height: 288px;background-position: center;background-size: cover;position: relative;overflow: hidden;}
.slideshow__content {background-color: var(--color-white);padding: 20px;border-radius: 16px;position: relative;}
.slideshow__title {margin-bottom: 8px;font-size: 24px;font-weight: 800;display: block;}
.slideshow__subtitle {font-weight: 500;line-height: 1.25;white-space: normal;}
.slideshow__pretitle {margin-bottom: 16px;font-size: 14px;font-weight: 800;text-transform: uppercase;color: var(--color-red);}
.slideshow__button {margin-top: 16px;}
.slideshow__image {display: block;width: 100%;height: 100%;position: absolute;left: 0;top: 0;transition: all 0.3s ease;}
.slideshow__image img {object-fit: cover;width: 100%;height: 100%;border-radius: 16px;}
.slideshow.loading .slideshow__image {background-color: var(--color-lightgray);border-radius: 16px;}
/* Навигация */
.slideshow .swiper-navigation {position: absolute;right: 16px;bottom: 16px;z-index: 3;}
.slideshow .swiper-pagination {margin-top: 16px;z-index: 2;position: relative;}
.slideshow .swiper-pagination-bullet {transition: all 0.3s ease;background-color: var(--color-gray);opacity: 1;}
.slideshow .swiper-pagination-bullet-active {width: 20px;border-radius: 8px;background-color: var(--color-primary);}
@media all and (min-width: 640px) {
	.slideshow__content {margin-left: 32px;max-width: 304px;}
}
@media all and (max-width: 1199px) {
	.slideshow {width: 100%;margin: 0 0 24px 0;}
}
@media all and (max-width: 639px) {
	.slideshow__content {background: rgba(255, 255, 255, 0.8);border-radius: 0 0 16px 16px;width: 100%;}
	.slideshow .swiper-navigation {display: none;}
	.slideshow__item.swiper-slide {align-items: flex-end;}
}
/**************************************/
/*** Распродажа ***/
/**************************************/
#pdt__sales {width: 480px;padding: 16px;background-color: #FFE5E8;border-radius: 12px;position: relative;}
#pdt__sales:before {content: '';position: absolute;top: 0;right: 0;width: 100%;height: 100%;background-position: top right; background-size: auto; background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='294' height='102' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.018 2.124C-.192.422 1.598 0 3.687 0H281c6.627 0 12 5.49 12 12.118V102C300-11.5 212 6 129.5 35.5 58.512 60.884 8.995 13.338 1.018 2.124Z' fill='%23FCCFD3'/%3E%3C/svg%3E");}
#pdt__sales:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom left;background-size: auto; background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='476' height='248' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.108 142.746c0-.96-.114-1.898-.108-2.859.047-7.463 7.544-44.773 137.077-118.812C283.044-62.358 264.548 127.274 298.54 150.818c26.887 18.622 122.266-13.213 160.965-27.336 7.967-2.907 16.495 2.984 16.495 11.465V236c0 6.627-5.373 12-12 12H12.108c-6.627 0-12-5.373-12-12v-93.254Z' fill='%23FADCDF'/%3E%3C/svg%3E");}
#pdt__sales .product__form {border-color: transparent;padding: 16px;box-shadow: none;display: flex;flex-wrap: wrap;align-items: stretch;}
#pdt__sales .product__margin {margin-bottom: 12px;}
#pdt__sales .product__image {width: 148px;}
#pdt__sales .product__img {height: 148px;border-radius: 12px;}
#pdt__sales .product__shop {width: calc(100% - 148px);padding: 0 0 0 12px;}
#pdt__sales .product__sticker {display: none;}
#pdt__sales .product__links {display: none;}
#pdt__sales .product__props {display: none;}
#pdt__sales .swiper {padding: 24px 24px 0 24px;}
#pdt__sales .swiper-navigation {position: unset;z-index: 3;}
#pdt__sales .swiper-button-next, #pdt__sales .swiper-button-prev {position: absolute;top: calc(50% - 16px);background-color: var(--color-white);}
#pdt__sales .swiper-button-next {right: 0;}
#pdt__sales .swiper-button-prev {left: 0;}
#pdt__sales .sticker__sales {font-size: 18px;font-weight: bold;padding: 4px 16px;}
#pdt__sales .sticker__sales:after {font-size: 48px;}
#pdt__sales .product__label {top: -22px;left: -32px;}
#pdt__sales .block__title {margin-left: 10px;margin-bottom: 12px;z-index: 2;}
#pdt__sales .block__title .title {font-size: 22px;}
#pdt__sales .block__title .button-link {position: absolute;top: 6px;right: 0;color: var(--color-black);font-size: 14px;font-weight: 400;}
#pdt__sales .block__title .button-link:hover {color: var(--color-primary)}
#pdt__sales .product__addCart {position: relative;top: auto;right: auto}
#pdt__sales .product__add {box-shadow: none;width: auto;height: auto;line-height: 1;}
#pdt__sales .product__add i {font-size: 40px;}
#pdt__sales .product__add:hover {color: var(--color-secondary);background-color: transparent;}
#pdt__sales.loading .product__item {width: 100%;overflow: hidden;}
#pdt__sales .product__price {width: auto;flex-grow: 1;text-align: left;}
#pdt__sales .price__old {display: block;margin: 0 0 4px 0;}
#pdt__sales .product__add:after {top: -10px;right: -10px;display: none;}
@media all and (min-width: 1024px) {
	#pdt__sales .swiper-navigation {opacity: 0;}
	#pdt__sales:hover .swiper-navigation {opacity: 1;}
}
@media all and (max-width: 1199px) {
	#pdt__sales {width: 100%;}
}
@media all and (max-width: 639px) {
	#pdt__sales {width: calc(100% + 32px);margin-left: -16px;border-radius: 0;}
	#pdt__sales .swiper {padding: 24px 16px 0 16px;}
	#pdt__sales .block__title {margin-left: 16px;}
}
@media all and (max-width: 479px) {
	#pdt__sales .product__image {width: 100%;}
	#pdt__sales .product__img {height: 278px;}
	#pdt__sales .product__shop {width: 100%;padding: 16px 0 0 0;}
	#pdt__sales .product__margin {margin-bottom: 8px;}
}
@media all and (max-width: 374px) {
	#pdt__sales .product__img {height: 222px;}
}
/**************************************/
/*** Преимущества ***/
/**************************************/
.advantage__items {flex-wrap: nowrap;overflow-x: auto;}
.advantage__item {width: calc(25% - 16px);min-width: 272px;margin: 0 8px;padding: 20px;background-color: var(--color-lightgray);border-radius: 12px;font-weight: 500;}
.advantage__icon {color: var(--color-gray);font-size: 32px;}
.advantage__content {width: calc(100% - 32px);padding-left: 16px;line-height: 20px;white-space: normal;}
/**************************************/
/*** Предложения ***/
/**************************************/
#offers {background-color: #EEEDFF;padding: 32px 0;}
.offers__bg-1 {position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: 100% auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='1920' height='313' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1904.35 2.05C725.581 344.191 299.707 332.87 21.995 5.01 14.625-3.693 0 1.361 0 12.764V301c0 6.627 5.373 12 12 12h1896c6.63 0 12-5.373 12-12V13.494c0-7.998-7.97-13.674-15.65-11.445Z' fill='%23E1DEFF'/%3E%3C/svg%3E");}
.offers__bg-2 {position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='744' height='320' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M742 .5c-2.5-9.5 26 378-235 287.5S-10.5 316.5.49 318.487c10.174 1.839 637.144.712 730.054.535 6.58-.012 11.497-5.189 11.546-11.768.427-56.549 2.117-298.367-.09-306.754Z' fill='%23CCC8FF'/%3E%3C/svg%3E");}
.offers__bg-3 {position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-position: top left;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='539' height='276' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M494 0H11.58C4.951 0 0 5.171 0 11.799V276c0-91 122.5-45.5 141-149S266 0 494 0Z' fill='%23CCC8FF'/%3E%3C/svg%3E");}
#offers .block__title {color: #57529E;}
.offers__item {padding: 16px 0 16px 16px;}
.offers__subtitle {margin-bottom: 8px;font-size: 14px;font-weight: 800;color: var(--color-red);text-transform: uppercase;}
.offers__title {margin-bottom: 4px;font-size: 20px;font-weight: 700;}
.offers__text {margin-bottom: 16px;max-height: 60px;line-height: 20px;font-weight: 500;overflow: hidden;}
.offers__text span {display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.offers__buttons a {-webkit-justify-content: flex-start;justify-content: flex-start;color: var(--color-primary);}
.offers__buttons a:hover {color: var(--color-secondary);}
.offers__content {width: calc(100% - 232px);padding: 16px;background-color: var(--color-white);border-radius: 0 12px 12px 0;}
.offers__image {width: 232px;height: 178px;border-radius: 12px;overflow: hidden;}
.offers__image img {object-fit: cover;width: 100%;height: 100%;}
.offers__sticker {position: absolute;top: 0;left: 0;font-size: 18px;font-weight: bold;padding: 20px 18px 12px 18px;}
.offers__sticker:after {font-size: 48px;}
@media all and (max-width: 1199px) {
	.offers__content {width: calc(100% - 200px);}
	.offers__image {width: 200px;}
	.offers__text {margin-bottom: 12px;}
}
@media all and (max-width: 639px) {
	.offers__item {padding: 12px;}
	.offers__image {width: 100%;}
	.offers__content {margin-top: 8px;padding: 12px;width: 100%;border-radius: 12px;}
}
@media all and (min-width: 480px) and (max-width: 639px) {
	.offers__text {max-height: 60px;}
	.offers__title {max-height: 40px;}
	.offers__buttons {margin-top: auto;}
	.offers__content {margin-top: 8px;padding: 12px;width: 100%;border-radius: 12px;height: 178px;display: flex;flex-wrap: wrap;flex-direction: column;}
}
/**************************************/
/*** Новинки ***/
/**************************************/
#pdt__new .product__item {margin: 24px 8px 0 8px;}
#pdt__new .product__img {height: 172px;}
#pdt__new .product__shop {padding: 12px;}
#pdt__new .product__margin {margin-bottom: 12px;}
#pdt__new .product__props {display: none;}
#pdt__new .product__price {text-align: center;}
#pdt__new .product__name {text-align: center;justify-content: center;}
#pdt__new .price__old {margin: 0 4px 0 0;display: inline-block;}
#pdt__new .price__now {font-size: 18px;}
#pdt__new .product__sticker {display: none;}
#pdt__new .product__add {width: 48px;height: 48px;line-height: 48px;}
#pdt__new .product__add i {font-size: 24px;}
.pdt__new-item {padding: 20px 24px;background-color: #E8FFE2;border-radius: 16px;overflow: hidden;position: relative;}
.pdt__new-item:before {content: '';position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='377' height='229' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.012 109.655c0-11.841-2.252 71.392 53.885 41.294 1.37-.735 2.984-1.287 4.523-1.513 72.906-10.699 40.467-53.36 165.132-68.865C349.561 64.901 377 23.08 377 1.343v215.751c0 6.627-5.373 11.906-12 11.906H12.012c-6.627 0-12-5.346-12-11.974V109.655Z' fill='%23D8FDCF'/%3E%3C/svg%3E");}
.pdt__new-item:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom left;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='174' height='150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 137.917C0 130.777 21.635 13.559 99.042.733c54.809-9.082 13.462 69.31 17.308 72.177 3.846 2.868 65.868-19.598 56.733 37.284-7.181 44.714-125.186 40.882-162.121 38.571C5.069 148.396 0 143.821 0 137.917Z' fill='%23C5F9B8'/%3E%3C/svg%3E");}
.pdt__new-title {font-size: 40px;font-weight: 800;color: #5EA94B;line-height: 1;position: relative;z-index: 2;}
.pdt__new-button {opacity: .5;color: #5EA94B;justify-content: flex-start;margin-top: 12px;position: relative;z-index: 2;}
.pdt__new-button:hover {opacity: 1;}
@media all and (min-width: 1024px) {
	#pdt__new .product__item:nth-child(n) {display: block;}
	#pdt__new .product__item:nth-child(n+10) {display: none;}
	#pdt__new .product__item {width: calc(20% - 16px);}
	#pdt__new .product__img {height: 178px;}
	#pdt__new .pdt__new-item {width: calc(40% - 16px);}
}
@media all and (min-width: 1200px) {
	#pdt__new .product__item {order: 4;width: calc(16.666666% - 16px);}
	#pdt__new .product__item:nth-child(n) {display: block;}
	#pdt__new .product__item:nth-child(n+12) {display: none;}
	#pdt__new .product__item:nth-child(2) {order: 1;}
	#pdt__new .product__item:nth-child(3) {order: 2;}
	#pdt__new .product__img {height: 180px;}
	#pdt__new .pdt__new-item {order: 3;width: calc(33.333333% - 16px);}
}
@media all and (max-width: 1199px) {
	#pdt__new .product__links {flex-direction: row;}
	#pdt__new .product__link {margin: 0 0 0 4px;}
}
@media all and (max-width: 1023px) {
	#pdt__new .product__item:nth-child(n) {display: block;}
	#pdt__new .product__item:nth-child(n+10) {display: none;}
	#pdt__new .product__item {width: calc(25% - 16px);}
	#pdt__new .product__img {height: 170px;}
	#pdt__new .pdt__new-item {width: 100% !important;padding: 16px;}
	.pdt__new-title {font-size: 24px;}
	.pdt__new-button {margin-top: 6px;}
	.pdt__new-item:before {background-size: 100% 50%;border-radius: 16px;}
	.pdt__new-item:after {background-size: 64px 56px;background-position: bottom center;border-radius: 16px;}
}
@media all and (max-width: 767px) {
	#pdt__new .product__item:nth-child(n) {display: block;}
	#pdt__new .product__item:nth-child(n+8) {display: none;}
	#pdt__new .product__item {width: calc(33.333333% - 16px);}
	#pdt__new .product__img {height: 190px;}
}
@media all and (max-width: 639px) {
	#pdt__new .product__img {height: 136px;}
}
@media all and (max-width: 479px) {
	#pdt__new .product__item:nth-child(n) {display: block;}
	#pdt__new .product__item:nth-child(n+6) {display: none;}
	#pdt__new .product__item {width: calc(50% - 16px);}
	#pdt__new .product__img {height: 162px;}
}
@media all and (max-width: 374px) {
	#pdt__new .product__img {height: 134px;}
}
/**************************************/
/*** Товары на главной ***/
/**************************************/
/* #pdt__sale .product__props {display: none;} */
/* #pdt__sale .product__price {margin: 0 auto;} */
/* #pdt__sale .price__old {margin: 0 8px 0 0;display: inline-block;} */
/**************************************/
/*** Описание страницы на главной ***/
/**************************************/
.body__inner {padding: 32px;background-color: var(--color-lightgray);border-radius: 12px;position: relative;}
@media all and (max-width: 639px) {
	.body__inner {padding: 16px;}
}
/**************************************/
/*** Обратный звонок ***/
/**************************************/
#callback .form__button {padding: 0;font-size: 24px;width: 56px;height: 56px;line-height: 56px;color: var(--color-white);border-radius: 100%;position: absolute;top: 0;right: 0;}
#callback .form__input {background-color: rgba(255, 255, 255, 0.8);height: 56px;border-radius: 56px;padding: 0 56px 0 28px;flex-grow: 1;}
#callback .form__input:focus {background-color: var(--color-white);}
#callback .form__field {width: calc(100% - 240px);}
#callback .form__pp {width: 224px;margin: 0 0 0 16px;}
#callback .form__pp span {display: block;}
.callback__inner {padding: 32px;background-color: #EDF8FF;border-radius: 12px;position: relative;}
.callback__inner:before {content: '';position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='1166' height='102' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1166 89.162V12.478C1166-5.844 805.5 150 671.5 48.848c-134-101.152-420 24.245-492-25.384C107.5-26.164 0 9.068 0 71.956v18.912c0 6.627 5.373 10.272 12 10.272h1142c6.63 0 12-5.35 12-11.978Z' fill='%23DEEFFA'/%3E%3C/svg%3E");}
.callback__inner:after {content: '';position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='1051' height='82' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1041.15 40.686c-461.694-92.316-479.284.58-598.391 5.954C322.81 52.052 381.285 82 .447 82H1039.83c6.63 0 11.17-5.372 11.17-12V52.48c0-5.707-4.26-10.675-9.85-11.794Z' fill='%23CFE7F7'/%3E%3C/svg%3E");}
.callback__title {color: #437797;font-size: 40px;font-weight: 800;margin-right: 96px;position: relative;z-index: 2;}
.callback__content {flex-grow: 1;position: relative;z-index: 2;}
@media all and (max-width: 1199px) {
	.callback__title {width: 240px;margin-right: 48px;}
	.callback__content {width: calc(100% - 1128px);}
	#callback .form__field {width: 100%;}
	#callback .form__pp {margin: 8px 0 0 0;width: 100%;text-align: right;}
	#callback .form__pp span {display: inline;}
}
@media all and (max-width: 767px) {
	.callback__title {width: 100%;margin: 0 0 16px 0;font-size: 28px;}
	.callback__content {width: 100%;}
	#callback .form__input {height: 48px;}
	#callback .form__button {width: 48px;height: 48px;line-height: 48px;font-size: 20px;}
}
@media all and (max-width: 639px) {
	#callback .container {width: auto;padding: 0;}
	.callback__inner {padding: 16px;}
}
@media all and (max-width: 479px) {
	.callback__title {font-size: 24px;}
}
@media all and (max-width: 374px) {
	#callback .form__pp span {display: block;}
}
/**************************************/
/*** Подписка ***/
/**************************************/
#subscribe .form__button {padding: 0;font-size: 24px;width: 56px;height: 56px;line-height: 60px;color: var(--color-white);border-radius: 100%;position: absolute;top: 0;right: 0;}
#subscribe .form__input {background-color: rgba(255, 255, 255, 0.8);border-radius: 56px;padding: 0 56px 0 28px;flex-grow: 1;}
#subscribe .form__input:focus {background-color: var(--color-white);}
#subscribe .form__field {width: calc(100% - 240px);}
#subscribe .form__pp {width: 224px;margin: 0 0 0 16px;}
#subscribe .form__pp span {display: block;}
.subscribe__inner {padding: 32px;background-color: #EDF8FF;border-radius: 12px;position: relative;}
.subscribe__inner:before {content: '';position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='1166' height='102' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1166 89.162V12.478C1166-5.844 805.5 150 671.5 48.848c-134-101.152-420 24.245-492-25.384C107.5-26.164 0 9.068 0 71.956v18.912c0 6.627 5.373 10.272 12 10.272h1142c6.63 0 12-5.35 12-11.978Z' fill='%23DEEFFA'/%3E%3C/svg%3E");}
.subscribe__inner:after {content: '';position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='1051' height='82' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1041.15 40.686c-461.694-92.316-479.284.58-598.391 5.954C322.81 52.052 381.285 82 .447 82H1039.83c6.63 0 11.17-5.372 11.17-12V52.48c0-5.707-4.26-10.675-9.85-11.794Z' fill='%23CFE7F7'/%3E%3C/svg%3E");}
.subscribe__title {color: #437797;font-size: 40px;font-weight: 800;margin-right: 48px;position: relative;z-index: 2;}
.subscribe__content {flex-grow: 1;position: relative;z-index: 2;}
@media all and (max-width: 1199px) {
	.subscribe__title {width: 240px;}
	.subscribe__content {width: calc(100% - 1128px);}
	#subscribe .form__field {width: 100%;}
	#subscribe .form__pp {margin-top: 8px;width: 100%;text-align: right;}
	#subscribe .form__pp span {display: inline;}
}
@media all and (max-width: 767px) {
	.subscribe__title {width: 100%;margin: 0 0 16px 0;font-size: 28px;}
	.subscribe__content {width: 100%;}
	#subscribe .form__input {height: 48px;}
	#subscribe .form__button {width: 48px;height: 48px;line-height: 48px;font-size: 20px;}
}
@media all and (max-width: 639px) {
	.subscribe__title {font-size: 24px;}
	.subscribe__inner {padding: 16px;}
	#subscribe .container {width: auto;padding: 0;}
}
@media all and (max-width: 374px) {
	#subscribe .form__pp span {display: block;}
}
/**************************************/
/*** Промо ***/
/**************************************/
.promo__inner {padding: 28px 40px;background-color: #E7ECFF;border-radius: 12px;position: relative;}
.promo__inner:before {content: '\e936';font-family: 'icomoon';color: var(--color-white);font-size: 144px;position: absolute;bottom: 8px;right: 64px;z-index: 2;}
.promo__bg-1 {position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='1166' height='165' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1166 152.909V6.699c0-32.692-325.501 64.894-494.501 64.894C502.5 71.593 543 7.57 272.5 91.436S0-68.777 0 43.436v109.468c0 6.628 5.373 11.996 12 11.996h1142c6.63 0 12-5.364 12-11.991Z' fill='%23DAE1FC'/%3E%3C/svg%3E");}
.promo__bg-2 {position: absolute;bottom: 0;right: 0;width: 100%;height: 100%;background-position: bottom right;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='1158' height='181' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1154.59 106.592C998.8-99.67 738.29 47.097 601 102.81 462.999 158.812 381.338 180.809.5 180.809h1145.47c6.63 0 11.03-5.373 11.03-12v-55.042c0-2.562-.87-5.131-2.41-7.175Z' fill='%23C9D4FC'/%3E%3C/svg%3E");}
.promo__content {max-width: 384px;text-align: center;position: relative;}
.promo__title {color: #4D62AE;font-size: 40px;font-weight: 800;}
.promo__text {margin: 8px 0;color: #4D62AE;font-weight: 500;}
.promo__button {padding: 0 48px;background-color: var(--color-white);color: #4D62AE;font-weight: bold;}
@media all and (max-width: 1023px) {
	.promo__inner {padding: 20px 16px;}
	.promo__inner:before {right: 32px;font-size: 122px;}
	.promo__bg-2 {background-size: 100% 90%;}
}
@media all and (max-width: 767px) {
	.promo__title {font-size: 28px;}
	.promo__inner:before {font-size: 80px;}
	.promo__content {max-width: 344px;}
}
@media all and (max-width: 639px) {
	.promo__title {font-size: 24px;}
	.promo__inner:before {right: 16px;}
	#promo .container {width: auto;padding: 0;}
}
@media all and (max-width: 479px) {
	.promo__content {max-width: 100%;}
	.promo__inner:before {display: none;}
}
/**************************************/
/*** Вы смотрели ***/
/**************************************/
#pdt__viewed .viewed__inner {overflow: hidden;}
#pdt__viewed .swiper {width: calc(100% - 178px);padding-left: 16px;overflow: visible;}
#pdt__viewed .swiper-navigate {width: 178px;background-color: #FFF1E8;border-radius: 16px;padding: 16px;position: relative;z-index: 2;}
#pdt__viewed .swiper-navigate:before {content: '';position: absolute;top: 0;right: 0;width: 100%;height: 100%;background-position: bottom;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='181' height='76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 37.814C0-2.873 50-14.83 81.5 22.773 113 60.375 181 33.843 181 19.765v44.258C181 70.651 175.627 76 169 76H12C5.373 76 0 70.704 0 64.076V37.814Z' fill='%23FED9C2'/%3E%3C/svg%3E");}
#pdt__viewed .swiper-navigate:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background-position: bottom;background-size: auto;background-repeat: no-repeat;background-image: url("data:image/svg+xml,%3Csvg width='181' height='81' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 27.257c0-7.434 50.418 42.461 96.627 36.326C140.12 57.81 181-5 181 1v68.012C181 75.639 175.627 81 169 81H12C5.373 81 0 75.638 0 69.011V27.257Z' fill='%23FFE6D7'/%3E%3C/svg%3E");}
#pdt__viewed .swiper-title {font-size: 22px;font-weight: 800;margin-bottom: 16px;line-height: 1.25;position: relative;}
#pdt__viewed .swiper-slide {padding: 12px 4px 0 0;}
#pdt__viewed .product__form:hover {box-shadow: none;}
#pdt__viewed .product__img {height: 176px;}
#pdt__viewed .product__links {flex-direction: row;}
#pdt__viewed .product__link {margin: 0 0 0 4px;}
#pdt__viewed .product__sticker {display: none;}
#pdt__viewed .product__props {display: none;}
#pdt__viewed .product__shop {padding: 10px;}
#pdt__viewed .product__name {text-align: center;justify-content: center;}
#pdt__viewed .product__price {text-align: center;}
#pdt__viewed .price__old {margin: 0 4px 0 0;display: inline-block;}
#pdt__viewed .product__add {width: 48px;height: 48px;line-height: 48px;}
#pdt__viewed .product__add i {font-size: 24px;}
@media all and (max-width: 1199px) {
	#pdt__viewed .product__img {height: 174px;}
}
@media all and (max-width: 1023px) {
	#pdt__viewed .product__img {height: 164px;}
}
@media all and (max-width: 767px) {
	#pdt__viewed .swiper {width: calc(100% - 192px - 16px);}
	#pdt__viewed .swiper-navigate {width: 192px;}
	#pdt__viewed .swiper-navigate:before {background-size: 100%;}
	#pdt__viewed .swiper-navigate:after {background-size: 100%;}
	#pdt__viewed .product__img {height: 178px;}
}
@media all and (max-width: 639px) {
	#pdt__viewed .swiper {width: 100%;padding-left: 0;}
	#pdt__viewed .swiper-navigate {width: 100%;margin: 0 0 16px 0;display: flex;flex-wrap: wrap;align-items: center;}
	#pdt__viewed .swiper-title {width: calc(100% - 80px);margin: 0;font-size: 20px;}
	#pdt__viewed .swiper-navigation {width: 80px;text-align: right;}
	#pdt__viewed .swiper-navigate:before {background-size: 100% 32px;border-radius: 16px;}
	#pdt__viewed .swiper-navigate:after {background-size: 100% 32px;border-radius: 16px;}
	#pdt__viewed .product__img {height: 132px;}
}
@media all and (max-width: 479px) {
	#pdt__viewed .product__img {height: 162px;}
}
@media all and (max-width: 374px) {
	#pdt__viewed .product__img {height: 134px;}
}
/**************************************/
/*** Адаптивное меню ***/
/**************************************/
.adaptive__sideblock {transform: translateX(100%);width: 320px;height: 100vh;background: var(--color-white);top:0;right: 0;position:fixed;transition: all 0.5s ease-in-out;z-index: 12;}
.adaptive__sideblock.is-opened {visibility: visible;transform: translateX(0);}
.adaptive__sideblock-title {color: var(--color-white);background-color: var(--color-primary);padding: 16px 24px;border-radius: 0;cursor: pointer;}
.adaptive__sideblock-title {font-size: 20px;font-weight: bold;}
.adaptive__sideblock-title i {font-size: 12px;color: var(--color-white);background: rgba(255, 255, 255, 0.2);border-radius: 12px;padding: 12px;top: 8px;right: 16px;transition: all 0.3s ease;position: absolute;}
.adaptive__sideblock-content {padding: 16px;height: calc(100vh - 52px - 50px);overflow-y: auto;}
.adaptive__sideblock .catalog__sub {padding: 8px;background-color: var(--color-lightgray);border-radius: 12px;}
.adaptive__sideblock .catalog__sub[data-level="1"] {margin-top: 8px;}
.adaptive__sideblock .catalog__link.is-actived {font-weight: bold;}
.adaptive__sideblock .contacts {margin-top: 16px;padding: 16px;background-color: var(--color-lightgray);border-radius: 12px;}
.adaptive__sideblock .contacts__label {display: none;}
.adaptive__sideblock .contacts__block + .contacts__block {margin-top: 16px;}
.adaptive__sideblock .contacts__fancy {text-align: left;}
.adaprive__navigate {display: none;}
@media all and (max-width: 767px) {
	.adaprive__navigate {display: block;position: fixed;bottom: 0;left: 0;width: 100%;background-color: var(--color-white);box-shadow: 0px 0px 20px var(--color-shadow);z-index: 13;}
	.adaprive__navigate-item {display: flex;flex-direction: column;align-items: center;}
	.adaprive__navigate-item.toTop {display: none;text-align: center;}
	.adaprive__navigate-icon {font-size: 24px;position: relative;}
	.adaprive__navigate-icon i {display: block;}
	.adaprive__navigate-inner {justify-content: space-around;padding: 6px;}
	.adaprive__navigate-title {font-size: 12px;font-weight: 500;margin-top: 2px;}
	.adaprive__navigate-title .cartSumNowDiscount {display: none;}
	.has-items .adaprive__navigate-title .cartSumNowDiscount {display: block;}
	.has-items .adaprive__navigate-label {display: none;}
	.has-items .adaprive__navigate-icon:before {content: '';width: 8px;height: 8px;background-color: var(--color-primary);border-radius: 100%;top: -2px;right: -4px;position: absolute;}
	.adaptive__sideblock-catalog .catalog__link[data-level="0"] {font-weight: bold;}
}
@media all and (max-width: 479px) {
	.adaprive__navigate-title {display: none;}
	.adaprive__navigate-inner {padding: 12px 8px;}
}
/**************************************/
/*** Страница: Ajax добавление товара в корзину ***/
/**************************************/
.noty_bar {margin: 0 0 4px 0;overflow: hidden;position: relative;box-shadow: none;}
.noty_has_progressbar .noty_progressbar {display: block;position: absolute;left: 0;bottom: 0;height: 4px;width: 100%;background-color: var(--color-black);opacity: 0.2;filter: alpha(opacity=20);}
.noty_type__success .noty_progressbar {background-color: var(--color-primary);opacity: 1;}
.noty_type__warning .noty_progressbar {background-color: var(--color-red);opacity: 1;}
/* .noty_type__warning .noty__title {color: var(--color-red);} */
.noty_body {padding: 16px;color: var(--color-white);background-color: var(--color-black);border-radius: 12px;}
.noty_good .noty__title:before {content: '\e906';background-color: var(--color-secondary);}
.noty_bad .noty__title:before {content: '\e90b';background-color: var(--color-red);line-height: 24px;}
.noty__title {border-bottom: 1px solid rgba(255, 255, 255, 0.2);padding-bottom: 16px;font-size: 18px;font-weight: bold;margin-bottom: 16px;width: 100%;position: relative;}
.noty__title:before {margin-right: 8px;color: var(--color-white);font-size: 12px;width: 24px;height: 24px;line-height: 28px;border-radius: 100%;text-align: center;display: inline-block;font-family: 'icomoon';}
.noty__message {line-height: 1.5;display: block;padding-right: 32px;}
.noty__message a {color: var(--color-white);font-weight: bold;}
.noty__content .noty__message {padding-right: 0;}
.noty__buttons {margin-top: 16px;display: none;text-align: center;}
.noty__addto.flex {display: none;}
.noty__addto.flex:last-child {display: flex;}
.noty__image {width: 80px;height: 80px;}
.noty__content {width: calc(100% - 80px);flex-grow: 1;}
.noty__price {margin-top: 16px;}
.noty__buttons {width: 100%;}
.noty_close_button {font-size: 8px;width: 24px;height: 24px;line-height: 24px;color: var(--color-white);background: rgba(255, 255, 255, 0.2);border-radius: 6px;top: 16px;right: 16px;position: absolute;text-align: center;transition: all 0.3s ease;}
.noty_close_button:before {content: '\e90b';font-family: 'icomoon';}
.noty_close_button:hover {background-color: rgba(255, 255, 255, 0.4);}
/**************************************/
/*** Страница: Сравнение ***/
/**************************************/
.compare__nav {margin-bottom: 32px;}
.compare__switch:hover {cursor: pointer;}
.compare__switch-icon {background: var(--color-lightgray);display: inline-block;position: relative;width: 64px;height: 32px;border-radius: 24px;z-index: 0;margin: 0 10px 0 0;padding: 0;border: none;cursor: pointer;transition-duration: 300ms;}
.compare__switch-icon:after {background: var(--color-white);content: '';position: absolute;top: 4px;left: 4px;height: 24px;width: 24px;border-radius: 16px;transition-duration: 300ms;z-index: 1;}
.switch-on .compare__switch-icon {background: var(--color-primary);}
.switch-on .compare__switch-icon:after {left: 36px;}
.compare__buttons a {margin: 16px 32px 0 0;}
.compare__buttons a i {vertical-align: middle;}
.compare__buttons a span {vertical-align: middle;margin-left: 4px;}
.compare__buttons a.is-hide {display: none;}
.compare__line {border-bottom: 1px solid var(--color-border);margin-bottom: 16px;padding-bottom: 16px;}
.compare__line:nth-child(-n+2) {border-bottom: 0;padding-bottom: 0;}
.compare__title {margin-bottom: 16px;width: 100%;font-weight: bold;}
.compare__title input {margin-right: 8px;}
.compare__image {height: 280px;}
.compare__remove {color: var(--color-gray);background-color: var(--color-lightgray);border-radius: 100%;width: 32px;height: 32px;line-height: 30px;top: 8px;right: 8px;position: absolute;}
.compare__remove:hover {color: var(--color-secondary);background-color: var(--color-tertiary);}
.compare__remove i {font-size: 12px;line-height: 1;}
.compare__mod {margin-top: 8px;font-size: 12px;}
.compare__price .price__old {margin-top: 8px;}
.compare__addCart i {display: none;}
.compare__table .hide {display: none;}
.compare__item {position: relative;}
.compare__item .product__form {background-color: transparent;border: 0;box-shadow: none;}
@media all and (max-width: 1199px) {
	.compare__image {height: 228px;}
}
@media all and (max-width: 1023px) {
	.compare__image {height: 224px;}
}
@media all and (max-width: 767px) {
	.compare__image {height: 192px;}
}
@media all and (max-width: 639px) {
	.compare__image {height: 216px;}
}
@media all and (max-width: 479px) {
	.compare__image {height: 164px;}
	.compare__switch-label {display: none;}
}
@media all and (max-width: 374px) {
	.compare__image {height: 136px;}
}
/* Если отключен JS */
.nojs .cartTable__recalc {display: inline-block;}
.nojs .qty__select {opacity: 0;}
.nojs .startOrder {display: none;}
.nojs .lozad {display: none;}
.nojs .compare__item {width: 25%;}