
z-index: 1;@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf);
    font-weight: 700;
}

* {
    padding: 0;
    margin: 0;
}

body {
    /* overflow-x: hidden; */
}

a {
    text-decoration: none;
    transition: 0.3s;
}

button, input {
    outline: 0;
    border: 0;
    background-color: transparent;
    transition: 0.3s;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 32px;
}

.header {
    padding-top: 10px;
    background-color: #fff;
    transition: 0.3s;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    padding-bottom: 20px;
}

.header .container {
    display: flex;
    flex-direction: column;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-nav {
    display: flex;
    gap: 30px;
}

.header-top-nav a {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.07px;
}

.header-top-nav a:hover {
    color: var(--Black-1, #000);
}

.header-top-nav-drop {
    position: relative;
}

.header-top-nav-drop-btn {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.07px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.header-top-nav-drop-btn:hover {
    color: var(--Black-1, #000);
}

.header-top-nav-drop-btn::after {
    content: '';
    min-width: 10px;
    max-width: 10px;
    height: 10px;
    display: flex;
    background-image: url(../img/header/arrow.svg);
    background-size: 100% 100%;
}

.header-top-nav-drop-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 30px;
    padding: 20px 16px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    display: none;
    z-index: 1;
}

.header-top-nav-drop-menu_active {
    display: flex;
}

.header-top-nav-drop-menu a:hover {
    color: var(--Brand-Green1, #37751B);
}

.header-top-city-btn {
    color: var(--Brand-Orange1, #E14F28);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.header-top-city-btn::after {
    content: '';
    min-width: 10px;
    max-width: 10px;
    height: 10px;
    display: flex;
    background-image: url(../img/header/arrow_city.svg);
    background-size: 100% 100%;
}

.header-scrolled {
    z-index: 3;
    padding-top: 0;
    padding-bottom: 20px;
}

.header-scrolled .header-top, .header-scrolled .header-nav {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    height: 0;
    margin: 0;
}

.header-scrolled .header-main-menu {
    top: 75px;
}

.city-pop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.05);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.city-pop_active {
    display: flex;
}

.city-pop-block  {
    padding: 20px 16px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    max-width: 450px;
    width: 100%;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    gap: 20.5px;
}

.city-pop-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.city-pop-top-close {
    width: 24px;
    height: 24px;
    background-image: url(../img/header/close.svg);
    background-size: 100% 100%;
    display: flex;
}

.city-pop-search {
    position: relative;
}

.city-pop-search::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../img/header/city_search.svg);
    background-size: 100% 100%;
    position: absolute;
    left: 20px;
    top: -1px;
    bottom: 0;
    margin: auto;
}

.city-pop-search input {
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.07px;
    width: 100%;
    padding: 16px 20px;
    padding-left: 44px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1.5px solid var(--Black-5, #C9CAD3);
}

.city-pop-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
	max-height: 418px;
	overflow: scroll;
}

.city-pop-list a {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.city-pop-list a:hover {
    color: var(--Brand-Green1, #37751B);
}

.city-pop-list_active {
    color: var(--Brand-Green1, #37751B) !important;
}

.city-pop-list_active::after {
    content: '';
    width: 16px;
    height: 16px;
    display: flex;
    background-image: url(../img/header/check.svg);
    background-size: 100% 100%;
}

.header-top-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.header-top-info {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.07px;
}

.header-top-tel {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.07px;
}

.header-main {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.header-main .header-top-city-btn {
    display: none;
}

.header-main-menu-side_sale {
    display: none;
}

.header-main-logo {
    min-width: 90px;
    max-width: 90px;
    height: 22px;
    display: flex;
}

.header-main-logo img {
    width: 100%;
}

.header-main-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    background: var(--Background-Background, #F9FAF9);
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.18px;
}

.header-main-cat-btn::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url(../img/header/menu.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
}

.header-main-cat-btn_close::before {
    background-image: url(../img/header/menu_close.svg);
}

.header-main-search {
    width: 100%;
    position: relative;
}

.header-main-search input[type="text"] {
    width: 100%;
    padding: 16px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1.5px solid var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    background-color: #fff;
}

.header-main-search input[type="submit"] {
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 0;
    background-image: url(../img/header/search.svg);
    background-size: 100% 100%;
    cursor: pointer;
}

.header-main-search input[type="submit"]:hover {
    scale: 1.1;
}

.header-main-add {
    display: flex;
    gap: 18px;
    margin-left: 16px;
}

.header-main-add a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
}

.header-main-add a:hover {
    color: #000;
}

.header-main-add a img {
    width: 28px;
    height: 28px;
}

.header-nav {
    display: flex;
    margin-top: 20px;
    gap: 30px;
    overflow: scroll;
}

.header-nav::-webkit-scrollbar {
    display: none;
}

.header-nav a {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--Brand-Green1, #37751B);
}

.header-nav_sale {
    color: var(--Brand-Orange1, #E14F28) !important;
}

.header-main_search-bg {
    position: fixed;
    top: 140px;
    right: 0;
    bottom: 0;
    left: 0;
    /*background-color: rgba(0, 0, 0, 0.05);*/
    display: none;
    z-index: 1;
}

.header-main_search-bg_active {
    display: flex;
}

.header-main-search-res {
    width: 100%;
    padding: 20px 16px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 79px;
    display: none;
    flex-direction: column;
    gap: 20px;
    max-height: 356px;
    overflow-y: scroll;
    z-index: 2;
}

.header-main-search-res_active {
    display: flex;
}

.header-main-search-res-item {
    display: flex;
    gap: 10px;
}

.header-main-search-res-pic {
    border-radius: 8px;
    background: var(--Other-colors-light-blue-1, #F5F8F5);
    min-width: 80px;
    max-width: 80px;
    height: 80px;
}

.header-main-search-res-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-main-search-res-title {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.header-main-search-res-price {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-left: 30px;
}

.header-main-menu {
    width: 100%;
    top: 115px;
    right: 0;
    left: 0;
    position: absolute;
    display: none;
    z-index: 2;
    background-color: #fff;
}

.header-main-menu-row {
    display: flex;
}

.header-main-menu_active {
    display: block;
}

.header-main-menu-side {
    display: flex;
    flex-direction: column;
    max-width: 269px;
    width: 100%;
    overflow-y: scroll;
}

.header-main-menu-search {
    display: none;
}

.header-main-menu-side button {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 20px;
    box-sizing: border-box;
    border-radius: 8px 0px 0px 8px;
}

.header-main-menu-side button:hover {
    background: var(--Brand-Green7, #EDF3EA);
}

.header-main-menu-side_active {
    background: var(--Brand-Green7, #EDF3EA);
}

.header-main-menu-side button:last-child {
    border-radius: 8px 0px 18px 8px;
}

.header-main-menu-cont {
    width: 100%;
}

.header-main-menu-cont-item {
    display: none;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    border-radius: 0px 20px 20px 20px;
    background: var(--Background-Background, #F9FAF9);
    box-sizing: border-box;
    height: 100%;
}

.header-main-menu-cont-item_active {
    display: flex;
}

.header-main-menu-cont-item-title {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.18px;
}

.header-main-menu-cont-item ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.header-main-menu-cont-item ul li {
    max-width: 130px;
    width: 100%;
}

.header-main-menu-cont-item ul li a {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.header-main-menu-cont-item ul li a:hover {
    color: var(--Brand-Green1, #37751B);
}

.main-banner {
    margin-top: 40px;
}

.main-banner-slider {
    width: 100%;
    /* height: 500px; */
	aspect-ratio: 304 / 125;
    position: relative;
	border-radius: 20px;
	oveflow: hidden;
}

.main-banner .slick-list, .main-banner .slick-track {
    height: 100%;
}

.main-banner-item {
    position: relative;
    padding: 40px;
    box-sizing: border-box;
}

.main-banner-item-pic {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.main-banner-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.main-banner-item-title {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.main-banner-slider .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 3px;
    margin: auto;
    font-size: 0;
    width: 44px;
    height: 44px;
    background-image: url(../img/main-banner/chevron-left.svg);
    background-size: 100% 100%;
    z-index: 1;
}

.main-banner-slider .slick-arrow:hover {
    scale: 1.1;
}

.main-banner-slider .slick-next {
    left: auto;
    right: 3px;
    transform: rotate(180deg);
}

.main-banner-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: auto;
    list-style: none;
    display: flex;
    z-index: 1;
    justify-content: center;
    gap: 16px;
}

.main-banner-slider .slick-dots button {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.3;
    font-size: 0;
    border-radius: 50%;
    transition: 0.3s;
}

.main-banner-slider .slick-dots button:hover {
    opacity: 1;
}

.main-banner-slider .slick-dots .slick-active button {
    opacity: 1;
}

.main-hit {
    margin-top: 90px;
    position: relative;
    overflow-x: hidden;
    margin-bottom: -300px;
    padding-bottom: 300px;
}

.main-hit::before {
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 6.84%, rgba(255, 255, 255, 0.90) 24.21%);
    filter: blur(30px);
    width: 380px;
    position: absolute;
    left: -286px;
    top: 50px;
    bottom: 0;
    z-index: 1;
}

.main-hit::after {
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 6.84%, rgba(255, 255, 255, 0.90) 24.21%);
    filter: blur(30px);
    width: 380px;
    position: absolute;
    right: -286px;
    top: 50px;
    bottom: 0;
    z-index: 1;
}

.main-hit-title {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* position: relative;
    z-index: 1; */
}

.main-hit-slider {
    max-width: 1460px;
    margin: 0 auto;
    margin-top: 30px;
    /* white-space: nowrap; */
    position: unset;
}

.main-hit-slider .slick-list {
    overflow: visible;
}

.main-hit-slider .slick-track {
    display: flex;
    flex-wrap: nowrap !important;
}

.main-hit-slider .slick-arrow {
    position: absolute;
    top: 257px;
    left: 32px;
    margin: auto;
    font-size: 0;
    width: 44px;
    height: 44px;
    background-image: url(../img/main-banner/chevron-left.svg);
    background-size: 100% 100%;
    z-index: 2;
}

.main-hit-slider .slick-next {
    right: 32px;
    left: auto;
    transform: rotate(180deg);
}

.main-card {
    margin: 0 5px;
    width: 350px;
    height: 555px;
    padding: 12px;
    background: var(--White-1, #FFF);
    transition: 0.3s;
    position: relative;
}

.main-card:hover {
    border-radius: 16px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.main-card-pic {
    width: 100%;
    position: relative;
    border-radius: 20px;
    height: 380px;
}

.main-card-slider {
    height: 100%;
    border-radius: 20px;
    position: relative;
}

.main-card-slider img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-card-slider .slick-list, .main-card-slider .slick-track {
    height: 100%;
    overflow: hidden !important;
}

.main-card-dots-primary {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    height: 100%;
}

.main-card-dots-primary .slick-dots {
    height: 100%;
    display: flex;
    list-style: none;
}

.main-card-dots-primary .slick-dots li {
    width: -webkit-fill-available;
}

.main-card-dots-primary .slick-dots button {
    font-size: 0;
    width: 100%;
    height: 100%;
}

.main-card-dots-secondary {
    /* margin-top: 10px; */
}

.main-card-dots-secondary {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 8px;
}

.main-card-dots-secondary button {
    font-size: 0;
    width: 8px;
    height: 8px;
    background-color: #C9CAD3;
    border-radius: 50%;
}

.main-card-dots-secondary .slick-active button {
    background-color: #57923D;
}

.main-card-chip {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-card-chip div {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.08px;
    border-radius: 8px;
    padding: 6px 10px;
    white-space: nowrap;
}

.main-card-chip_best {
    background: var(--brand-orange-80, rgba(239, 129, 45, 0.80));
}

.main-card-chip_new {
    border-radius: 8px;
    background: var(--brand-green-80, rgba(87, 146, 61, 0.80));
}

.main-card-cont {
    padding: 0 12px;
    margin-top: 30px;
}

.main-card-name {
    display: -webkit-box;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    -webkit-line-clamp: 3;      /* Ограничение до 2 строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	height: 72px;
}


.main-card-name:hover {
    color: #37751B;
}

.main-card-add {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-card-add-price {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-card-add-price span {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-card-add-old {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: line-through;
}

.main-card-add-dis {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.08px;
    padding: 6px 8px;
    border-radius: 8px;
    background: var(--Brand-Green2, #57923D);
}

.main-card-left {
    color: var(--Brand-Green1, #37751B);
    margin-top: 10px;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.08px;
}

.main-card-btn {
    margin-top: 20px;
    color: var(--Brand-Green2, #57923D);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.09px;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 10px;
    background: var(--Brand-Green7, #EDF3EA);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-card-btn:hover {
    color: var(--White-1, #FFF);
    background: var(--Brand-Green2, #57923D);
}

.main-card-bot {
    margin-top: -8px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 12px 24px;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    transition: 0.3s;
    opacity: 0;
    height: 0;
    overflow: hidden;
    z-index: 1;
    
}

.main-card:hover .main-card-bot {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    opacity: 1;
    height: auto;
}

.main-card-bot li {
    display: flex;
    align-items: center;
}

.main-card-bot span:first-child {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.main-card-bot span:nth-child(2) {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    margin-left: 16px;
}

.main-card-bot-copy {
    width: 18px;
    height: 18px;
    background-image: url(../img/main-hit/copy.svg);
    background-size: 100% 100%;
    margin-left: 8px;
}

.main-popul {
    margin-top: 90px;
}

.main-popul-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.main-popul-top a {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-popul-row {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.main-popul-item {
    width: calc(100% / 4 - 15.8px);
    height: 350px;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
    background: var(--Background-Background, #F9FAF9);
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 28.6px */
    position: relative;
    overflow: hidden;
}

.main-popul-item-pic {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 288px;
}

.main-popul-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.main-popul-item_sale {
    background: var(--Brand-Green2, #57923D);
    color: var(--White-1, #FFF);
}

.main-popul-item_sale::after {
    content: '';
    width: 100%;
    height: 111px;
    background-image: url(../img/main-popul/sale.svg);
    background-size: 100% 100%;
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
}

.main-new {
    margin-top: 90px;
    overflow-x: hidden;
    margin-bottom: -300px;
    padding-bottom: 300px;
}

.main-new-row {
    margin: 0 -5px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.main-new-row .slick-list {
    overflow: visible;
}

.main-new-row .main-card {
    margin: 0 10px;
    padding: 0;
    /* width: auto; */
    padding-bottom: 20px;
    width: 350px;
}

.main-new-row .slick-list {
    width: 100%;
}

.main-new-row_a {
    margin: 0 -5px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.main-new-row_a .slick-list {
    overflow: visible;
}

.main-new-row_a .slick-list {
    width: 100%;
}

.main-advice {
    margin-top: 90px;
}

.main-advice-row {
    display: flex;
    gap: 19px;
	flex-wrap: wrap;
}

.main-advice-col {
    width: calc(100% / 2 - 9.5px);
    height: 605px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-advice-item {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 32px 30px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.main-advice-item-text {
    position: relative;
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 28.6px */
    z-index: 1;
}

.main-advice-item::after {
    content: '';
    background: linear-gradient(0deg, #000 0%, rgba(60, 60, 60, 0.00) 38.63%);
    /* filter: blur(5px); */
    backdrop-filter: blur(2px);
    height: 120px;
    width: 100%;
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
}

.main-advice-item-pic {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.main-advice-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-advice-item:hover .main-advice-item-pic {
    scale: 1.1;
}

.main-adv {
    margin-top: 90px;
}

.main-adv-row {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-adv-item {
    width: calc(100% / 4 - 15px);
    padding: 30px 40px;
    box-sizing: border-box;
    border-radius: 20px;
    background: var(--Background-Background, #F9FAF9);
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    color: var(--Black-1, #000);
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.main-adv-item-pic {
    width: 48px;
    height: 48px;
}

.main-adv-item-pic img {
    width: 100%;
    height: 100%;
}

.main-brand {
    margin-top: 90px;
    position: relative;
    overflow-x: hidden;
    
}

.main-brand-row {
    margin-top: 30px;
    max-width: 1280px;
    padding: 0 30px;
    margin: 0 auto;
    margin-top: 30px;
    position: unset;
}

.main-brand-row .slick-list {
    overflow: visible;
    width: 100%;
}

.main-brand-row a {
    border-radius: 20px;
    background: var(--Background-Background, #F9FAF9);
    height: 90px;
    width: 180px;
    padding: 7px 30px;
    box-sizing: border-box;
    margin: 0 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.main-brand-row a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-brand::before {
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 6.84%, rgba(255, 255, 255, 0.90) 24.21%);
    filter: blur(30px);
    width: 380px;
    position: absolute;
    left: -286px;
    top: 50px;
    bottom: 0;
    z-index: 1;
}

.main-brand::after {
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 6.84%, rgba(255, 255, 255, 0.90) 24.21%);
    filter: blur(30px);
    width: 380px;
    position: absolute;
    right: -286px;
    top: 50px;
    bottom: 0;
    z-index: 1;
}

.main-brand .slick-arrow {
    position: absolute;
    bottom: 20px;
    left: 32px;
    margin: auto;
    font-size: 0;
    width: 44px;
    height: 44px;
    background-image: url(../img/main-banner/chevron-left.svg);
    background-size: 100% 100%;
    z-index: 2;
}

.main-brand .slick-next {
    right: 32px;
    left: auto;
    transform: rotate(180deg);
}

.main-info {
    margin-top: 90px;
}

.main-info-title {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 30px;
}

.main-info-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.footer {
    margin-top: 45px;
    background: var(--Background-Background, #F9FAF9);
    padding: 45px 0 37px;
    box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-cont {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-col-title {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    letter-spacing: 0.16px;
    margin-bottom: 16px;
}

.footer-cont-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-cont-row .footer-col-title {
    margin-bottom: 4px;
}

.footer-cont-row a, .footer-cont-row button, .footer-cont-row div {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.footer-col_cat {
    display: none !important;
}

.footer-cont-row a:hover {
    color: #37751B;
}

.footer-cont_city {
    margin-left: 0;
    color: var(--Brand-Orange1, #E14F28) !important;
}

.footer-cont_city::after {
    display: none;
}

.footer-cont-sm {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-cont-soc {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-cont-soc a {
    width: 28px;
    height: 28px;
}

.footer-cont-soc a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-asd {
    display: contents;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

.footer-col ul a {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-col ul a:hover {
    color: #37751B;
}

.footer-cont-block {
    /* margin-top: auto; */
}

.footer-cont-block_a {
    margin-top: auto;
}

.footer-add {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-add a {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.header-main-menu-side-title, .header-main-menu .header-top-nav, .header-main-menu-bot {
    display: none;
}

.bot-menu {
    display: none;
}

.chip {
    margin-top: 20px;
    margin-bottom: 30px;
}

.chip .container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip .container::-webkit-scrollbar {
    display: none;
}

.chip a {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    display: flex;
    gap: 10px;
}

.chip a:hover {
    color: #37751B;
}

.chip a::after {
    content: '/';
}

.chip a:last-child::after {
    display: none;
}

.catalog-top {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
}

.catalog-top h1, .catalog-top h2 {
    color: #000;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.catalog-top span {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */   
}

.catalog-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-nav_active {
    border: 1px solid var(--Brand-Green1, #37751B);
    background: var(--Brand-Green7, #EDF3EA);
    color: var(--Brand-Green1, #37751B) !important;
}

.catalog-nav a {
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: 10px;
    background: var(--Background-Background, #F9FAF9);
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
}

.catalog-nav a:hover {
    color: #37751B;
}

.catalog-row {
    display: flex;
    gap: 35px;
    margin-top: 40px;
    position: relative;
}

.catalog-side {
    max-width: 205px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.catalog-side-title {
    display: none;
}

.catalog-side-submit {
    display: none;
}

.catalog-side-close {
    display: none;
}

.catalog-stock {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-title {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
}

.catalog-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog-price {
    display: flex;
    gap: 6px;
}

.catalog-block-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 204px;
    overflow: scroll;
    transition: 0.3s;
}

.catalog-block-row::-webkit-scrollbar {
	display: none;
}

.catalog-block-row_active {
    max-height: 1000px;
}

.catalog-price input {
    width: calc(100% / 2 - 3px);
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--Black-5, #C9CAD3);
    padding: 6px 8px;
    box-sizing: border-box;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.08px;
}

.catalog-block label {
    display: flex;
    gap: 6px;
    align-items: center;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
    cursor: pointer;
}

.catalog-block-row label input {
    display: none;
}

.catalog-block-row label input[type="radio"]~span {
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    border: 1px solid #D9DFD6;
    border-radius: 50%;
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
}

.catalog-block-row label input[type="radio"]:checked~span {
    border: 6px solid #57923D;
}

.catalog-block-row label input[type="checkbox"]~span {
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #D9DFD6;
    background: var(--Background-Background, #F9FAF9);
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
    margin-top: -3px;
}

.catalog-block-row label input[type="checkbox"]~span::after {
    content: '';
    width: 11px;
    height: 11px;
    background-image: url(../img/catalog/gal.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s;
}

.catalog-block-row label input[type="checkbox"]:checked~span {
    border-color: #37751B;
    background-color: #EDF3EA;
}

.catalog-block-row label input[type="checkbox"]:checked~span::after {
    opacity: 1;
}

.catalog-color {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.catalog-color input {
    display: none;
}

.catalog-color div {
    border-radius: 6px;
    border: 1px solid var(--Brand-Green6, #D9DFD6);
    padding: 2px;
    box-sizing: border-box;
    transition: 0.3s;
}

.catalog-color div span {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    box-sizing: border-box;
}

.catalog-color input:checked~div {
    border-color: #57923D;
}

.catalog-block-more {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.08px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
}

.catalog-block-more::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../img/catalog/arrow.svg);
    background-size: 100% 100%;
    transition: 0.3s;
}

.catalog-block-more_active::after {
    transform: rotate(180deg);
}

.catalog-block-more_dis {
    display: none;
}

.catalog-block-search {
    position: relative;
    width: 100%;
}

.catalog-block-search::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(../img/catalog/search.svg);
    background-size: 100% 100%;
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.catalog-block-search input {
    padding: 6px 8px;
    padding-left: 28px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid var(--Black-5, #C9CAD3);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    width: 100%;
}

.catalog-cont {
    width: calc(100% - 240px);
}

.catalog-switch {
    width: 33px;
    height: 19.5px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.catalog-switch input {
    display: none;
}

.catalog-switch span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #57923D;
    box-sizing: border-box;
}

.catalog-switch input:checked~span {
    background-color: #57923D;
}

.catalog-switch span::after {
    content: '';
    width: 16.5px;
    height: 16.5px;
    border-radius: 50%;
    background-color: #57923D;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.5px;
    margin: auto;
    transition: 0.3s;
}

.catalog-switch input:checked~span::after {
    left: calc(100% - 18px);
    background-color: #fff;
}

.catalog-cont-filter {
    display: none;
}

.catalog-cont-select {
    position: relative;
    min-width: 230px;
    width: fit-content;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    user-select: none;
    cursor: pointer;
}

.select-trigger {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--Brand-Green1, #37751B);
    background: #FFF;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.select-trigger::after {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../img/catalog/repeat.svg);
    background-size: 100% 100%;
    display: flex;
}

.select-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 20px 16px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    display: none;
    gap: 16px;
    flex-direction: column;
    z-index: 1;
}

.select-option {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    height: auto;
    transition: 0.3s;
}

.select-option:hover {
    color: #37751B;
}

.select-option_active {
    color: var(--Brand-Green1, #37751B);
    display: flex;
    justify-content: space-between;
}

.select-option_active::after {
    content: '';
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    background-image: url(../img/catalog/check.svg);
    background-size: 100% 100%;
}

.catalog-cont-select.open .select-options {
    display: flex;
}
  
.catalog-add {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.catalog-add-item {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid var(--Brand-Green1, #37751B);
    background: var(--Brand-Green7, #EDF3EA);
    display: flex;
    gap: 8px;
    align-items: center;
}

.catalog-add-item button {
    width: 17px;
    height: 17px;
    background-image: url(../img/catalog/x-circle.svg);
    background-size: 100% 100%;
}

.catalog-nav_all {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: 10px;
    background: var(--Background-Background, #F9FAF9);
    display: flex;
    gap: 8px;
    align-items: center;
}

.catalog-nav_all button {
    width: 17px;
    height: 17px;
    background-image: url(../img/catalog/x-circle.svg);
    background-size: 100% 100%;
}

.catalog-cont-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.catalog-cont-row .main-card {
    width: calc(100% / 3 - 20px);
    margin: 0;
    padding: 10px;
}

.catalog-cont-more {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.08px;
    width: 100%;
    padding: 16px 48px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid var(--Brand-Green1, #37751B);
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
}

.catalog-cont-more:hover {
    background-color: #37751B;
    color: #fff;
}

.catalog-cont-pag {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.catalog-cont-pag a {
    color: var(--Black-2, #6E6E6E);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: #FFF;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-cont-pag a:hover {
    background: var(--Brand-Green7, #EDF3EA);
    border-color: #EDF3EA;
    color: #37751B;
}

.catalog-cont-pag_active {
    background: var(--Brand-Green7, #EDF3EA) !important;
    border-color: #EDF3EA !important;
    color: #37751B !important;
}

.catalog-cont-pag_dot {
    border: 0 !important;
}

.catalog-cont-pag_arrow {
    background-image: url(../img/catalog/ar_l.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    transition: 0.3s;
}

.catalog-cont-pag_arrow:hover {
    background-image: url(../img/catalog/ar_l_active.svg) !important;
}

.catalog-cont-pag_arrow_next {
    transform: rotate(180deg);
}

.comp-row {
    margin-top: 30px;
    display: flex;
    gap: 40px;
}

.comp-row .main-card {
    padding: 0;
    /* width: calc(100% / 3 - 36.7px); */
    min-width: 350px;
    max-width: 350px;
    /* height: 602px; */
    margin: 0;
    box-shadow: none !important;
}

.comp-row .main-card .main-card-bot {
    display: none;
}

.comp-row-add {
    /* width: calc(100% / 3 - 36.7px); */
    min-width: 350px;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    border: 1.5px solid var(--Black-5, #C9CAD3);
    box-sizing: border-box;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-direction: column;
}

.comp-row-add_asd {
    display: none;
}

.comp-row-add::after {
    content: '';
    width: 36px;
    height: 36px;
    background-image: url(../img/comp/plus.svg);
    background-size: 100% 100%;
    display: flex;
}

.comp-info {
    margin-top: 60px;

}

.comp-info-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.comp-info ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin-top: 30px;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 16px;
}

.comp-info ul li {
    padding-top: 16px;
    border-top: 1px solid #E3E3E3;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 3.5px;
}

.comp-info-char {
    width: 100%;
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.comp-info-row {
    display: flex;
    gap: 40px;
}

.comp-info-item {
    /* width: calc(100% / 3 - 36.7px); */
    min-width: 350px;
    max-width: 350px;
    color: #13151A;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.comp-cont {
    overflow-x: scroll;
}

.main-card-a {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.main-card-a .main-card-btn {
    margin-top: 0;
}

.main-card-trash {
    min-width: 52px;
    max-width: 52px;
    height: 54px;
    padding: 12px;
    border-radius: 10px;
    background-color: var(--Background-Background, #F9FAF9);
    box-sizing: border-box;
    background-image: url(../img/comp/trash.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.comp-row_scroll {
    position: fixed;
    top: 95px;
    right: 0;
    left: 0;
    z-index: 4;
    background: #FFF;
    max-width: 1216px;
    margin: 0 auto;
    padding: 12.5px 32px;
    overflow-x: scroll;
}

.comp-row_scroll::-webkit-scrollbar {
    display: none;
}

.comp-row_scroll .main-card {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    row-gap: 20px;
    height: auto;
}

.comp-row_scroll .main-card-pic {
    width: 86px;
    height: 93px;
}

.comp-row_scroll .main-card-dots-primary, .comp-row_scroll .main-card-dots-secondary, .comp-row_scroll .main-card-chip {
    display: none;
}

.comp-row_scroll .main-card-cont {
    margin: 0;
    max-width: calc(100% - 98px);
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.comp-row_scroll .main-card-add-dis {
    display: none;
}

.comp-row_scroll .main-card-left {
    display: none;
}

.comp-row_scroll .main-card-a {
    width: 100%;
    margin: 0;
}

.comp-info_scroll {
    margin-top: 600px;
}

.comp_empty-text {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.comp_empty-bot {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.comp_empty-bot-cat {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.08px;
    border-radius: 10px;
    background: var(--Brand-Green1, #37751B);
    padding: 12px 36px;
    height: 54px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comp_empty-bot-main {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    padding: 12px 36px;
    box-sizing: border-box;
    height: 54px;
    border-radius: 10px;
    border: 1px solid var(--Brand-Green1, #37751B);
    display: flex;
    justify-content: center;
    align-items: center;
}

.comp_empty_error {
    margin-top: 60px;
}

.comp_empty_error .comp_empty-text {
    max-width: 750px;
}

.fav-row {
    display: flex;
    gap: 20px;
    row-gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.fav-row .main-card {
    margin: 0;
    padding: 0;
    width: calc(100% / 3 - 13.4px);
}

.main-card-pic-fav {
    display: none;
}

.main-card_fav .main-card-pic-fav {
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background-image: url(../img/comp/heart.svg);
    background-size: 100% 100%;
    z-index: 2;
    cursor: pointer;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    color: #000;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.card-top-add {
    display: flex;
    gap: 20px;
}

.card-top-add_mob {
    display: none;
}

.card-top-add-copy {
    color: var(--Black-3, #8C8C8C);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.07px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-top-add-copy::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../img/card/copy.svg);
    background-size: 100% 100%;
    display: flex;
}

.card-top-add-share {
    color: var(--Black-3, #8C8C8C);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.07px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-top-add-share::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../img/card/share.svg);
    background-size: 100% 100%;
    display: flex;
}

.card-row {
    margin-top: 24px;
    display: flex;
    gap: 50px;
}

.card-slider {
    height: auto;
    display: flex;
    gap: 20px;
    height: 560px;
	position: relative;
}

.card-slider .main-card-chip {
	top: 16px;
	right: 16px;
	left: auto;
	bottom: auto;
	z-index: 1;
}

.card-slider-nav {
    max-width: 83px;
    min-width: 83px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;
}

.card-slider-nav::-webkit-scrollbar {
    display: none;
}

.card-slider-nav-item {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: 0.3s;
    box-sizing: border-box;
    cursor: pointer;
}

.card-slider-nav-item_active {
    border: 2px solid var(--Brand-Green1, #37751B);
}

.card-slider-nav-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card-slider-main {
    max-width: 560px;
    min-width: 560px;
    width: 100%;
    display: flex;
    border-radius: 20px;
}

.card-slider-main .slick-track {
    height: 100%;
}

.card-slider-main-item {
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.03);
}

.card-slider-main-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-side {
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.card-side-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-side-top-price {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-side-top-price span {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-side-top-add {
    display: flex;
    align-items: center;
    gap: 14px;
}

.card-side-top-add-star {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-side-top-add-star::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../img/card/star.svg);
    background-size: 100% 100%;
    display: flex;
}

.card-side-top-add-msg {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-side-top-add-msg::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../img/card/message.svg);
    background-size: 100% 100%;
    display: flex;
}

.card-side-top-add-cntr {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-side-top-add-cntr span {
    width: 24px;
    height: 18px;
    border-radius: 4px;
    background: #D9D9D9;
    box-sizing: border-box;
}

.card-side-top-add-cntr span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.card-side-cont {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.card-side-calc {
    width: 100%;
    height: 41px;
    border-radius: 8px;
    border: 1px solid var(--Brand-Green1, #37751B);
    box-sizing: border-box;
    padding: 12px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-side-cont-calc {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.card-side-cont-calc_active {
    display: flex;
}

.card-side-switch {
    display: flex;
    height: 48px;
}

.card-side-switch div {
    width: 50%;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    box-sizing: border-box;
    height: 100%;
    border: 1px solid var(--Black-5, #C9CAD3);
    cursor: pointer;
}

.card-side-switch div:first-child {
    border-radius: 8px 0px 0px 8px;
}

.card-side-switch div:last-child {
    border-radius: 0px 8px 8px 0px;
}

.card-side-switch_active {
    background: var(--brand-green-80, rgba(87, 146, 61, 0.80));
    border: 1px solid transparent !important;
    color: var(--White-1, #FFF) !important;
}

.card-side-count {
    display: flex;
    gap: 8px;
}

.card-side-count-less, .card-side-count-more {
    width: 64px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--Black-5, #C9CAD3);
    box-sizing: border-box;
    background-image: url(../img/card/less.svg);
    background-size: 16px 20px;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.3s;
}

.card-side-count-less:hover, .card-side-count-more:hover {
    background-color: var(--Background-Background, #F9FAF9);
    border-color: transparent;
}

.card-side-count-more {
    background-image: url(../img/card/more.svg);
}

.card-side-count-more:hover {
    background-image: url(../img/card/more_hov.svg);
}

.card-side-count-less:hover {
    background-image: url(../img/card/less_hov.svg);
}

.card-side-count-num {
    width: 100%;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: 0.08px;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--Black-5, #C9CAD3);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.card-side-count input {
	width: 100%;
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.08px;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--Black-5, #C9CAD3);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.card-side-count-num {
	display: none;
}

.card-side-cont-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.card-side-cont-block .catalog-cont-select {
    width: 100%;
}

.card-side-cont-block .select-trigger {
    border-radius: 10px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: #FFF;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
}

.card-side-cont-block .select-trigger::after {
    background-image: url(../img/card/arrow.svg);
}

.card-side-price {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.card-side-price-main {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-side-price-main span {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-side-price-old {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: line-through;
}

.card-side-price-dis {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.08px;
    padding: 6px 10px;
    box-sizing: border-box;
    border-radius: 8px;
    background: var(--Brand-Green2, #57923D);
}

.card-side-krat {
    color: var(--Brand-Green1, #37751B);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    text-align: center;
    margin-top: 12px;
}

.card-side-cart {
    margin-top: 24px;
    display: flex;
    gap: 10px;
}

.card-side-cart-btn {
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--Brand-Green1, #37751B);
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.09px;
}

.card-side-cart-fav {
    width: 52px;
    height: 56px;
    display: flex;
    border-radius: 10px;
    background-color: var(--Background-Background, #F9FAF9);
    background-image: url(../img/card/heart.svg);
    background-size: 28px 28px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: 0.3s;
}

.card-side-cart-fav:hover {
    background-image: url(../img/card/heart_active.svg);
}

.card-side-cart-fav_active {
    background-image: url(../img/card/heart_active.svg);
}

.card-side-sd {
    margin-top: 16px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.card-side-sd a {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.07px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-side-sd a img {
    width: 18px;
    height: 18px;
}

.card-side-add {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-side-add-block {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
    padding: 12px 20px;
    box-sizing: border-box;
    border-radius: 8px;
    background: var(--Brand-Green7, #EDF3EA);
}

.card-info {
    margin-top: 90px;
}

.card-info-nav {
    display: flex;
    gap: 40px;
    overflow-x: scroll;
    padding-bottom: 10px;
}

.card-info-nav::-webkit-scrollbar {
    display: none;
}

.card-info-nav button {
    color: var(--Black-3, #8C8C8C);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 28.6px */
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
}

.card-info-nav button:hover {
    color: var(--Black-1, #000) !important;
}

.card-info-nav button::after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #37751B;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    border-radius: 4px;
    opacity: 0;
    transition: 0.3s;
}

.card-info-nav_active {
    color: var(--Black-1, #000) !important;
}

.card-info-nav_active::after {
    opacity: 1 !important;
}

.card-info-cont {
    margin-top: 32px;
}

.card-info-block {
    display: none !important;
}

.card-info-block_active {
    display: flex !important;
}

.card-info-block_char {
    display: flex;
    gap: 50px;
}

.card-info-block_char-col {
    width: calc(100% / 2 - 25px);
}

.card-info-block_char-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-info-block_char-col ul li {
    display: flex;
    justify-content: space-between;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    align-items: flex-end;
    gap: 10px;
}

.card-info-block_char-col ul li span {
    white-space: nowrap;
}

.card-info-block_char-col ul li span:first-child {
    color: var(--Black-2, #6E6E6E);
    display: flex;
    width: 100%;
    align-items: flex-end;
    gap: 10px;
}

.card-info-block_char-col ul li span:first-child::after {
    content: '';
    width: 100%;
    height: 1px;
    display: flex;
    border-bottom: 1px dotted #B3B3B3;
}

.card-info-block_desc {
    flex-direction: column;
    gap: 20px;
}

.card-info-block_desc p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 744px;
}

.card-info-block_del-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 744px;
}

.card-info-block_del {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-info-block_del-block-title {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    margin-bottom: 16px;
    width: 100%;
}

.card-info-block_del-item {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    display: flex;
    gap: 4px;
    align-items: center;
    width: 100%;
}

.card-info-block_del-item span {
    color: var(--Brand-Orange1, #E14F28);
}

.card-info-block_del-item-help {
    position: relative;
}

.card-info-block_del-item-help-pin {
    width: 16px;
    height: 16px;
    background-image: url(../img/card/alert.svg);
    background-size: 100% 100%;
    display: flex;
    margin-left: 2px;
    cursor: pointer;
}

.card-info-block_del-item-help-text {
    display: flex;
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    width: 245px;
    height: 48px;
    padding: 6px 8px;
    box-sizing: border-box;
    text-align: center;
    color: var(--Black-1, #000);
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
    border-radius: 8px;
    background: var(--Background-Background, #F9FAF9);
    opacity: 0;
    transition: 0.3s;
}

.card-info-block_del-item-help-pin:hover~.card-info-block_del-item-help-text {
    opacity: 1;
}

.card-info-block_del-block a {
    width: calc(100% / 2 - 10px);
    border-radius: 8px;
    border: 1px solid var(--Black-5, #C9CAD3);
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.07px;
}

.card-info-block_review {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

.card-info-block_review-cont {
    max-width: 688px;
    width: 100%;
}

.card-info-block_review-top {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 112.5% */
    display: flex;
    align-items: center;
}

.card-info-block_review-rate-total {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
    margin-left: 8px;
}

.card-info-block_review-rate {
    margin-left: 16px;
    display: flex;
    gap: 2px;
}

.card-info-block_review-rate-item {
    background-image: url(../img/card/star_dis.svg);
    width: 28px;
    height: 28px;
    background-size: 100% 100%;
    transition: 0.3s;
    cursor: pointer;
}

.card-info-block_review-rate-item_active {
    background-image: url(../img/card/star.svg);
}

.card-info-block_review-form {
    margin-top: 23px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-info-block_review-form input[type="text"] {
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 10px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
    box-sizing: border-box;
    padding: 14px 16px;
}

.card-info-block_review-form textarea {
    resize: none;
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 14px 16px;
    box-sizing: border-box;
    height: 94px;
    border-radius: 10px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
}

.card-info-block_review-form-file {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 14px 16px;
    box-sizing: border-box;
    height: 94px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
    gap: 8px;
}

.card-info-block_review-form-file::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background-image: url(../img/card/camera.svg);
    background-size: 100% 100%;
}

.card-info-block_review-form-file input {
    display: none;
}

.card-info-block_review-form input[type="submit"] {
    width: 100%;
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.08px;
    border-radius: 10px;
    background: var(--Background-Background, #F9FAF9);
    padding: 16px 48px;
    box-sizing: border-box;
    cursor: pointer;
}

.card-info-block_review-form-check input {
    display: none;
}

.card-info-block_review-form-check {
    display: flex;
    align-items: center;
    gap: 8.5px;
}

.card-info-block_review-form-check input[type="checkbox"]~span {
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #D9DFD6;
    background: var(--Background-Background, #F9FAF9);
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
    margin-top: -3px;
    display: flex;
}

.card-info-block_review-form-check input[type="checkbox"]~span::after {
    content: '';
    width: 11px;
    height: 11px;
    background-image: url(../img/catalog/gal.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s;
}

.card-info-block_review-form-check input[type="checkbox"]:checked~span {
    border-color: #37751B;
    background-color: #EDF3EA;
}

.card-info-block_review-form-check input[type="checkbox"]:checked~span::after {
    opacity: 1;
}

.card-info-block_review-form-check {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.card-info-block_review-form-check a {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.card-info-block_review-list {
    margin-top: 24px;
}

.card-info-block_review-list-top {
    display: flex;
    align-items: center;
    gap: 24px;
}

.card-info-block_review-list-top .catalog-cont-select {
    max-width: 320px;
    width: 100%;
}

.card-info-block_review-list-top .select-trigger {
    border-radius: 10px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
}

.card-info-block_review-list-top label {
    color: var(--Black-1, #000);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-info-block_review-list-top label input {
    display: none;
}

.card-info-block_review-list-top label input[type="checkbox"]~span {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #D9DFD6;
    background: var(--Background-Background, #F9FAF9);
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
    margin-top: -3px;
    display: flex;
}

.card-info-block_review-list-top label input[type="checkbox"]~span::after {
    content: '';
    width: 11px;
    height: 11px;
    background-image: url(../img/catalog/gal.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s;
}

.card-info-block_review-list-top label input[type="checkbox"]:checked~span {
    border-color: #37751B;
    background-color: #EDF3EA;
}

.card-info-block_review-list-top label input[type="checkbox"]:checked~span::after {
    opacity: 1;
}

.card-info-block_review-list-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.card-info-block_review-list-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #F5F8F5;
}

.card-info-block_review-list-item:last-child {
    border: 0;
    padding-bottom: 0;
}

.card-info-block_review-list-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-info-block_review-list-item-top-lt {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-info-block_review-list-item-top-pic {
    width: 64px;
    height: 64px;
    background-color: #F1F1F1;
    border-radius: 50%;
}

.card-info-block_review-list-item-top-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-info-block_review-list-item-top-name {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.card-info-block_review-list-item-top-rt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-info-block_review-list-item-top-date {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

.card-info-block_review-list-item-top-rate {
    display: flex;
}

.card-info-block_review-list-item-top-rate-item {
    width: 18px;
    height: 18px;
    background-image: url(../img/card/star_dis.svg);
}

.card-info-block_review-list-item-top-rate-item_active {
    background-image: url(../img/card/star.svg);
}

.card-info-block_review-list-item-row {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-info-block_review-list-item-row-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-info-block_review-list-item-row-block span {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.card-info-block_review-list-item-row-block span:first-child {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.card-info-block_review_side {
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--Black-5, #C9CAD3);
    background: var(--White-1, #FFF);
    box-sizing: border-box;
    max-width: 390px;
    width: 100%;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.card-info-block_review_side-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-info-block_review_side-top-total {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-info-block_review_side-top-total::before {
    content: '';
    width: 32px;
    height: 32px;
    background-image: url(../img/card/star.svg);
    background-size: 100% 100%;
}

.card-info-block_review_side-top-num {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 28.6px */
}

.card-info-block_review_side-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-info-block_review_side-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-info-block_review_side-item-num {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-left: 10px;
}

.card-info-block_review_side-item-line {
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #F5F8F5;
    margin-left: 5px;
    position: relative;
}

.card-info-block_review_side-item-line span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #57923D;
    border-radius: 10px;
}

.card-info-block_review_side-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.card-info-block_review_side-text p {
    align-self: stretch;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.card-bot {
    display: none;
}

@media (max-width: 1279px) {
    .container {
        padding: 0 20px;
    }

    .header-scrolled {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .header-top {
        display: none;
    }

    .header-main {
        margin-top: 0;
    }

    .header-main-cat-btn {
        font-size: 0;
        gap: 0;
        padding: 13px 12px;
    }

    .header-main-search input[type="text"] {
        height: 54px;
    }

    .header-main-add {
        margin-left: auto;
    }

    .header-main-add a {
        font-size: 0;
    }

    .main-banner {
        margin-top: 20px;
    }

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

    .main-hit {

    }

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

    .main-hit::after, .main-hit::before {
        display: none;
    }

    .main-card {
        padding: 5px;
        width: 320px;
    }
    
    .main-popul-row {
        gap: 20px;
    }

    .main-popul-item {
        width: calc(100% / 2 - 10px);
    }

    .main-popul-item-title {
        max-width: 205px;
    }

    .main-new-row .main-card {
        width: 320px;
    }

    .main-advice-row {
        flex-direction: column;
        gap: 20px;
    }

    .main-advice-col {
        width: 100%;
    }

    .main-adv-item {
        width: calc(100% / 2 - 10px);
    }

    .main-brand .slick-arrow {
        display: none !important;
    }

    .main-brand::before, .main-brand::after {
        display: none;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .footer-asd {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .footer-cont-block_a {
        padding-top: 32px;
    }

    .header-main-search-res {
        top: 74px;
    }

    .header-main-search-res-price {
        margin-left: auto;
        white-space: nowrap;
    }

    .header-main_search-bg {
        top: 75px;
    }

    .header-main-menu {
        bottom: 0;
        height: calc(100vh - 118px);
        position: fixed;
        top: 118px;
        padding-top: 20px;
    }

    .header-main-menu-row {
        height: calc(100% - 120px);
        padding: 0 20px;
    }

    .header-main-menu-side-title {
        color: #000;
        font-family: Montserrat;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.18px;
        margin-bottom: 20px;
        display: flex;
    }

    .header-main-menu-side {
        overflow-y: scroll;
    }

    .header-main-menu-side::-webkit-scrollbar {
        display: none;
    }

    .header-top-nav {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        display: flex !important;
    }

    .header-top-nav-drop-btn {
        padding: 0 !important;
        color: #000;
        font-family: Montserrat;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.18px;
        justify-content: space-between;
    }

    .header-top-nav-drop-btn:hover {
        background-color: transparent !important;
    }

    .header-top-nav-drop-btn::after {
        background-image: url(../img/header/arrow_bold.svg);
        min-width: 16px;
        max-width: 16px;
        height: 16px;
    }

    .header-top-nav a {
        color: #000;
        font-family: Montserrat;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.18px;
    }

    .header-top-nav-drop-menu {
        position: unset;
        box-shadow: none;
        padding: 0;
        margin-top: 30px;
        padding-left: 20px;
    }

    .header-top-nav-drop-menu a {
        color: #000;
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }

    .header-main-menu-cont-item {
        padding: 30px;
        border-radius: 20px;
        height: fit-content;
    }

    .header-main-menu-cont-item ul {
        gap: 40px;
        row-gap: 20px;
    }

    .header-main-menu-cont-item ul li {
        max-width: 161px;
    }

    .header-main-menu-bot {
        height: 120px;
        background: var(--Background-Background, #F9FAF9);
        padding: 28px 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .header-top-city-btn {
        margin-left: 0;
    }

    .header-main-menu-bot .header-top-city-btn {
        display: flex !important;
    }

    .header-scrolled .header-main-menu {
        top: 74px;
        height: calc(100% - 74px);
    }

    .catalog-side {
        display: none;
    }

    .catalog-side_active {
        display: flex;
        position: relative;
        background-color: #fff;
        left: 0;
        bottom: 0;

        z-index: 4;
        padding: 30px;
        height: fit-content;
        overflow-y: scroll;
        border-radius: 16px;
    }

    .catalog-side-close {
        display: flex;
        position: absolute;
        top: 12px;
        right: 8px;
        background-image: url(../img/header/close.svg);
        background-size: 100% 100%;
        width: 24px;
        height: 24px;
    }

    .catalog-stock {
        justify-content: flex-start;
        gap: 24px;
    }

    .catalog-cont {
        width: 100%;
    }

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

    .catalog-cont-filter {
        display: flex;

    }

    .catalog-cont-filter {
        width: 44px;
        height: 44px;
        padding: 8px;
        border-radius: 8px;
        background-color: var(--Background-Background, #F9FAF9);
        box-sizing: border-box;
        background-image: url(../img/catalog/asd.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 18px 18px;
    }

    .catalog-cont-row {
        gap: 20px;
    }

    .catalog-cont-row .main-card {
        width: calc(100% / 2 - 10px);
        padding: 0;
    }

    .catalog-cov {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.15);
        z-index: 3;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }

    .catalog-cov_active {
        visibility: visible;
        opacity: 1;
    }

    .comp-row .main-card {
        max-width: 288px;
        min-width: 288px;
    }

    .comp-row-add {
        max-width: 288px;
        min-width: 288px;
    }

    .comp-row_scroll {
        top: 74px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .comp-row_scroll .main-card-cont {}

    .main-card-a {
        gap: 12px;
    }

    .main-card-add-price span {
        font-size: 24px;
        font-weight: 600;
        color: var(--Black-1, #000);
    }

    .comp-info-item {
        max-width: 288px;
        min-width: 288px;
    }

    .fav-row .main-card {
        width: calc(100% / 2 - 10px);
    }

    .card-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .card-row {
        gap: 18px;
    }

    .card-slider {
        /* ma */
        max-width: 48%;
        height: 350px;
    }

    .card-slider-main {
        min-width: 0;
        max-width: 100%;
    }

    .card-side {
        padding: 20px;
    }

    .card-info-nav {
        gap: 34px;
    }

    .card-info-block_char {
        flex-direction: column;
        gap: 20px;
    }

    .card-info-block_char-col {
        max-width: 597px;
        width: 100%;
    }

    .card-info-block_review {
        flex-direction: column-reverse;
    }

    .card-info-block_review_side {
        position: unset;
        max-width: none;
    }

    .card-info-block_review-cont {
        max-width: none;
    }

    .card-info-block_review_side-top {
        max-width: 326px;
        margin: 0 auto;
        margin-bottom: 16px;
    }

    .blog-step-pic img {
        height: 450px !important;
        object-fit: cover !important;
    }

    .blog-step-pic_side img {
        width: calc(100% / 2 - 10px) !important;
    }
}

@media (max-width: 767px) {
    .header {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .header-main {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 8px;
        row-gap: 16px;
    }

    .header-main .header-top-city-btn {
        font-size: 0;
        width: 18px;
        height: 18px;
        background-image: url(../img/header/map-pin.svg);
        display: flex;
    }

    .header-main .header-top-city-btn::after {
        display: none;
    }

    .header-main-tel {
        width: 18px;
        height: 18px;
        background-image: url(../img/header/phone.svg);
        background-size: 100% 100%;
    }

    .header-main-cat-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .header-main_a {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-main-add {
        display: none;
    }

    .header-main-search {
        width: calc(100% - 48px);
    }

    .header-main-search input[type="text"] {
        height: 40px;
        border-radius: 10px;
        border: 1.5px solid var(--Brand-Green1, #37751B);
        padding: 8px 12px;
        font-size: 12px;
        padding-left: 34px;
    }

    .header-nav {
        gap: 16px;
    }

    .header-nav a {
        font-size: 14px;
    }

    .header-scrolled .header-main_a {
        display: none;
    }

    .header-main-search input[type="submit"] {
        width: 16px;
        height: 16px;
        left: 12px;
        right: auto;
    }

    .main-banner-slider {
       /* height: 240px;*/
		aspect-ratio: 1 / 1.3;
    }

    .main-banner-item {
        padding: 40px 20px;
    }

    .main-banner-item-title {
        font-size: 28px;
    }

    .main-hit {
        margin-top: 56px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .main-hit-title {
        font-size: 22px;
    }

    .main-hit-slider {
        margin-top: 18px;
        padding: 0 20px;
    }

    .main-card {
        width: 220px;
        padding: 0;
        margin: 0 6px;
        height: auto;
    }

    .main-card-pic {
        height: 280px;
    }

    .main-card-slider {

    }

    .main-card-dots-primary, .main-card-dots-secondary {
        display: none;
    }

    .main-card-chip {
        bottom: 16px;
    }

    .main-card-chip div {
        font-size: 12px;
    }

    .main-card-cont {
        padding: 0 8px;
        margin-top: 10px;
    }

    .main-card-name {
        font-size: 14px;
    }

    .main-card-add-price {
        white-space: nowrap;
        font-size: 20px;
    }

    .main-card-add-price span {
        font-size: 14px;
    }

    .main-card-add-old {
        font-size: 12px;
        white-space: nowrap;
    }

    .main-card-add-dis {
        font-size: 12px;
        padding: 3px 6px;
    }

    .main-card-left {
        font-size: 12px;
    }

    .main-card-btn {
        display: none;
    }

    .main-card-bot {
        display: none;
    }

    .main-popul {
        margin-top: 56px;
    }

    .main-popul-top {
        margin-bottom: 18px;
    }

    .main-popul-top a {
        display: none;
    }

    .main-popul-row {
        gap: 12px;
    }

    .main-popul-item {
        padding: 20px;
        height: 200px;
        font-size: 14px;
    }

    .main-popul-item-pic {
        height: 140px;
    }

    .main-popul-item_sale::after {
        height: 47px;
        bottom: 20px;
    }

    .main-new {
        margin-top: 56px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .main-new-row {
        margin: 0;
        margin-top: 18px;
        z-index: 1;
    }

    .main-new-row_a {
        margin: 0;
        margin-top: 18px;
        z-index: 1;
    }

    .main-new-row .main-card {
        width: 200px;
        margin: 0 6px;
    }

    .main-advice {
        margin-top: 56px;
    }

    .main-advice-col {
        height: 350px;
        flex-direction: row;
		flex-wrap: wrap;
    }

    .main-advice-col_sm {
        gap: 12px;
        height: 200px;
    }

    .main-advice-item {
        height: 100%;
        padding: 20px;
    }

    .main-advice-item-text {
        font-size: 14px;
    }

    .main-adv {
        margin-top: 56px;
    }

    .main-adv-row {
        margin-top: 18px;
        gap: 12px;
    }

    .main-adv-item {
        width: calc(100% / 2 - 6px);
        height: 203px;
        align-items: center;
        justify-content: center;
        padding: 30px 40px;
        gap: 12px;
        font-size: 14px;
    }

    .main-brand {
        margin-top: 56px;
    }

    .main-brand-row {
        margin-top: 18px;
    }

    .main-brand-row a {
        margin: 0 6px;
    }

    .main-info {
        margin-top: 56px;
    }

    .main-info-title {
        color: var(--Black-1, #000);
        font-family: Montserrat;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%; /* 33px */
        margin-bottom: 18px;
    }

    .footer {
        margin-top: 28px;
        padding: 28px 0;
        padding-bottom: 70px;
    }

    .footer-main {
        gap: 0;
    }

    .footer-asd {
        width: 100%;
        gap: 0;
    }

    .footer-cont {
        margin-bottom: 32px;
    }

    .footer-cont-block_a {
        padding-top: 0;
    }

    .footer-col_drop .footer-cont-block_a {
        margin-top: 20px;
    }

    .footer-cont-block_a .footer-col-title::after {
        display: none;
    }

    .footer-col_cat {
        display: flex !important;
    }

    .footer-col_drop {
        max-height: 24px;
        height: 100%;
        overflow: hidden;
        padding-bottom: 10px;
        margin-top: 10px;
        border-bottom: 1px solid #DAE2EC;
        width: 100%;
        transition: 0.3s;
    }

    .footer-col_drop_active {
        max-height: 600px;
    }

    .footer-col-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-col_drop .footer-col-title::after {
        content: '';
        width: 14px;
        height: 14px;
        background-image: url(../img/header/arrow_bold.svg);
        background-size: 100% 100%;
        transition: 0.3s;
    }

    .footer-col_drop_active .footer-col-title::after {
        transform: rotate(180deg);
    }

    .header-main-menu {
        top: 0;
        bottom: 55px;
        left: 0;
        right: 0;
        height: calc(100% - 55px);
    }

    .header-scrolled .header-main-menu {
        top: 0;
        bottom: 55px;
        left: 0;
        right: 0;
        height: calc(100% - 55px);
    }

    .header-main-menu .header-top-city-btn {
        width: auto;
        height: auto;
        font-size: 14px;
        display: flex;
        background-image: none;
    }

    .header-main-menu .header-top-city-btn::after {
        content: '';
        display: flex;
        width: 12px;
        height: 12px;
        background-image: url(../img/header/arrow_city.svg);
    }

    .header-main-menu-side-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .header-top-nav {
        margin: 0;
        gap: 28px;
        margin-top: 28px;
    }

    .header-top-nav a {
        font-size: 16px;
    }

    .header-main-menu-side button {
        font-size: 16px;
    }

    .header-main-menu-row {
        /* padding-bottom: 28px; */
        box-sizing: border-box;
    }

    .header-main-menu-side button::after {
        display: none;
    }

    .header-main-menu-side button {
        background-color: transparent !important;
        padding: 12px 0;
		color: inherit;
    }

    .header-main-menu-side {
        max-width: none;
        width: 100%;
    }

    .header-top-nav {
        margin-bottom: 28px;
    }

    .header-main-menu-side-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .header-main-menu-side_sale {
        color: var(--Brand-Orange1, #E14F28);
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 24px */
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-main-menu-search {
        display: flex;
        gap: 8px;
        margin-bottom: 28px;
    }

    .header-main-menu_close {
        width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 8px;
        background: var(--Background-Background, #F9FAF9);
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url(../img/header/close.svg);
        box-sizing: border-box;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .header-main-menu-cont {
        width: auto;
        /* display: none; */
    }

    .header-main-menu-cont-item {
        display: none;
    }

    .header-main-menu-cont-item_active_mob {
        display: flex;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        bottom: 0;
        height: 100%;
        background-color: #fff;
        overflow: scroll;
        padding: 28px 20px;
        gap: 28px;
    }

    .header-main-menu-cont-item-title {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-main-menu-cont-item-title::before {
        content: '';
        width: 18px;
        height: 18px;
        background-image: url(../img/header/arrow_bold.svg);
        background-size: 100% 100%;
        display: flex;
        transform: rotate(90deg);
        
    }

    .header-main-menu-cont-item ul {
        gap: 20px;
    }

    .header-main_search-bg {
        display: none;
    }

    .header-main-search-res {
        left: 20px;
        right: 20px;
        position: fixed;
        width: auto;
        top: 100px;
    }

    .header-main-search-res-pic {
        max-width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .header-main-search-res-title {
        font-size: 14px;
    }

    .header-main-search-res-price {
        font-size: 14px;
    }

    .header-scrolled .header-main-search-res {
        top: 60px;
    }

    .city-pop-block {
        max-width: none;
        height: 100%;
        overflow: scroll;
    }

    .city-pop-top {
        font-size: 16px;
    }

    .city-pop-top-close {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        padding: 8px;
        background-color: var(--Background-Background, #F9FAF9);
        background-size: auto;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .city-pop-search input {
        padding: 8px 12px;
        font-size: 12px;
        padding-left: 34px;
    }

    .city-pop-search::before {
        left: 12px;
    }

    .bot-menu {
        display: flex;
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        height: 55px;
        border-top: 1px solid var(--Black-5, #C9CAD3);
        background: #FFF;
        box-sizing: border-box;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        z-index: 3;
    }

    .bot-menu a, .bot-menu button {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: var(--Black-2, #6E6E6E);
        font-family: Montserrat;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 15px */
        background-color: transparent;
        padding: 0;
        width: auto;
        height: auto;
        background-color: transparent;
    }

    .bot-menu button::before {
        display: none;
    }

    .bot-menu a:hover, .bot-menu button:hover {
/*        color: var(--Brand-Green1, #37751B); */

    }

    .bot-menu div {
        width: 18px;
        height: 18px;
        position: relative;
    }

    .bot-menu div img {
        display: flex;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transition: 0.3s;
    }

    .bot-menu a:hover img, .bot-menu button:hover img {
        /* opacity: 0; */
    }

    .bot-menu_active {
        opacity: 0;
    }

    .bot-menu a:hover .bot-menu_active, .bot-menu button:hover .bot-menu_active {
        /* opacity: 1; */
    }

    .catalog-nav {
        flex-wrap: nowrap;
        overflow-x: scroll;
        gap: 4px;
    }

    .catalog-nav::-webkit-scrollbar {
        display: none;
    }

    .catalog-nav a {
        white-space: nowrap;
        font-size: 12px;
    }

    .chip {
        margin-bottom: 18px;
    }

    .catalog-top {
        margin-bottom: 18px;
    }

    .catalog-row {
        gap: 0;
        margin-top: 14px;
    }

    .catalog-add {
        flex-wrap: nowrap;
        overflow-x: scroll;
        gap: 4px;
        margin-top: 14px;
    }

    .catalog-add-item {
        font-size: 12px;
    }

    .catalog-cont-filter {
        width: 34px;
        height: 34px;
        padding: 8px;
    }

    .catalog-cont-select {
        min-width: 0;
    }

    .select-trigger {
        font-size: 0;
        width: 34px;
        height: 34px;
        padding: 8px;
        background-image: url(../img/catalog/repeat_a.svg);
        background-repeat: no-repeat;
        background-position: center center;
        border: 0;
        border-radius: 8px;
        background-color: var(--Background-Background, #F9FAF9);
    }

    .select-trigger::after {
        display: none;
    }

    .catalog-cont-row {
        gap: 6px;
        row-gap: 24px;
    }

    .catalog-cont-row .main-card {
        width: calc(100% / 2 - 3px);
    }

    .catalog-cont-select .select-options {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        top: auto;
        z-index: 4;
        max-height: 0;
        transition: 0.3s;
        overflow: hidden;
        display: flex;
        padding: 20px;
        padding-top: 0;
        padding-bottom: 0;
        border-radius: 20px 20px 0px 0px;
        background: #FFF;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
        gap: 16px;
    }

    .catalog-cont-select.open .select-options {
        max-height: 500px;
        padding: 20px;
    }

    .catalog-side_active {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 4;
        max-width: none;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        box-sizing: border-box;
        padding: 12px 20px;
    }

    .catalog-side-title {
        display: flex;
        color: #000;
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%; /* 24px */
        letter-spacing: 0.08px;
    }

    .catalog-side-close {
        top: 14px;
        right: 20px;
        width: 20px;
        height: 20px;
    }

    .catalog-title {
        font-size: 14px;
    }

    .catalog-price input {
        font-size: 14px;
    }

    .catalog-block label {
        font-size: 14px;
    }

    .catalog-block-row {
        max-height: 185px;
    }

    .catalog-block-row_active {
        max-height: 1000px;
    }

    .catalog-block-more {
        font-size: 14px;
    }

    .catalog-side {
        padding-bottom: 61px;
    }

    .catalog-side-bot {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 8px 20px;
        box-sizing: border-box;
        border-top: 1px solid var(--Black-5, #C9CAD3);
        background: var(--White-1, #FFF);
    }

    .catalog-side-submit {
        display: flex;
        color: var(--White-1, #FFF);
        font-family: Montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%; /* 21px */
        border-radius: 8px;
        background: var(--Brand-Green1, #37751B);
        width: 100%;
        height: 45px;
    }

    .catalog-cont-row .main-card-pic {
        height: 240px;
    }

    .catalog-cont-row .main-card-add {
        gap: 8px;
    }

    .catalog-cont-row .main-card-add-price {
        font-size: 16px;
    }

    .catalog-cont-row .main-card-add-price span {
        font-size: 10px;
    }

    .catalog-cont-row .main-card-add-old {
        font-size: 10px;
    }

    .catalog-cont-row .main-card-add-dis {
        font-size: 10px;
        padding: 3px;
    }

    .catalog-cont-row .main-card-left {
        font-size: 10px;
        margin-top: 2px;
    }

    .catalog-top h1, .catalog-top h2 {
        font-size: 22px;
    }

    .comp .catalog-nav {
        flex-wrap: wrap;
    }

    .comp-row {
        margin-top: 18px;
        gap: 12px;
    }

    .comp-row .main-card {
        max-width: 138px;
        min-width: 138px;
    }

    .comp .main-card-pic {
        height: 180px;
    }

    .comp .main-card-add-old, .comp .main-card-add-dis, .comp .main-card-left {
        display: none;
    }

    .main-card-a {
        margin: 0;
    }

    .main-card-trash {
        position: absolute;
        bottom: 0;
        right: 0;
        min-width: 20px;
        max-width: 20px;
        height: 20px;
        padding: 0;
        background-size: 14px 14px;
        border-radius: 4px;
    }

    .comp-row-add {
        max-width: 138px;
        min-width: 138px;
        font-size: 12px;
        text-align: center;
    }

    .catalog-nav_all {
        font-size: 12px;
    }

    .comp-row-add {
        display: none;
    }

    .comp-row-add_asd {
        display: flex;
        max-width: 100%;
        min-width: none;
        margin-top: 16px;
        padding: 10px 30px;
        box-sizing: border-box;
        gap: 8px;
        flex-direction: row;
        border-radius: 10px;
    }

    .comp-row-add_asd::after {
        content: '';
        width: 18px;
        height: 18px;
    }

    .comp-info {
        margin-top: 28px;
    }

    .comp-info-row {
        gap: 12px;
    }

    .comp-info-switch {
        font-size: 14px;
    }

    .comp-info-item {
        max-width: 138px;
        min-width: 138px;
        font-size: 14px;
    }

    .comp-info_scroll {
        margin-top: 300px;
    }

    .comp-row_scroll {
        margin: 0;
        top: 64px;
    }

    .comp-row_scroll .main-card {
        gap: 6px;
    }

    .comp-row_scroll .main-card-pic {
        width: 36px;
        height: 56px;
        border-radius: 6px;
    }

    .comp-row_scroll .main-card-slider img {
        border-radius: 6px;
    }

    .comp-row_scroll .main-card-name {
        font-size: 10px;
        height: 30px;
        overflow: hidden;
    }

    .comp-row_scroll .main-card-cont {
        max-width: calc(100% - 42px);
    }

    .comp-row_scroll .main-card-add-price {
        font-size: 12px;
    }

    .main-card-add-price span {
        color: var(--Black-2, #6E6E6E);
        font-weight: 500;
    }

    .main-card_fav .main-card-pic-fav {
        width: 24px;
        height: 24px;
        top: 12px;
        right: 12px;
    }

    .fav-row {
        margin-top: 24px;
        gap: 6px;
        row-gap: 24px;
    }

    .fav-row .main-card {
        width: calc(100% / 2 - 3px);
    }

    .fav-row .main-card-add {
        gap: 8px;
    }

    .fav-row .main-card-add-price {
        font-size: 16px;
    }

    .fav-row .main-card-add-price span {
        font-size: 10px;
    }

    .fav-row .main-card-add-old {
        font-size: 10px;
    }

    .fav-row .main-card-add-dis {
        font-size: 10px;
        padding: 3px;
    }

    .fav-row .main-card-left {
        margin-top: 2px;
        font-size: 10px;
    }

    .fav .catalog-nav {
        flex-wrap: wrap;
    }

    .card-row {
        flex-direction: column;
        gap: 24px;
    }

    .card-slider {
        /* display: none; */
        width: 100%;
        max-width: 100%;
        position: relative;
    }

    .card-slider-nav {
        display: none;
    }

    .card-slider-main-item img {
        object-fit: cover;
        border-radius: 20px;
    }

    .card-slider .slick-dots {
        position: absolute;
        right: 0;
        left: 0;
        bottom: -18px;
        display: flex;
        list-style: none;
        gap: 8px;
        justify-content: center;
    }

    .card-slider .slick-dots button {
        font-size: 0;
        transition: 0.3s;
        width: 8px;
        height: 8px;
        background-color: #C9CAD3;
        border-radius: 50%;
    }

    .card-slider .slick-dots .slick-active button {
        background-color: #57923D;
    }

    .card-side {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        display: grid;
    }

    .card-side-price {
        order: 0;
        justify-content: flex-start;
        gap: 12px;
    }

    .card-side-cont {
        order: 1;
    }

    .card-top-add {
        flex-wrap: wrap;
    }

    .card-top-add_mob {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .card-top-add-copy {
        width: 100%;
    }

    .card-top-add-share {
        display: none;
    }

    .card-top-add_mob .card-top-add-share {
        display: flex;
    }

    .card-top-add_mob .card-side-top-add-cntr {
        display: flex;
    }

    .card-top-add-row {
        display: flex;
        gap: 16px;
    }

    .card-top-add-row a {
        width: 20px;
        height: 20px;
    }

    .card-top-add-row a img {
        width: 100%;
        height: 100%;
    }

    .card-side-top-add-cntr {
        display: none;
    }

    .card-side-top-price {
        display: none;
    }

    .card-side-price {
        margin-top: 10px;
    }

    .card-side-top-add-star, .card-side-top-add-msg {
        font-size: 16px;
    }

    .card-side-price-main {
        font-size: 20px;
        gap: 2px;
    }

    .card-side-price-main span {
        font-size: 12px;
    }

    .card-side-price-old {
        font-size: 12px;
    }

    .card-side-price-dis {
        font-size: 12px;
        padding: 3px 6px;
    }

    .card-side-krat {
        text-align: left;
        font-size: 12px;
        margin-top: 4px;
    }

    .card-side-cart {
        display: none;
    }

    .card-side-sd {
        display: none;
    }

    .card-side-add {
        order: 2;
        margin-top: 6px;
    }

    .card-side-cont-block .select-trigger {
        width: 100%;
        padding: 6px 8px;
        height: 41px;
        display: flex;
        align-items: center;
    }

    .card-side-cont-block .select-trigger::after {
        display: flex;
    }

    .card-bot {
        display: flex;
        position: fixed;
        bottom: 55px;
        right: 0;
        left: 0;
        z-index: 2;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--Black-5, #C9CAD3);
        background: var(--White-1, #FFF);
        box-sizing: border-box;
        padding: 8px 20px;
    }

    .card-bot-price {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .card-bot-price-new {
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--Black-1, #000);
        font-family: Montserrat;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.09px;
    }

    .card-bot-price-new span {
        color: var(--Black-2, #6E6E6E);
        font-family: Montserrat;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 18px */
    }

    .card-bot-price-old {
        color: var(--Black-2, #6E6E6E);
        font-family: Roboto;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: line-through;
    }

    .card-bot-buy {
        color: var(--White-1, #FFF);
        font-family: Montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%; /* 21px */
        border-radius: 8px;
        background: var(--Brand-Green1, #37751B);
        padding: 10px 14px;
        box-sizing: border-box;
    }

    .card-info {
        margin-top: 56px;
    }

    .card-info-nav {
        gap: 16px;
    }

    .card-info-nav button {
        font-size: 14px;
    }

    .card-info-block_char-col ul li {
        font-size: 14px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .card-info-block_char-col ul li span {
        white-space: wrap;
    }

    .card-info-block_char-col ul li span:first-child::after {
        display: none;
    }

    .card-info-block_char-col ul li span:first-child {
        max-width: 185px;
        /* min-width: 185px; */
        width: 100%;
    }

    .card-info-block_desc p {
        font-size: 14px;
    }

    .card-info-block_del {
        gap: 18px;
    }

    .card-info-block_del-block-title {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .card-info-block_del-item {
        font-size: 14px;
    }

    .card-info-block_review-top {
        flex-wrap: wrap;
        row-gap: 9px;
    }

    .card-info-block_review span {
        width: 100%;
    }

    .card-info-block_review-rate {
        margin-left: 0;
    }

    .card-info-block_review-rate-item {
        width: 22px;
        height: 22px;
    }

    .card-info-block_review-form input[type="text"] {
        font-size: 12px;
        padding: 14px 16px;
    }

    .card-info-block_review-form textarea {
        font-size: 12px;
        padding: 14px 16px;
    }

    .card-info-block_review-form-file {
        font-size: 12px;
    }

    .card-info-block_review-form-check {
        gap: 8px;
        line-height: 150%; /* 15px */
        font-size: 10px;
    }

    .card-info-block_review-form-check a {
        font-size: 10px;
        display: contents;
    }

    .card-info-block_review-list-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .card-info-block_review-list-top .catalog-cont-select {
        max-width: none;
    }

    .card-info-block_review-list-top .select-trigger {
        width: 100%;
        color: var(--Black-1, #000);
        padding: 14px 16px;
        height: auto;
        font-family: Montserrat;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 18px */
        max-width: none;
    }

    .card-info-block_review-list-top .select-trigger::after {
        display: flex;
    }

    .card-info-block_review-list-top label {
        font-size: 12px;
        gap: 8px;
        align-items: center;
    }

    .card-info-block_review-list-top label input[type="checkbox"]~span {
        min-width: 16px;
        max-width: 16px;
        height: 16px;
    }

    .card-info-block_review-list-item-top-pic {
        max-width: 64px;
        min-width: 64px;
        height: 64px;
    }

    .card-info-block_review-list-item-top-rt {
        flex-direction: column;
    }

    .card-info-block_review-list-item-row-block span {
        font-size: 14px;
    }
}


.catalog-top_a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-top-nav {
    display: flex;
    gap: 30px;
}


.catalog-top-nav a {
    color: var(--Black-2, #6E6E6E);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: flex;
    gap: 5px;
    align-items: center;
    white-space: nowrap;
}

.catalog-top-nav a span {
    color: var(--Black-4, #9F9F9F);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.catalog-top-nav a:hover {
    color: var(--Brand-Orange1, #E14F28);
}

.catalog-top-nav a:hover span {
    color: var(--Brand-Orange1, #E14F28);
}

@media (max-width: 767px) {
    .catalog-top_a {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .catalog-top-nav {
        overflow-x: scroll;
        width: 100%;
    }

    .catalog-top-nav::-webkit-scrollbar {
        display: none;
    }
}

.thx_pop {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.thx_pop_active {
    display: flex;
}

.thx_pop-cont {
    padding: 45px 44px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    max-width: 490px;
    width: 100%;
    height: fit-content;
    text-align: center;
    margin: auto;
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: relative;
	overflow-y: scroll;
    max-height: 90vh;
}

.thx_pop-cont-close {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/header/close.svg);
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
}

.header-main-add a {
    position: relative;
}

.header-main-add a span {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding: 0 6px;
    border-radius: 50%;
    background: var(--Brand-Orange1, #E14F28);
    position: absolute;
    top: 0;
    right: 0;
    height: fit-content;
}

.bot-menu a {
    position: relative;
}

.bot-menu a span {
    color: var(--White-1, #FFF);
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 0 4px;
    border-radius: 50%;
    background: var(--Brand-Orange1, #E14F28);
    position: absolute;
    top: -3px;
    right: 0;
    height: fit-content;
}

.main-hit-slider.no-slider {
	display: flex;
	justify-content: flex-start;
	margin-left: -20px;
	overflow: scroll;
	min-height: 659px;
}

.main-hit-slider::-webkit-scrollbar {
	display: none;
}

@media (max-width: 768px) {
	.main-hit-slider.no-slider {
		display: flex;
		justify-content: flex-start;
		margin-left: 0;
		min-height: 0;
		padding-left: 0;
	}

	.main-hit-slider {
		padding-left: 0;
	}
}

.header-main-add-cart {
    position: relative;
}

.header-main-add-cart-menu {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    padding: 20px 16px;
    padding-bottom: 0;
    box-sizing: border-box;
    max-width: 460px;
    width: max-content;
    display: none;
    z-index: 9;
}

.header-main-add-cart-menu::before {
    content: '';
    width: 100%;
    height: 20px;
    top: -20px;
    right: 0;
    left: 0;
    background-color: transparent;
    position: absolute;
}

.header-main-add-cart-menu_active {
    display: block;
}

.header-main-add-cart-menu-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 320px;
    overflow-y: scroll;
    padding-bottom: 20px;
}

.header-main-add-cart-menu-row::-webkit-scrollbar {
    display: none;
}

.header-main-add-cart-menu .header-main-search-res-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.header-main-add-cart-menu .header-main-search-res-title {
    max-width: 194px;
}

.header-main-add-cart-menu-bot {
    width: 100%;
    border-top: 1px solid var(--Black-5, #C9CAD3);
    background: #FFF;
    padding: 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main-add-cart-menu-bot-res {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.header-main-add-cart-menu-bot-res span {
    color: var(--Black-1, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.header-main-add-cart-menu-btn {
    color: var(--White-1, #FFF) !important;
    font-family: Montserrat;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 600 !important;
    line-height: normal;
    letter-spacing: 0.09px !important;
    max-width: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 12px;
    box-sizing: border-box;
    border-radius: 10px;
    background: var(--Brand-Green1, #37751B);
}

.header-main-add-cart-menu-btn:hover {
    color: var(--Brand-Green2, #57923D) !important;
    background: var(--Brand-Green7, #EDF3EA);
}

.header-main-search-res-pic img {
	width: 100% !important;
	height: 100% !important;
}

.main-card-pic {
	height: 309px;
}

.main-card-dots-secondary {
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
}

@media (max-width: 767px) {
    .catalog-cont-row .main-card-pic {
        height: auto;
		aspect-ratio: 1/1;
    }
    
    .main-card-dots-secondary {
    	bottom: -15px;
    }
    
    .main-card-name {
    	height: 63px;
    }
    
    .main-card-pic {
    	height: 222px;
	}
	
	.main-card-cont {
		margin-top: 20px;
	}
	
	.main-card-btn {
		display: flex;
	}
	
	.card-side-cart {
		display: flex;
	}
	
	.card-slider-main-item img {
		object-fit: contain;
		object-position: center center;
	}
	
	.card-slider-main .slick-list {
		width: 100%;
	}
}

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

@media (max-width: 767px) {
	.main-advice-col_sm a {
		width: calc(100% / 2 - 10px);
	}
}

.catalog-side_active {
	display: flex;
}

@media (max-width: 1279px) {
	.bx-filter.catalog-side_active {
		position: absolute;
		background-color: #fff;
        left: 0;
        bottom: 0;
        z-index: 4;
        padding: 30px;
        height: fit-content;
        overflow-y: scroll;
        border-radius: 16px;
        top: 70px;
        width: fit-content;
	}
	.catalog-side {
		display: flex;
	}

	.category-aside-filter {
		width: 100%
	}
}

@media (max-width: 767px) {
	.catalog-side_active {
		display: flex;
	}
	
	.bx-filter.catalog-side_active {
		position: fixed;
		top: 0;
		width: 100%;
	}

	.catalog-side {
		display: flex;
		max-width: 100%
	}

	.category-aside-filter {
			width: 100%;
			height: 90vh;
		}
	}
}