.categories-title {
    margin-bottom: 40px !important;
}

.categories-title h1 {
    font-weight: 500;
    font-size: 56px;
    line-height: 110%;
}

.sort__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

.menu {
}
.menu-items {
    width: 100%;
    display: flex;
    gap: 23px;
}

.menu-items-toggle {
    display: none;
}

.sort__head {
    white-space: nowrap;
}

.sort__title {
    margin-right: 24px;
    color: #a8a9ad;
}

.menu-item {
    transition: all 0.35s ease;
}

.menu-item:hover .menu-item__label {
    color: #f27435;
}

.menu-item__input {
    position: absolute;
    width: 16px;
    height: 16px;
    z-index: -1;
    opacity: 0;
}

.menu-item__input + .menu-item__label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    border-bottom: 1px dashed;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.menu-item.down,
.menu-item.up {
    color: #f27435;
}

.menu-item.down::after {
    content: "";
    background-image: url("images/menu-arrow-down.svg");
    background-repeat: no-repeat;
    width: 7.7px;
    height: 10.7px;
    margin-left: 3px;
    color: #f27435;
    transition: all 0.35s ease;
}

.menu-item.up::after {
    content: "";
    background-image: url("images/menu-arrow-down.svg");
    background-repeat: no-repeat;
    width: 7.7px;
    height: 10.7px;
    margin-left: 3px;
    color: #f27435;
    transform: rotate(180deg);
    transition: all 0.35s ease;
}
.menu-item:hover {
    color: #f27435;
}
.menu-item__input:checked + .menu-item__label {
    position: relative;
    color: #f27435;
    border-bottom: 1px dashed #f27435;
}

.menu-item__input:checked + .menu-item__label::after {
    content: "";
    background-image: url("images/menu-arrow-down.svg");
    background-repeat: no-repeat;
    width: 7.7px;
    height: 10.7px;
    margin-left: 3px;
    color: #f27435;
    transition: all 0.35s ease;
}

.menu-item.increase .menu-item__label::after {
    content: "";
    background-image: url("images/menu-arrow-down.svg");
    background-repeat: no-repeat;
    width: 7.7px;
    height: 10.7px;
    margin-left: 3px;
    color: #f27435;
    transition: all 0.35s ease;
}

.menu-item.decrease .menu-item__label::after {
    content: "";
    background-image: url("images/menu-arrow-down.svg");
    background-repeat: no-repeat;
    width: 7.7px;
    height: 10.7px;
    margin-left: 3px;
    color: #f27435;
    transform: rotate(180deg);
    transition: all 0.35s ease;
}

.menu-item__label {
    transition: all 0.35s ease;
}

.menu-item__form {
    display: block;
}

.menu__item-checkbox {
}

.section__items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 0;
}

.categories-other {
    margin-bottom: 45px;
}

.categories-other__area {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	height: fit-content;
    max-height: 805px;
}

.categories-other__links {
    width: max-content;
    max-width: 283px;
    margin-bottom: 56px;
    color: #67676780;
}

.categories-other__item {
    margin-bottom: 16px;
    transition: color ease 0.5s;
}

.categories-other__link {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    transition: color ease 0.5s;
}

.categories-other__item:hover a {
    color: var(--orange-color);
    transition: color ease 0.5s;
}
/* linking-lines_section */

.linking-lines_section {
    margin-bottom: 74px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    width: 100%;
}

.linking-lines__line {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: auto;
}

.linking-lines__line + .linking-lines__line {
    margin-top: 16px;
}

.linking-lines__line__item {
    padding: 12px 35px;
    border: 1px solid var(--dark-blue-color);
    border-radius: 57px;
    white-space: nowrap;
    margin: 0 16px 16px 0;
    background-color: var(--white-color);
    transition: border 0.5s ease, color 0.5s ease;
}

.linking-lines__line__item_select {
    border-color: var(--blue-color);
}

.linking-lines__line__item:hover {
    border-color: var(--orange-color);
    color: var(--orange-color);
}

@media screen and (min-width:766px) {
    .section-title{
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1023px) {
    .categories-title {
        display: none;
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .categories-title h1 {
        font-weight: 500;
        font-size: 32px;
        line-height: 110%;
    }

    .service-content__section {
        margin-bottom: 40px;
    }

    .section__items {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 0;
    }
    .section__item {
        margin-bottom: 76px;
        border-right: 1px solid rgba(168, 169, 173, 0.25);
    }

    .section__item:hover .section__item-info {
        display: none;
    }

    .section__item-info {
        display: none;
    }
    .section__item-list {
        width: 100%;
    }
    .section__item-list_item-info-block {
        display: flex;
        padding-top: 51px;
    }
    .section__item-list_item-data {
        margin-left: 23px;
    }
    .section__item-list_item-img {
        min-width: 80px;
        width: 26%;
        height: 90%;
    }
    .section__item-list_item-img_label {
        top: 16px;
        left: 16px;

        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }
    .section__item-list_item-img_buttons {
        display: flex;
        flex-direction: row;
        top: 16px;
        right: 16px;
        opacity: 1;
        visibility: visible;
        transition-property: all;
        transition: all ease 0.25s;
    }

    .section__item-list_item-img_button {
        margin-bottom: 0;
        margin-right: 8px;
    }

    .section__item-list_item-img_button:last-child {
        margin-right: 0;
    }

    .section__item-list_links {
        flex-direction: row;
        transform: translateY(100%);
    }

    .section__item-list_item {
        height: 100%;
        padding: 16px 16px 22px;

        background-color: #fff;
    }
    .section__item-list_item-img {
        position: initial;
    }

    .section__item-list_item-article {
        margin-bottom: 16px;

        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
    }
    .section__item-list_item-brand {
        font-weight: 700;
        font-size: 14px;
        line-height: 140%;
    }

    .section__item-list_item-description {
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }

    .section__item-list_item-available {
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
    }

    .section__item-list_item-price {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: calc(26% + 23px);
    }

    .section__item-list_item-price__new {
        font-weight: 500;
        font-size: 20px;
        line-height: 110%;
        margin-bottom: 8px;
    }

    .section__item-list_item-price__old {
        padding-left: 0;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        text-decoration-line: line-through;
    }

    .form__item {
        margin-bottom: 24px;
    }
    .form__item-show {
    }
    .form__item-available {
        display: block;
    }

    .form__item-title {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;

        font-weight: 600;
        font-size: 16px;
        line-height: 110%;
    }

    .form__item-title::after {
        content: "";
        min-width: 7px;
        min-height: 7px;
        background: url(https://svgshare.com/i/i7J.svg) center / contain no-repeat;
        margin-left: 8px;
        margin-right: 8px;
        transition: transform 0.5s;
    }
    .form__item-title-show::after {
        content: "";
        transform: rotateX(180deg);
        transition: transform 0.5s;
    }

    .form__item.form__item-available .form__item-inner {
        max-height: 200px;
    }
    .form__item .form__item-inner {
        transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        max-height: 0px;
    }

    .form__item-show .form__item-inner {
        transition: max-height 1s;
        max-height: 180px;
    }

    .sort__menu .menu-items {
        position: absolute;
        flex-direction: column;
        left: 0;
        right: 0;
        top: 20px;
        z-index: 10;
        background-color: #fff;
        padding: 10px;
        opacity: 0;
        visibility: visible;
        max-height: 0;
        border: 1px solid rgba(168, 169, 173, 0.25);
    }
    .sort__menu .menu-items .menu-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .sort__menu {
        position: relative;
        align-items: flex-start;

        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }

    .sort__head .sort__title {
        margin-right: 8px;
    }

    .linking-lines_section {
        margin-bottom: 45px !important;
    }
    .linking-lines__line .linking-lines__line__item {
        width: 100%;
        text-align: center;
        margin: 0 32px 8px 0;
    }

    .categories-other {
        margin-bottom: 60px;
        padding: 0 16px;
    }

    .categories-other__area {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        max-height: 530px;
        overflow-y: auto;
    }

    .categories-other__area::-webkit-scrollbar {
        width: 1px;
    }

    .categories-other__area::-webkit-scrollbar-track {
        background-color: #a8a9ad;
    }

    .categories-other__area::-webkit-scrollbar-thumb {
        background-color: #009fc2;
    }

    .categories-other__links {
        margin-bottom: 0;

        font-weight: 500;
        font-size: 20px;
        line-height: 110%;
    }
    .categories-other__links li {
        font-weight: 500;
        font-size: 16px;
        line-height: 110%;

        color: #041229;
    }
}
