@font-face {
	font-family: "SFProDisplay", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/SFProDisplay-Regular.woff2") format("woff2"),
		url("../fonts/SFProDisplay-Regular.woff") format("woff");
}

@font-face {
	font-family: "SFProDisplay", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/SFProDisplay-Medium.woff2") format("woff2"),
		url("../fonts/SFProDisplay-Medium.woff") format("woff");
}

@font-face {
	font-family: "SFProDisplay", sans-serif;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/SFProDisplay-Semibold.woff2") format("woff2"),
		url("../fonts/SFProDisplay-Semibold.woff") format("woff");
}

@font-face {
	font-family: "SFProDisplay", sans-serif;
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/SFProDisplay-Bold.woff2") format("woff2"), url("../fonts/SFProDisplay-Bold.woff") format("woff");
}

@font-face {
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/barlow-regular.woff2") format("woff2"), url("../fonts/barlow-regular.woff") format("woff");
}

@font-face {
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/barlow-bold.woff2") format("woff2"), url("../fonts/barlow-bold.woff") format("woff");
}

:root {
	--color-main: #2f3035;
	--color-accent: #1c62cd;

	--color-base: #c4c4c4;
	--color-base-light: #f0f0f4;
	--color-base-darker: #888787;

	--color-black: #000000;
	--color-white: #ffffff;

	--font-display: "SFProDisplay", "Arial", "Helvetica", sans-serif;
	--font-barlow: "Barlow", "Verdana", "Geneva", "Tahoma", sans-serif;
}

html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-width: 320px;
	margin: 0;
	padding: 0;
	font-family: "SFProDisplay-Regular", sans-serif;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	color: var(--color-main);
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button:hover {
	cursor: pointer;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	-webkit-clip-path: inset(100%);
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.price {
	font-family: "Barlow", sans-serif;
	font-weight: 700;
}

.sect-banner,
.search,
.categories,
.products,
.banner {
	margin-bottom: 80px;
}

.tab-content {
	display: none;
}

.tab-content.tab-content--active {
	display: block;
}


.header__top-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	min-height: 122px;
	font-family: var(--font-display);
	font-weight: 700;
}

.header__box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header__adress {
	position: relative;
	width: 265px;
	margin-right: 60px;
	padding-left: 30px;
	cursor: pointer;
}

.header__adress::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	width: 30px;
	height: 30px;
	background-image: url("../images/icon_location.svg");
	background-repeat: no-repeat;
}

.user-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-right: 10px;
}

.user-list__item {
	margin-right: 10px;
}

.basket {
	position: relative;
}

.basket__num {
	position: absolute;
	bottom: -5px;
	right: -14px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-family: var(--color-main);
	font-size: 10px;
	line-height: 20px;
	font-weight: 500;
	color: var(--color-white);
	text-align: center;
	background-color: var(--color-accent);
}

.menu__list {
	display: flex;
	flex-wrap: wrap;
}

.menu__mobile {
	display: none;
}

.menu__item + .menu__item {
	margin-left: 56px;
}

.menu-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	min-height: 53px;
	background-color: var(--color-base-light);
}

.menu-categories__link {
	position: relative;
	padding: 15px 0;
}


.current .menu-categories__link {
	font-weight: bold;
}

.menu-categories__link:hover {
	color: var(--color-black);
}

.menu-categories__link::after {
	content: "";
	position: absolute;
	bottom: -3px;
	right: 0;
	left: auto;
	width: 0;
	height: 3px;
	background-color: var(--color-accent);
	transition: width 0.3s;
}

.menu-categories__link:hover::after {
	left: 0;
	right: auto;
	width: 100%;
	height: 3px;
	background-color: var(--color-accent);
}

.menu-categories__item--active .menu-categories__link::after {
	width: 100%;
	height: 3px;
	background-color: var(--color-accent);
	color: var(--color-black);
}

/* button-burger */

.button-burger {
	width: 30px;
	height: 30px;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 0;
	background: none;
	border: none;
}

.button-burger__icon {
	position: relative;
	display: block;
	width: 30px;
	height: 3px;
	border-radius: 2px;
	background-color: var(--color-black);
	transition: 0.2s ease-in 0.1s;
}

.button-burger__icon::before {
	position: absolute;
	left: 0;
	top: -10px;
	content: "";
	width: 30px;
	height: 3px;
	border-radius: 2px;
	background-color: var(--color-black);
	transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}

.button-burger__icon::after {
	position: absolute;
	left: 0;
	top: 10px;
	content: "";
	width: 30px;
	height: 3px;
	background-color: var(--color-black);
	border-radius: 2px;
	transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}

.button-burger__icon.button-burger__icon--active {
	background-color: transparent;
}

.button-burger__icon.button-burger__icon--active::before {
	transform: rotate(45deg);
	top: 0;
	transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}

.button-burger__icon.button-burger__icon--active::after {
	transform: rotate(-45deg);
	top: 0;
	transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}

/* sect-banner */

.sect-banner {
	margin-top: 80px;
}

.sect-banner__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.slider-banner {
	position: relative;
	max-width: 840px;
	max-height: 400px;
}

.slider-banner__img {
	max-width: 840px;
	max-height: 400px;
}

.slider-banner .slick-arrow.slick-prev,
.slider-banner .slick-arrow.slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	border: none;
	background: transparent;
	font-size: 0;
	width: 25px;
	height: 40px;
	padding: 5px;
}

.slider-banner .slick-arrow.slick-prev {
	left: 20px;
	background: url("../images/icon_errow-prev.svg") no-repeat center;
}

.slider-banner .slick-arrow.slick-next {
	right: 20px;
	background: url("../images/icon_errow-next.svg") no-repeat center;
}

.slider-banner .slick-dots {
	position: absolute;
	bottom: 37px;
	left: 0;
	right: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.slider-banner .slick-dots li {
	margin-right: 9px;
}

.slider-banner .slick-dots li:last-child {
	margin-right: 0;
}

.slider-banner li button {
	display: block;
	margin: 0;
	padding: 0;
	border: 1px solid var(--color-white);
	border-radius: 50%;
	font-size: 0;
	line-height: 0;
	background: none;
	width: 11px;
	height: 11px;
}

.slider-banner .slick-active button {
	background: var(--color-white);
}

.sale {
	width: 265px;
	border: 1px solid var(--color-base);
	border-radius: 3px;
	overflow: hidden;
}

.sale__inner-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.sale__action {
	padding: 8px 20px;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 0.1em;
	color: var(--color-white);
	text-transform: uppercase;
	background: var(--color-accent);
}

.sale__price-new {
	margin-right: 6px;
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 27px;
	line-height: 32px;
	color: var(--color-accent);
}

.sale__price-old,
.sale__price-old span {
	position: relative;
	font-size: 14px;
	line-height: 17px;
	color: var(--color-base);
	font-weight: 400;
	text-align: right;
}

.sale__price-old {
	margin-right: 3px;
}

.sale__price-old span {
	display: inline-block;
	padding: 4px 8px 3px 4px;
}

.sale__price-old span::before {
	content: "";
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	transform: rotate(-12deg) translateY(50%);
	height: 1px;
	background-color: var(--color-base);
}

.sale__img {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	object-fit: contain;
}

.sale__title {
	margin-bottom: 8px;
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	text-align: center;
}

.sale__timing {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	min-height: 99px;
	font-size: 18px;
	line-height: 21px;
	text-align: center;
	background: var(--color-base-light);
}

.sale__timing span {
	font-size: 18px;
	line-height: 21px;
	text-align: center;
}

.sale__timing time {
	font-family: var(--font-barlow);
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	font-weight: 700;
	color: var(--color-accent);
}

/*search*/

.search__tabs {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.search__tabs-item {
	margin-right: 28px;
	padding: 11px 26px;
	border-radius: 5px;
	font-size: 20px;
}

.search__tabs-item.tab-item--active {
	display: block;
	font-weight: 700;
	background-color: var(--color-base-light);
}

.search__content-form {
	display: flex;
}

.search__content-form input {
	width: 100%;
	margin-right: -7px;
	padding: 15px 0;
	padding-right: 20px;
	padding-left: 20px;
	border: none;
	border-radius: 3px;
	font: inherit;
	background-color: var(--color-base-light);
}

.search__content-form button {
	margin: 0;
	padding: 16px 40px;
	border: none;
	border-radius: 3px;
	font-family: inherit;
	font-size: 14px;
	line-height: auto;
	font-weight: bold;
	color: var(--color-white);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--color-accent);
}

.search__content-form input::-webkit-input-placeholder {
	color: var(--color-base);
}

.search__content-form input::-moz-placeholder {
	color: var(--color-base);
}

.search__content-form input:-moz-placeholder {
	color: var(--color-base);
}

.search__content-form input:-ms-input-placeholder {
	color: var(--color-base);
}

/*categories*/

.categories__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.categories__item {
	margin-bottom: 30px;
	transition: all 0.2s;
}

.categories__item:hover {
	box-shadow: 3px 3px 20px rgba(50, 50, 50, 0.25);
}

.categories__item:hover .categories__item-title {
	color: var(--color-accent);
}

.categories__item-inner {
	display: flex;
	justify-content: space-between;
	width: 370px;
	min-height: 130px;
	border: 1px solid var(--color-base);
	border-radius: 3px;
	background: var(--color-white);
}

.categories__item-text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 0 15px 20px;
}

.categories__item-title {
	font-family: var(--font-barlow);
	font-size: 24px;
	line-height: auto;
	font-weight: 700;
	transition: 0.2s;
}

.categories__item-more {
	font-size: 14px;
	line-height: 16px;
	color: var(--color-base);
	background-image: url("../images/icon_arrow-right.svg");
	background-repeat: no-repeat;
	background-position: 70px center;
}

.categories__item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

/*products*/

.products__content {
	margin-bottom: 35px;
}

.products__title {
	margin-bottom: 25px;
	font-size: 25px;
	line-height: 30px;
}

.products__tabs {
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 25px;
	overflow-x: auto;
}

.products__tabs-item {
	display: inline-block;
	margin-right: 50px;
	padding-bottom: 8px;
	font-size: 15px;
	line-height: 18px;
}

.products__tabs-item.tab-item--active {
	border-bottom: 2px solid var(--color-accent);
}

.products__tabs-item:hover {
	color: var(--color-black);
}

.product-item {
	position: relative;
	width: 270px;
	min-height: 403px;
	border: 1px solid var(--color-base);
	transition: all 0.2s;
}

.product-item-line {
	width: 100%;
}

.product-item-line .product-item__hover {
	left: 50%;
	transform: translateX(-50%);
}

.product-item:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.product-item__inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 0 20px;
	padding-top: 52px;
	text-align: center;
}

.product-item__inner:hover {
	border-color: var(--color-white);
}

.product-item__img {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 14px;
	height: 200px;
}

.product-item__title {
	margin-bottom: 25px;
	font-size: 18px;
	line-height: 21px;
	font-weight: 400;
}

.product-item__price {
	padding-bottom: 31px;
	font-size: 30px;
	line-height: 36px;
}

.product-item__favorite,
.product-item__basket {
	position: absolute;
	border: none;
	z-index: 1;
}

.product-item__favorite {
	top: 16px;
	right: 19px;
	width: 24px;
	height: 22px;
	background-color: transparent;
	background-image: url("../images/icon_favorite.svg");
	background-repeat: no-repeat;
	background-position: right center;
}

.product-item__favorite--checked {
	background-image: url("../images/icon_favorite-checked.svg");
	background-repeat: no-repeat;
	background-position: right center;
}

.product-item__basket {
	right: -1px;
	bottom: -1px;
	padding: 8px 15px;
	border-radius: 10px 0 0 0;
	background-color: var(--color-accent);
}

.product-item__hover {
	position: absolute;
	top: 30%;
	display: inline-block;
	width: 230px;
	border-radius: 3px;
	padding: 21px 18px;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: 0.3s;
}

.product-item__inner:hover .product-item__hover {
	opacity: 1;
}

.product-item:hover .product-item__title,
.product-item:hover .product-item__price {
	color: var(--color-accent);
}

/*---not available product*/
/*product-item--sale*/

.product-item__sale {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	padding: 6px 16px;
	border-radius: 2px 0 0 0;
	background-color: var(--color-accent);
	font-size: 12px;
	line-height: 14px;
	color: var(--color-white);
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.product-item.product-item--sale .product-item__sale {
	display: inline-block;
}

/*---not available product*/
/*product-item--not*/

.product-item__not {
	display: none;
}

.product-item.product-item--not .product-item__not {
	display: flex;
	margin-top: 10px;
	flex-direction: column;
	align-items: center;
}

.product-item__not-text {
	margin-bottom: 13px;
	font-size: 18px;
	line-height: 21px;
	font-weight: bold;
}

.product-item__not-link {
	font-size: 16px;
	line-height: 19px;
	color: var(--color-accent);
	text-decoration: underline;
}

.product-item.product-item--not .product-item__price,
.product-item.product-item--not .product-item__basket {
	display: none;
}

.product-item.product-item--not .product-item__title {
	margin-bottom: 0;
}

.product-item.product-item--not .product-item__inner {
	margin-bottom: 7px;
}

/*slider-products*/

.slider-products.slick-slider {
	position: relative;
}

.slider-products__slide.slick-slide {
	display: flex;
	justify-content: center;
}

.slider-products .slick-arrow.slick-prev,
.slider-products .slick-arrow.slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	border: none;
	background: transparent;
	font-size: 0;
	width: 25px;
	height: 40px;
	padding: 5px;
}

.slider-products .slick-arrow.slick-prev {
	left: -40px;
	background: url("../images/icon_errow-black-prev.svg") no-repeat center;
}

.slider-products .slick-arrow.slick-next {
	right: -40px;
	background: url("../images/icon_errow-black-next.svg") no-repeat center;
}

.products__more {
	text-align: center;
}

.products__more-link {
	display: inline-block;
	padding: 17px 43px;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background-color: var(--color-base-light);
}

.products__more-link:hover {
	color: var(--color-black);
}
.slider-products .slick-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
}

.slider-products li {
	margin-right: 20px;
	margin-bottom: 20px;
}

.slider-products li:last-child {
	margin-right: 0;
}

.slider-products li button {
	width: 14px;
	height: 14px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 50%;
	font-size: 0;
	background: var(--color-base);
}

.slider-products li.slick-active button {
	width: 14px;
	height: 14px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 50%;
	font-size: 0;
	background: var(--color-accent);
}

.banner__link {
	display: flex;
	justify-content: center;
}

/*footer*/

.footer {
	min-width: 100%;
	padding-top: 43px;
	padding-bottom: 27px;
	background-color: var(--color-base-light);
}

.footer__top {
	display: flex;
	margin-bottom: 50px;
}

.footer__subscribe,
.footer__info--info,
.footer__info--store {
	flex-shrink: 0;
	margin-right: 20px;
}

.footer__subscribe {
	width: 428px;
}
.footer__info--info {
	width: 174px;
}
.footer__info--store {
	width: 220px;
}

.footer__subscribe-title,
.footer__info-title,
.footer__info-text {
	font-size: 14px;
	line-height: 17px;
	font-weight: bold;
}

.footer__info-title {
	pointer-events: none;
}

.footer__info-text:hover {
	color: var(--color-black);
}

.footer__subscribe-title {
	margin-bottom: 34px;
}

.footer__subscribe-form {
	display: flex;
}

.footer__subscribe-form input {
	width: 185px;
	padding: 8px 12px;
	border: none;
}

.footer__subscribe-form input::-webkit-input-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: var(--color-base);
}

.footer__subscribe-form input::-moz-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: var(--color-base);
}

.footer__subscribe-form input:-moz-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: var(--color-base);
}

.footer__subscribe-form input:-ms-input-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: var(--color-base);
}

.footer__subscribe-form button {
	padding: 10px 16px;
	border: none;
	font-size: 11px;
	line-height: 13px;
	font-weight: 600;
	color: var(--color-white);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background-color: var(--color-accent);
}

.footer__info-text {
	font-weight: 400;
}

.footer__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

.footer__social-item {
	margin-top: 5px;
	margin-right: 30px;
	margin-bottom: 5px;
}

.footer__social-item:last-child {
	margin-right: 0;
}

.footer__social-link {
	display: block;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
}

.footer__social-link--telegram {
	background-image: url("../images/icon_instagram.svg");
}
.footer__social-link--vk {
	background-image: url("../images/icon_vk.svg");
}
.footer__social-link--facebook {
	background-image: url("../images/icon_facebook.svg");
}
.footer__social-link--youtube {
	background-image: url("../images/icon_youtube.svg");
}

.footer__bottom {
	text-align: center;
}

.footer__bottom-link {
	font-size: 10px;
	line-height: 12px;
}

.footer__bottom-link:first-child {
	margin: 0 80px;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
}

/*breadcrumbs*/

.breadcrumbs {
	margin-top: 40px;
	margin-bottom: 40px;
}

.breadcrumbs__item {
	position: relative;
	margin-right: 10px;
	padding-right: 20px;
}

.breadcrumbs__item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 10px;
	background: url("../images/icon_arrow-bread.svg") no-repeat center;
}

.breadcrumbs__item:last-child::after {
	display: none;
}

.breadcrumbs__link {
	font-size: 15px;
	line-height: 24px;
	color: var(--color-base);
}

/*catalog*/
/*catalog*/

.catalog {
	margin-bottom: 100px;
}

.catalog__title {
	margin-bottom: 26px;
	font-weight: bold;
	font-size: 30px;
	line-height: 36px;
}

.catalog__filter-top {
	margin-bottom: 47px;
}

.catalog-items {
	display: grid;
	justify-content: center;
	align-items: start;
	grid-gap: 0;
	width: 100%;
}

.catalog-items__inner {
	justify-self: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
	align-items: start;
}

.filter-top {
	display: flex;
	justify-content: space-between;
}

.filter-top__items {
	display: flex;
	flex-wrap: wrap;
}

.filter-top__items-btn {
	margin-right: 8px;
	padding: 4px 22px;
	border: none;
	border-radius: 3px;
	font-size: 14px;
	line-height: 17px;
	color: var(--color-base-darker);
	background: var(--color-base-light);
	cursor: pointer;
}

.filter-top__items-btn:last-child {
	margin-right: 0;
}

/*filter-top__swich*/

.filter-top__swich {
	display: flex;
	align-items: center;
}

.filter-top__btn-filter {
	display: none;
}

/*=========================================================*/
.filter-top__swich-select {
	margin-right: 34px;
	font-size: 14px;
	line-height: 17px;
}

.filter-top__swich-select:focus + .jq-selectbox__select {
	box-shadow: 0px 0px 0px 1px var(--color-white), 0px 0px 0px 3px #000;
}

.filter-top__swich-select .jq-selectbox__select {
	position: relative;
	min-width: 178px;
	padding: 8px 0;
	padding-left: 20px;
	border: 1px solid var(--color-base);
}

.filter-top__swich-select .jq-selectbox__select-text {
	overflow: visible;
}

.filter-top__swich-select .jq-selectbox__trigger {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 12px;
	height: 8px;
	transform: translateY(-50%) rotate(180deg);
	background-image: url("../images/arrow-drop.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: 0.3s;
}

.filter-top__swich-select.dropdown.opened .jq-selectbox__trigger {
	transform: translateY(-50%) rotate(0deg);
}

.filter-top__swich-select .jq-selectbox__dropdown {
	margin-top: -1px;
	min-width: 178px;
	padding: 8px 0;
	border: 1px solid var(--color-base);
	background-color: var(--color-white);
}

.filter-top__swich-select .jq-selectbox__dropdown li {
	padding: 5px 0;
	padding-left: 20px;
}

.filter-top__swich-select .jq-selectbox__dropdown li:hover {
	background: var(--color-base-light);
}

.filter-top__swich-button {
	opacity: 0.3;
}

.filter-top__swich-button.filter-top__swich-button--active {
	opacity: 1;
}

.filter-top__swich-grid,
.filter-top__swich-line {
	margin: 0;
	padding: 0;
	border: none;
}

.filter-top__swich-grid {
	min-width: 23px;
	min-height: 21px;
	margin-right: 10px;
	background: url("../images/icon_filter-grid.svg") no-repeat center;
}

.filter-top__swich-line {
	min-width: 25px;
	min-height: 19px;
	background: url("../images/icon_filter-line.svg") no-repeat center;
}

/*----------------------*/

/*catalog__inner*/

.catalog__inner {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.filter-aside {
	flex-shrink: 0;
	width: 290px;
	margin-right: 10px;
}

.pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 40px;
}

.pagination__list {
	display: flex;
	flex-wrap: wrap;
}

.pagination__list-item {
	margin-right: 10px;
}

.pagination__list-item a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 39px;
	height: 39px;
	font-family: var(--font-barlow);
	font-style: normal;
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: var(--color-accent);
	border: 2px solid var(--color-accent);
}

.pagination__list-item a[href] {
	color: var(--color-base);
	border: 2px solid transparent;
}

/*filter-aside tabs*/

.filter-aside__tabs {
	margin-bottom: 40px;
}

.filter-aside__tabs-item {
	padding-bottom: 5px;
	font-size: 16px;
	line-height: 19px;
	color: var(--color-base);
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.filter-aside__tabs-item:first-child {
	margin-right: 46px;
}

.filter-aside__tabs-item.tab-item--active {
	font-weight: 700;
	border-bottom: 2px solid var(--color-accent);
	color: var(--color-main) ;
}

.filter-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

/*filter-aside checkbox*/

.filter-form__list-item input[type="checkbox"] {
	margin: 0;
	padding: 0;
}

.filter-form__list-item input[type="checkbox"] + label {
	position: relative;
	padding-left: 26px;
	font-size: 14px;
	line-height: 17px;
	color: var(--color-main);
}

.filter-form__list-item input[type="checkbox"] + label:hover,
.filter-form__list-item input[type="checkbox"]:hover + label::before {
	cursor: pointer;
	color: var(--color-black);
}

.filter-form__list-item input[type="checkbox"] + label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border: 1px solid rgba(204, 204, 204, 0.6);
	border-radius: 2px;
}

.filter-form__list-item input[type="checkbox"]:focus + label::before {
	box-shadow: 0px 0px 0px 1px var(--color-white), 0px 0px 0px 3px #000;
}

.filter-form__list-item input[type="checkbox"]:hover + label::before {
	border: 1px solid rgba(204, 204, 204, 0.8);
}

.filter-form__list-item input[type="checkbox"]:active + label::before {
	border: 1px solid rgba(204, 204, 204, 1);
}

.filter-form__list-item input[type="checkbox"]:disabled + label::before {
	border: 1px solid rgba(204, 204, 204, 0.3);
}

.filter-form__list-item input[type="checkbox"]:checked + label::before {
	border: 1px solid var(--color-accent);
	background-color: var(--color-accent);
	background-image: url("../images/icon_checked.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.filter-form__list-item input[type="checkbox"]:checked:hover + label::before {
	border: 1px solid var(--color-accent);
	background-color: var(--color-accent);
}

.filter-form__list-item input[type="checkbox"]:checked:active + label::before {
	border: 1px solid var(--color-accent);
	background-color: var(--color-accent);
}

.filter-form__list-item input[type="checkbox"]:checked:disabled + label::before {
	border: 1px solid transparent;
	background-color: rgba(17, 102, 204, 0.3);
}

/*---------------------------------*/

.filter-form__inner {
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
}

.filter-form__legend {
	position: relative;
	margin-bottom: 15px;
	padding-left: 26px;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	cursor: pointer;
}

.filter-form__legend::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 12px;
	height: 8px;
	background-image: url("../images/arrow-drop.png");
	background-repeat: no-repeat;
	background-position: 0 0;
	transform: rotate(180deg);
	transition: transform 0.3s;
}

.filter-form__legend > button {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	font: inherit;
}

.filter-form__list-item > input {
	margin-bottom: 15px;
	padding: 8px 20px;
	border: 1px solid var(--color-base-light);
	font-size: 12px;
	line-height: 14px;
}

.filter-form__legend + input::-webkit-input-placeholder {
	color: var(--color-base);
}

.filter-form__legend + input::-moz-placeholder {
	color: var(--color-base);
}

.filter-form__legend + input:-moz-placeholder {
	color: var(--color-base);
}

.filter-form__legend + input:-ms-input-placeholder {
	color: var(--color-base);
}

.filter-form__legend--active.filter-form__legend::before {
	transform: rotate(0deg);
}

.filter-form__list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.filter-form__list.filter-form__list--appear {
	margin-bottom: 20px;
}

.filter-form__list--more {
	display: none;
}

.filter-form__list--appear .filter-form__list-item {
	width: 50%;
	margin-bottom: 20px;
}

.filter-form__list--new .filter-form__list-item {
	margin-right: 20px;
}

.filter-form__list.filter-form__list--mb0 {
	margin-bottom: 0;
}

.filter-form__inner-more {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	border: none;
	font-size: 14px;
	line-height: 17px;
	text-decoration: underline;
	color: var(--color-accent);
	background-color: transparent;
}

.filter-form__list-item.filter-form__list-item--more {
	width: 100%;
}

.filter-form__list-item.filter-form__list-item--input {
	width: 100%;
	margin-bottom: 0;
}

/*range*/

.filter-form__legend.filter-form__legend--range {
	margin-bottom: 0;
}

.irs--flat {
	margin-top: -25px;
	width: 100%;
}

.irs--flat {
	height: 0;
}

.irs .irs-grid,
.irs-single,
.irs-min,
.irs-max,
.irs-from,
.irs-to {
	display: none;
}

.irs--flat .irs-line {
	top: 30px;
	height: 2px;
	background-color: var(--color-base);
	border-radius: 1px;
}

.irs--flat .irs-bar {
	top: 29px;
	height: 4px;
	background-color: var(--color-accent);
}

.irs--flat .irs-handle > i:first-child {
	position: absolute;
	display: block;
	top: 5px;
	left: 50%;
	width: 8px;
	height: 8px;
	margin-left: -1px;
	border-radius: 50%;
	background-color: var(--color-accent);
}

.irs--flat .irs-handle:hover {
	cursor: pointer;
}

.filter-form__list.filter-form__list--range {
	display: block;
}

.range__controls {
	display: flex;
	justify-content: space-between;
}

.range__controls label {
	display: flex;
	align-items: center;
}

.range__controls label span {
	display: inline-block;
	margin-right: 12px;
	font-size: 14px;
	line-height: 17px;
	color: var(--color-base);
}

.range__controls-from,
.range__controls-to {
	max-width: 60px;
	margin: 0;
	padding: 0;
	border: none;
	font-size: 14px;
	line-height: 17px;
	text-decoration-line: underline;
}

.filter-form__list-item--perfomance {
	margin-bottom: 20px;
}

.filter-form__list-item--perfomance:last-child {
	margin-bottom: 0;
}

.filter-form__list-item.filter-form__list-item--perfomance {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-base);
}

.filter-form__list-item-title {
	padding-left: 13px;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
}

.filter-form__list.filter-form__list--perfomance {
	display: block;
}

.filter-select--perfomance {
	font-family: var(--font-barlow);
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
}

.filter-select--perfomance .jq-selectbox__select {
	display: flex;
	max-width: 68px;
	height: 17px;
	padding-right: 15px;
}
.filter-select--perfomance:focus + .jq-selectbox__select {
	box-shadow: 0px 0px 0px 1px var(--color-white), 0px 0px 0px 3px #000;
}

.jq-selectbox__select:hover {
	cursor: pointer;
}

.filter-select--perfomance .jq-selectbox__select-text {
	padding-right: 5px;
	width: auto;
	text-align: right;
}

.filter-select--perfomance .jq-selectbox__trigger-arrow {
	width: 12px;
	height: 8px;
	margin-left: 7px;
	padding-top: 20px;
	background-image: url("../images/arrow-drop.png");
	background-repeat: no-repeat;
	background-position: center;
	transform: rotate(180deg);
	transition: transform 0.3s;
}

.filter-select--perfomance.dropdown .jq-selectbox__trigger-arrow {
	transform: rotate(0deg);
}

.filter-select--perfomance .jq-selectbox__dropdown {
	width: 100%;
	margin-top: 3px;
	padding: 8px 0;
	border: 1px solid var(--color-base-light);
	background: var(--color-white);
}

.filter-select--perfomance .jq-selectbox__dropdown ul li {
	padding: 4px 15px;
}

.filter-select--perfomance .jq-selectbox__dropdown ul li:hover {
	background: rgba(107, 126, 172, 0.05);
}

.filter-form__list.filter-form__list--action {
	display: flex;
	justify-content: space-between;
}

.filter-form__list.filter-form__list--action .filter-form__list-item {
	width: auto;
}

.filter-form__list-item.filter-form__list-item--action input[type="checkbox"] {
	display: none;
}

.filter-form__list-item.filter-form__list-item--action input[type="checkbox"] + label {
	position: static;
	display: block;
	padding-left: 0;
	padding: 8px 15px;
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	color: var(--color-white);
	letter-spacing: 0.07em;
	background-color: var(--color-accent);
}

.filter-form__list-item.filter-form__list-item--action input[type="checkbox"] + label::before {
	display: none;
}

.filter-form__list-item.filter-form__list-item--action:last-child input[type="checkbox"] + label {
	background-color: var(--color-black);
}

.filter-form__list-item.filter-form__list-item--action input[type="checkbox"] + label:hover,
.filter-form__list-item.filter-form__list-item--action input[type="checkbox"]:hover {
	cursor: pointer;
	color: var(--color-white);
}

.filter-form__list-item.filter-form__list-item--action input[type="checkbox"]:focus + label {
	box-shadow: 0px 0px 0px 1px var(--color-white), 0px 0px 0px 3px #000;
}

.filter-form__list-item.filter-form__list-item--action input[type="checkbox"]:disabled + label {
	border: none;
	background: var(--color-base-light);
	color: var(--color-base-darker);
	cursor: default;
}

.filter-form__submit {
	display: inline-block;
	width: 90%;
	margin-bottom: 15px;
	border: none;
	background: var(--color-base-light);
	font-size: 15px;
	line-height: 50px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-base-darker);
}

.filter-form__submit:hover {
	background: var(--color-base);
	color: var(--color-white);
}

.filter-form__legend--parametr {
	width: 90%;
	margin: 0;
	margin-bottom: 15px;
	padding-right: 40px;
	text-align: center;
	font-size: 13px;
	line-height: 16px;
}

.filter-form__legend.filter-form__legend--parametr::before {
	content: "";
	position: absolute;
	top: 5px;
	left: auto;
	right: 24px;
	width: 12px;
	height: 8px;
	background-image: url("../images/arrow-drop.png");
	background-repeat: no-repeat;
	background-position: 0 0;
	transform: rotate(180deg);
	transition: transform 0.3s;
}

.filter-form__legend--active.filter-form__legend--parametr::before {
	transform: rotate(0deg);
}

.filter-form__list.filter-form__list--more {
	margin-bottom: 0;
}

.filter-form__reset {
	background-color: transparent;
	border: none;
	margin: 0;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0;
	border: none;
	font-size: 13px;
	line-height: 16px;
	text-decoration-line: underline;
	color: var(--color-base);
}

.filter-form__reset:hover {
	color: var(--color-base);
}

.merchandise {
	margin-bottom: 82px;
}

.merchandise__inner {
	display: flex;
	justify-content: space-between;
}

.merchandise__img-box {
	position: relative;
	width: 500px;
	padding-top: 64px;
	text-align: center;
}

.merchandise__sale {
	display: none;
}

.merchandise--sale .merchandise__sale {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	padding: 13px 26px;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 0.12em;
	color: var(--color-white);
	text-transform: uppercase;
	background: var(--color-accent);
	border-radius: 3px;
}

.merchandise__img {
	display: block;
	margin-bottom: 36px;
}

.merchandise__price-old {
	position: relative;
	display: inline-block;
	margin-bottom: 6px;
	font-family: var(--font-barlow);
	font-weight: 400;
	font-size: 30px;
	line-height: 36px;
	opacity: 0.6;
}

.merchandise__price-old::before {
	content: "";
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	transform: rotate(-9deg) translateY(50%);
	height: 1px;
	background-color: var(--color-main);
}

.merchandise__price-new {
	margin-bottom: 17px;
	font-family: var(--font-barlow);
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
}

.merchandise__text {
	font-family: var(--font-display);
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-accent);
}

.merchandise__content {
	width: 570px;
}

.merchandise__title {
	margin-bottom: 6px;
	font-family: var(--font-display);
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
}

.merchandise__code {
	margin-bottom: 25px;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-base-darker);
}

.merchandise__btn-box {
	display: flex;
	align-items: flex-end;
	margin-bottom: 40px;
}

.merchandise__rate-yo-box {
	align-self: center;
}

.merchandise__btn-favorite,
.merchandise__btn-graph {
	margin: 0;
	margin-right: 27px;
	padding: 0;
	background-color: transparent;
	border: none;
}

/* tabs */

.merchandise__tabs-box {
	margin-bottom: 45px;
}
.merchandis__tabs {
	margin-bottom: 20px;
}

.merchandise__tabs-item.tab-item {
	margin-right: 19px;
	padding-right: 10px;
	padding-bottom: 3px;
	font-size: 20px;
	line-height: 24px;
	color: var(--color-base);
}

.merchandise__tabs-item.tab-item.tab-item--active {
	border-bottom: 2px solid var(--color-accent);
	font-weight: 700;
	color: var(--color-main);
}

.merchandise__table {
	width: 100%;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 24px;
	border-collapse: collapse;
}

.merchandise__table td {
	padding-top: 10px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--color-base-light);
}

.merchandise__table .merchandise__link-more {
	display: inline-block;
	border-bottom: 1px solid #1c62cd;
	font-size: 14px;
	line-height: 17px;
	color: #1c62cd;
}

.merchandise__btn-bye {
	padding: 16px 53px;
	border: none;
	border-radius: 3px;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-white);
	background-color: var(--color-accent);
}

/* merchandise-details__tabs */

.merchandise-details {
	margin-bottom: 60px;
	var(--color-base-light);
}

.merchandise-details__tabs {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	padding: 18px 34px;
	font-family: "SFProDisplay-Regular", sans-serif;
	font-size: 20px;
	line-height: 24px;
	color: var(--color-base-darker);
	background-color: var(--color-base-light);
}

.merchandise-details__item.tab-item--active {
	position: relative;
	color: var(--color-black);
}

.merchandise-details__item.tab-item--active::before {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 110%;
	height: 2px;
	background-color: var(--color-accent);
}

.merchandise-details__form-search-box {
	display: flex;
	margin-bottom: 50px;
	font-size: 17px;
	line-height: 20px;
}

.merchandise-details__form-search-input {
	position: relative;
	display: flex;
	align-items: center;
	margin-right: 155px;
}

.merchandise-details__form-search-input input[type="text"] {
	width: 313px;
	padding: 9px 17px;
	padding-right: 38px;
	font: inherit;
	color: var(--color-main);
	background: var(--color-base-light);
	border: none;
	border-radius: 3px;
}

.merchandise-details__form-search-input p {
	margin-right: 17px;
}

.merchandise-details__form-search-input button {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: none;
	background: url("../images/icon_search.svg") no-repeat center;
}

.merchandise-details__form-radio-input {
	display: flex;
	align-items: center;
	margin-right: 54px;
	white-space: nowrap;
}

.merchandise-details__form-radio-input input[type="radio"] + label {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.merchandise-details__form-radio-input input[type="radio"] + label span {
	display: block;
	min-width: 14px;
	min-height: 14px;
	border: 2px solid var(--color-base);
	border-radius: 2px;
	margin-right: 15px;
	cursor: pointer;
}

.merchandise-details__form-radio-input input[type="radio"]:hover + label span {
	border: 2px solid rgb(218, 218, 218, 0.6);
}

.merchandise-details__form-radio-input input[type="radio"]:active + label span {
	border: 2px solid #dadada;
}

.merchandise-details__form-radio-input input[type="radio"]:checked + label span {
	position: relative;
	border: 2px solid #1c62cd;
}

.merchandise-details__form-radio-input input[type="radio"]:checked + label span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 1px;
	width: 6px;
	height: 6px;
	background-color: var(--color-accent);
}

.merchandise-details__form-radio-input input[type="radio"]:hover:checked + label span {
	border: 2px solid rgb(28, 98, 205, 0.8);
}

.merchandise-details__form-radio-input input[type="radio"]:hover:checked + label span::before {
	background-color: rgb(28, 98, 205, 0.8);
}

.merchandise-details__form-radio-input input[type="radio"]:active:checked + label span {
	border: 2px solid var(--color-accent);
}

.merchandise-details__form-radio-input input[type="radio"]:focus + label span {
	box-shadow: 0 0 0 1px var(--color-white), 0 0 0 3px #000000;
}

.merchandise-details__table table {
	border-collapse: collapse;
}

.merchandise-details__table > table {
	width: 100%;
}

.merchandise-details__table > table tr {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.merchandise-details__table-col tr {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.merchandise-details__table-col tr th {
	padding-bottom: 40px;
}

.merchandise-details__table-col tr td {
	min-height: 70px;
}

.merchandise-details__table table th {
	font-size: 20px;
	line-height: 24px;
	color: #2f3035;
}

.merchandise-details__table table td {
	font-size: 16px;
	line-height: 28px;
	color: rgb(47, 48, 53, 0.7);
}

.merchandise-details__table button {
	margin-top: 20px;
	padding: 10px 40px;
	border: none;
	border-radius: 3px;
	font-style: normal;
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 1px;
	color: var(--color-white);
	background-color: var(--color-accent) ;
	text-transform: uppercase;
}

.footer__info-list {
	display: block;
}

.merchandise__btn-bye.merchandise__btn-bye--mobile {
	display: none;
}

/* media */

@media (max-width: 1230px) {
	.catalog-items__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1170px) {
	/* banner */
	.sect-banner {
		margin-top: 76px;
	}

	.sect-banner__inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.slider-banner__img {
		max-width: 100%;
		height: auto;
	}

	.slider-banner {
		margin-bottom: 40px;
	}
	/* banner */

	/* categories */
	.categories__list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.categories__item {
		margin-bottom: 30px;
		transition: all 0.2s;
	}

	.categories__item:nth-child(odd) {
		margin-right: 30px;
	}
	/* categories */
}

@media (max-width: 1130px) {
	.footer__top {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 50px;
	}

	.footer__social {
		justify-content: center;
		width: 100%;
		margin-top: 40px;
	}

	.footer__info--store {
		width: 154px;
	}
}

@media (max-width: 1080px) {
	.menu__item + .menu__item {
		margin-left: 20px;
	}

	.header__adress {
		width: 237px;
	}

	.merchandise-details__form-search-box {
		display: flex;
		flex-wrap: wrap;
	}

	.merchandise-details__form-search-input {
		margin-right: 40px;
	}

	.merchandise-details__form-radio-input {
		margin-right: 30px;
	}

	.merchandise-details__form-radio-input:last-child {
		margin-right: 0;
	}
}

@media (max-width: 1054px) {
	.slider-banner {
		width: 100%;
	}

	/* footer */
}

@media (max-width: 986px) {
	.menu__item + .menu__item {
		margin-left: 20px;
	}

	.logo {
		margin-left: auto;
		margin-right: auto;
	}

	.button-burger {
		display: flex;
	}

	.menu.menu--bobile {
		display: none;
	}

	.menu__mobile {
		position: relative;
		width: 300px;
		height: 100vh;
		background-color: var(--color-white);
		box-shadow: 2px 0 15px 1px var(--color-base);
		overflow-y: scroll;
	}

	.menu__list-mobile-item {
		padding-top: 30px;
		padding-bottom: 10px;
		padding-left: 50px;
		border-bottom: 2px solid var(--color-base);
	}

	.menu__list-mobile-item a {
		position: relative;
	}

	.menu__list-mobile-item a::before {
		content: "";
		position: absolute;
		top: -4px;
		left: -38px;
		width: 28px;
		height: 28px;
		background-size: contain;
	}

	.menu__list-mobile-item--user a::before {
		background: url("../images/icon_user-mobile.svg") no-repeat center;
	}
	.menu__list-mobile-item--favorit a::before {
		background: url("../images/icon_favorite-mobile.svg") no-repeat center;
	}
	.menu__list-mobile-item--basket a::before {
		background: url("../images/icon_basket-mobile.svg") no-repeat center;
	}
	.menu__list-mobile-item--store a::before {
		background: url("../images/icon_store-mobile.svg") no-repeat center;
	}
	.menu__list-mobile-item--aks a::before {
		background: url("../images/icon_akc-mobile.svg") no-repeat center;
	}
	.menu__list-mobile-item--deliver a::before {
		top: -3px;
		background: url("../images/icon_deliver-mobile.svg") no-repeat center;
	}

	.menu__mobile-address {
		display: block;
		padding-top: 65px;
		padding-bottom: 65px;
		padding-left: 50px;
		font-weight: bold;
	}

	.menu__mobile-visible-js {
		display: block;
		z-index: 200;
	}

	.button-burger {
		position: absolute;
		z-index: 300;
		top: 28px;
	}

	.button-burger.button-burger-js {
		left: 247px;
		top: 10px;
		z-index: 300;
		transition: left 3s;
	}

	.menu__mobile-js {
		position: absolute;
		top: 0;
		left: 0;
		min-height: 100%;
	}

	.header__top-inner {
		flex-wrap: wrap;
		align-items: center;
		min-height: 93px;
	}

	.menu {
		position: relative;
		order: 1;
		width: 100vw;
	}

	.menu__list {
		position: absolute;
		left: -30px;
		right: -15px;
		flex-wrap: nowrap;
		padding: 14px 30px;
		background-color: var(--color-base-light);
		overflow-x: auto;
	}

	.menu__item:last-child {
		padding-right: 30px;
	}

	.menu__link {
		white-space: nowrap;
	}

	.header__bottom {
		display: none;
	}

	.breadcrumbs {
		margin-top: 21px;
		margin-bottom: 29px;
	}
}

@media (max-width: 920px) {
	.catalog-items__inner {
		grid-template-columns: repeat(1, 1fr);
	}

	.merchandise {
		margin-bottom: 80px;
	}

	.merchandise__inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.merchandise__content {
		order: -1;
	}

	.merchandise__tabs-box {
		display: none;
	}

	.merchandise__code {
		margin-bottom: 8px;
	}

	.merchandise__text {
		display: inline-block;
		margin-bottom: 40px;
	}

	.merchandise__btn-bye {
		display: none;
	}

	.merchandise__btn-bye.merchandise__btn-bye--mobile {
		display: block;
		width: 100%;
		border-radius: 0;
	}

	.merchandise__title {
		margin-bottom: 40px;
		font-size: 25px;
		line-height: 30px;
	}

	.merchandise-details__form-search-input {
		width: auto;
	}

	.merchandise-details__form-search-input-box {
		display: flex;
		width: 100%;
		margin-bottom: 30px;
	}
}

@media (max-width: 870px) {
	.footer {
		padding-top: 24px;

	}
	.footer__subscribe {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin-bottom: 24px;
		margin-right: 0;
	}

	.footer__subscribe-title {
		text-align: center;
		margin-bottom: 12px;
	}

	.footer__info--info {
		margin-left: 60px;
	}

	.merchandise-details__tabs {
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 0;
		padding: 45px;
		color: var(--color-black) ;
		background-color: transparent;
	}

	.merchandise-details__item {
		margin-right: 20px;
		padding: 17px 0;
	}

	.merchandise-details__item:last-child {
		margin-right: 0;
	}

	.merchandise-details__item.tab-item.tab-item--active {
		font-weight: bold;
	}

	.merchandise-details__item.tab-item.tab-item--active::before {
		display: none;
	}
}

@media (max-width: 840px) {
	.slider-banner {
		position: relative;

		max-width: 100%;
		max-height: auto;
	}

	.search .container {
		padding: 0 0;
	}

	.search__tabs {
		display: flex;
		flex-wrap: nowrap;
		margin-bottom: 25px;
		padding-bottom: 5px;
		background-color: transparent;
		overflow-x: auto;
	}

	.search__tabs-item {
		margin-right: 10px;
		padding: 11px 0;
		padding-bottom: 4px;
		border-radius: 0;
		font-size: 20px;
		line-height: auto;
		white-space: nowrap;
	}

	.search__tabs-item:first-child {
		margin-left: 10px;
	}

	.search__tabs-item.tab-item--active {
		display: block;
		font-weight: 700;
		border-bottom: 2px solid var(--color-accent);
		background-color: transparent;
	}

	.search__content {
		margin: 0 15px;
	}

	.search__content-form button {
		margin: 0;
		padding: 16px 40px;
		border: none;
		border-radius: 3px;
		font-family: inherit;
		font-size: 0;
		line-height: auto;
		font-weight: bold;
		color: var(--color-white) ;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		background: var(--color-base-light);
		background-image: url("../images/icon_search-mobile.svg");
		background-repeat: no-repeat;
		background-position: center;
	}
}

@media (max-width: 820px) {
	.slider-banner {
		position: relative;

		max-width: 100%;
		max-height: auto;
	}

	.search .container {
		padding: 0 0;
	}

	.search__tabs {
		display: flex;
		flex-wrap: nowrap;
		margin-bottom: 25px;
		padding-bottom: 5px;
		background-color: transparent;
		overflow-x: auto;
	}

	.search__tabs-item {
		margin-right: 10px;
		padding: 11px 0;
		padding-bottom: 4px;
		border-radius: 0;
		font-size: 20px;
		line-height: auto;
		white-space: nowrap;
	}

	.search__tabs-item.tab-item--active {
		display: block;
		font-weight: 700;
		border-bottom: 2px solid var(--color-accent);
		background-color: transparent;
	}

	/* categories */

	.categories__list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.categories__item {
		width: 370px;
	}

	.categories__item:nth-child(odd) {
		margin-right: 0;
	}

	/* categories */

	.filter-top {
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 37px;
	}

	.filter-top__items {
		width: 100%;
		min-height: 35px;
	}

	.filter-top__swich {
		order: -1;
		width: 100%;
		margin-bottom: 30px;
		padding: 20px;
		border-top: 1px solid var(--color-base) ;
		border-bottom: 1px solid var(--color-base) ;
	}

	.filter-top__items-btn {
		margin-bottom: 10px;
	}

	.filter-top__btn-filter {
		display: block;
		min-width: 23px;
		height: 20px;
		margin-right: 20px;
		border: none;
		background-color: transparent;
		background-image: url("../images/icon_btn-filter.svg");
		background-repeat: no-repeat;
		background-position: center;
	}

	.filter-aside {
		display: none;
	}

	.filter-aside.filter-aside--show {
		position: absolute;
		top: 380px;
		left: 15px;
		z-index: 300;
		display: block;
		width: 310px;
		padding: 10px;
		background-color: var(--color-white);
		box-shadow: 1px 0 5px 2px var(--color-base) ;
	}

	.catalog-items__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.header__adress {
		display: none;
	}

	/* banner */
	.sect-banner .container {
		padding: 0 0;
	}

	.slider-banner .slick-arrow {
		display: none !important;
	}

	.slider-banner .slick-dots {
		bottom: 18px;
	}
	/* banner */
}

@media (max-width: 640px) {
	.filter-aside {
		display: none;
	}

	.catalog-items__inner {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (max-width: 501px) {
.user-list {
	display: none;
}

.logo {
		margin: 0;
		margin-top: 10px;
		margin-left: auto;
}

.logo.logo--m {
margin-top: -10px;
}

.logo img {
	width: 170px;

}

	.footer {
		background-color: transparent;
	}

	.footer .container {
		padding: 0;
	}

	.footer__subscribe {
		background: var(--color-base-light);
		margin-bottom: 0;
		padding-top: 17px;
		padding-bottom: 40px;
		border-bottom: 2px solid var(--color-base) ;
	}

	.footer__subscribe-title {
		padding-bottom: 10px;
	}

	.footer__info {
		width: 100%;
		margin: 0;
		border-bottom: 2px solid var(--color-base) ;
		background: var(--color-base-light);
	}

	.footer__info ul {
		padding-bottom: 20px;
	}

	.footer__info-title,
	.footer__info-text {
		padding: 15px;
		font-family: var(--font-display);
		font-size: 14px;
		line-height: 18px;
		font-weight: 500;
		letter-spacing: -0.0861538px;
		color: var(--color-base-darker);
	}

	.footer__info-title + .footer__info-list {
		display: none;
	}

	.footer__info-title {
		position: relative;
		cursor: pointer;
		pointer-events: auto;
	}

	.footer__info-title::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 14px;
		transform: translateY(-50%);
		width: 12px;
		height: 8px;
		background-image: url("../images/icon_arrow-drop-down.svg");
		background-repeat: no-repeat;
		background-position: center;
		transition: transform 0.3s;
	}

	.footer__info-title--active.footer__info-title::before {
		transform: rotateX(-180deg);
	}

	.footer__info-title::before .footer {
		background-color: var(--color-white) ;
	}

	.footer__bottom {
		text-align: left;
		padding-left: 15px;
	}

	.footer__bottom-link {
		display: block;
	}

	.footer__bottom-link:first-child {
		margin: 10px 0;
	}

	.merchandise-details__form-search-input {
		flex-direction: column;
		align-items: start;
		width: 100%;
		margin-right: 0;
	}

	.merchandise-details__form-search-input button {
		top: 72%;
	}

	.merchandise-details__form-search-input input[type="text"] {
		width: 100%;
		border: 1px solid var(--color-base);
		background: var(--color-white);
	}

	.merchandise-details__form-search-input p {
		margin-bottom: 10px;
		color: var(--color-main);
	}

	.merchandise-details__form-radio-input {
		width: 100%;
		margin-right: 0;
		padding: 15px 0;
		border-bottom: 1px solid var(--color-base) ;
		color: var(--color-main);
	}

	.merchandise-details__form-radio-input input[type="radio"] + label {
		justify-content: space-between;
		width: 100%;
	}

	.merchandise-details__form-radio-input label > span {
		order: 1;
	}
}
