.left-menu {
    position: relative;
    z-index: 2;
}

.left-menu__item {
    /*flex-grow: 1;*/
    /*border-bottom: 1px solid #e4e7ed;*/
}

.left-menu__link {
    /*display: block;*/
    /*position: relative;*/
    /*z-index: 1;*/

}


.left-menu__toggle {
    display: none;
}

.left-menu__toggle::before {
    content: "\f141";
    line-height: 40px;
    color: #31404b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "FontAwesome";
}
.left-menu__toggle--active::before {
    content: '\f00d';
}

/*
.left-menu__link::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    opacity: 0;
    background-color: #02a13b;
}
*/

.filter-active .left-menu__link {
    color: #31404b;
}

.filter-active .left-menu__link::before {
    height: 4px;
    opacity: 1;
}

.filter-active .left-menu__link:hover {
    cursor: default;
}




@media (max-width: 991px) {
    /*
    .left-menu .container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    */

    .left-menu__toggle {
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 2;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-weight: 400;
        font-size: 16px;
    }

    .left-menu__item:not(.filter-active) {
        display: none;
    }

    .left-menu__list--expanded .left-menu__item {
        display: block;
    }

    .filter-active {
        order: -1;
    }
}


@media (min-width: 992px) {
    .left-menu {
        border-bottom: 1px solid #e4e7ed;
    }

    .left-menu__list {
        flex-direction: row;
        border-left: 1px solid #e4e7ed;
        border-right: 1px solid #e4e7ed;
    }

    .left-menu__item {
        border-bottom: none;
    }
    .left-menu__item + .left-menu__item {
        border-left: 1px solid #e4e7ed;
    }

    .left-menu__link {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
