@charset "UTF-8";

.shortcuts__title, .catalog-category__title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.promo-banner {
    display: block;
    position: relative;
    padding: 24px;
    min-height: 240px;
    background: linear-gradient(340deg,rgba(0, 183, 244, 1) 20%, rgba(0, 0, 0, 1) 100%);
    overflow: hidden;
    margin-bottom: 2rem;

}

.catalog-category {
    background-color: #fff;
    padding: 2rem;
    display: block;
    margin-bottom: 2rem;
}

.catalog-category__wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.catalog-category__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 2px;
    max-height: 5000px;
    height: auto;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.65,0,0.35,1);
}

.catalog-category.is--collapsed .catalog-category__list {
    max-height: 204px;
}

.catalog-category__item {
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 12px;
}

.catalog-category__item .catalog-category__link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.catalog-category__item.active {
    background: #222A30;
}

.catalog-category__item.active h4 {
    color: #fff !important;
}

.catalog-category__item.active p {
    color: #E2E2E2 !important;
}

.catalog-category__item .catalog-category__link img {
    max-width: 140px;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}


.catalog-category__item .catalog-category__body {
    display: flex;
    flex-direction: column;
    max-width: 153px;
    gap: 6px;
}

.catalog-category__item .catalog-category__body .catalog-category__title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.catalog-category__item .catalog-category__body .catalog-count {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    color: #858687;
}

.catalog-category__item .catalog-category__link:hover {
    color: #000;
}


.catalog-category__title {
    margin-bottom: 0;
}

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

.category_toggle {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.25;
    font-weight: 500;
    font-size: 12px;
}

.category_toggle::after {
    content: 'Скрыть';
}

.catalog-category.is--collapsed .category_toggle::after {
    content: 'Показать все';
}

.promo-banner__img {
    position: absolute;
    right: -35px;
    bottom: 0;
    width: 100%;
    max-width: 294px;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
}

.promo-banner__body {
    display: flex;
    flex-direction: column;
    gap: 17px;
    z-index: 2;
    position: relative;
    max-width: 220px;
    align-items: flex-start;
}

.catalog-results__wrapper {
    position: relative;
}

.promo-banner__content {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.promo-banner .promo-banner__title {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.promo-banner .button.is--main {
    font-size: 12px;
    font-weight: 600;
    padding: 12px 20px;
}

.promo-banner .promo-banner__subtitle {
    font-size: 12px;
    font-weight: 400 ;
    margin: 0;
    color: #fff;
}

.text-content-with-image .text-content-with-image__body {
    display: flex;
    gap: 70px;
    margin-bottom: 9rem;
}

.text-content-with-image .text-content-with-image__body .image-wrapper {
    width: 50%;
}

.text-content-with-image .text-content-with-image__body .image-wrapper img {
    width: 100%;
    height: auto;
}

.text-content-with-image .text-content-with-image__body .text-wrapper {
    width: 50%;
}

.catalog-results__body .promo-banner {
    display: none;
}

.advantages-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    gap: 2rem;
    margin-bottom: 4.5rem !important;
}

.text-content-bottom h2 {
    margin: 0;
    margin-bottom: 2rem;
}

.text-content-bottom p {
    margin-bottom: 2rem;
}

.text-content-bottom {
    margin-bottom: 9rem;
}

.advantages-list__item {
    all: unset;
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 20px;
    margin: 0 !important;
    align-items: center;
}

.advantages-list__item img {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
}

.advantages-list__item::before {
    content: none !important;
}

.advantages-list__item .advantages-list__item-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advantages-list__item .advantages-list__item-text h4 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
}

.advantages-list__item .advantages-list__item-text p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.009em;
}

.frame {
    margin-top: 2rem;
}

.advantages-list__item svg {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
}

@media (max-width: 1320px) {
    .advantages-list {
        flex-direction: column;
    }
}

@media (max-width: 1120px) {
    .catalog-category.is--collapsed .catalog-category__list {
        max-height: 214px;
    }
}

@media (max-width: 1066px) {
    .catalog-category.is--collapsed .catalog-category__list {
        max-height: 228px;
    }

    .text-content-with-image .text-content-with-image__body {
        flex-direction: column;
        gap: 20px;
    }

    .text-content-with-image .text-content-with-image__body .image-wrapper {
        width: 100%;
    }

    .text-content-with-image .text-content-with-image__body .text-wrapper {
        width: 100%;
    }
}

@media (max-width: 975px) {
    .catalog-category.is--collapsed .catalog-category__list {
        max-height: 246px;
    }
}

@media (max-width: 960px) {
    .catalog-filter .promo-banner {
        display: none;
    }

    .catalog-filter {
        width: 0;
        margin: 0;
    }

    .catalog__body .catalog-filter::before {
        all: unset;
    }

    .catalog-results__header .catalog-filter::before {
        content: "";
        display: block;
        width: 6.5rem;
        height: 3.9rem;
        background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='21' fill='none'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M22 1H1l8.4 9.9856v6.9033L13.6 20v-9.0144L22 1z'/%3E%3C/svg%3E") center center no-repeat;
        cursor: pointer;
        border-radius: .4rem;
    }

    .catalog-category.is--collapsed .catalog-category__list {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .catalog-category.is--collapsed .catalog-category__list {
        max-width: unset;
        display: flex;
        width: max-content;
        flex-direction: row;
    }

    .catalog-category {
        background: none;
        padding: 0;
    }

    .catalog-category__body {
        overflow: scroll;
    }

    .catalog-category .catalog-category__header .category_toggle {
        display: none;
    }
}

@media (max-width: 720px) {
    .catalog-options .field--catalog-view .field-options-entry input[data-type=rows]+.label::before, .catalog-options .field--catalog-view .field-options-entry input:checked+.label::before {
        all: unset;
    }
}

@media (max-width: 720px) {
    .advantages-list__item svg {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        max-width: 30px !important;
    }

    .advantages-list__item {
        align-items: start;
    }

    .advantages-list__item .advantages-list__item-text h4 {
        font-size: 15px;
    }

    .advantages-list__item .advantages-list__item-text p {
        font-size: 12px;
    }

    .frame h2 {
        font-size: 21px;
    }

    .catalog-results__body .promo-banner {
        display: block;
        width: 100%;
        min-height: 150px;
    }

    .catalog-results__body .promo-banner .promo-banner__img {
        max-width: 192px;
        right: 0;
    }

    .catalog-results__body .promo-banner .promo-banner__title {
        font-size: 12px;
    }

    .catalog-results__body .promo-banner .promo-banner__subtitle {
        font-size: 10px;
    }

    .catalog-results__body .promo-banner .button.is--main {
        font-size: 10px;
        padding: 5px 10px;
    }

    .catalog-results__body .promo-banner__content {
        gap: 10px;
    }

    .catalog-results__body .promo-banner__body {
        gap: 13px;
    }
}

@media (max-width: 360px) {
    .catalog-category__item {
        gap: 10px;
        padding: 1rem;
    }

    .catalog-category__item .catalog-category__link img {
        max-width: 95px;
    }

    .catalog-category__item .catalog-category__body .catalog-category__title {
        font-size: 10px;
        font-weight: 500;
    }

    .catalog-category__item .catalog-category__body .catalog-count {
        font-size: 10px;
        font-weight: 500;
    }

    .catalog-category__item {
        max-width: 229px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
