@media (min-width: 993px) {
    .filter-pannel--sorting {
        display: none;
    }
}
.sorting {
    margin-bottom: 30px;
}
.sorting__list {
    margin-right: 45px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.sorting__item {
    margin-left: 20px;
    color: #B12535;
    white-space: nowrap;
}
.sorting__item:first-child {
    margin-left: auto;
}
.sorting__link {
    cursor: pointer;
    position: relative;
    transition: .2s ease-in-out;
}
.sorting__link:hover {
    color: #b76f44;
    text-decoration: underline;
}
.sorting__link--asc,
.sorting__link--desc {
    color: #B76F44;
}
.sorting__link--asc::after,
.sorting__link--desc::after {
    position: absolute;
    top: 2px;
    right: -12px;
    font-size: 14px;
    color: #B76F44;
}
.sorting__link--asc::after {
    content: '\2191';
}
.sorting__link--desc::after {
    content: '\2193';
}
@media (min-width: 2000px) {
    .sorting__list {
        max-width: 1730px;
    }
}
@media (min-width: 1400px) and (max-width: 1685px) {
    .sorting__list {
        margin-right: 0;
        max-width: 850px;
    }
}
@media (min-width: 1280px) and (max-width: 1399px) {
    .sorting__list {
        max-width: 850px;
    }
}
@media (max-width: 1399px) {
    .sorting__list {
        margin-right: 10px;
    }
}

.btn-filter {
    display: none;
    height: 50px;
    border-radius: 35px;
    border: 2px solid #b17554;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 46px;
    letter-spacing: normal;
    text-align: center;
    color: #b17554;
    text-decoration: none;
    width: 100%;
    max-width: 315px;
    transition: 0.25s;
}

.btn-filter:hover {
    color: #B12535;
    border-color: #B12535;
}

@media screen and (max-width: 992px) {
    .btn-filter__wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .btn-filter {
        display: inline-block;
        font-size: 14px;
        height: 40px;
        line-height: 36px;
    }
    .btn-filter--sorting {
        margin-left: 20px;
    }
    .assortment__title {
        margin: 0 0 20px;
    }
}

.btn-filter:active,
.btn-filter:focus {
    color: #b17554;
}

.filter-pannel {
    position: relative;
}

@media screen and (max-width: 992px) {
    .filter-pannel {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 10001;
        background: #f7f1ed;
        left: -400px;
        width: 100%;
        max-width: 375px;
        height: 100%;
        text-align: left;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .filter-pannel.show {
        opacity: 1;
        visibility: visible;
        left: 0;
    }
    .sorting {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .filter-pannel .filter-pannel__list {
        height: 100%;
        overflow-y: auto;
        padding: 110px 30px 90px 30px;
    }
}

@media screen and (max-width: 992px) {
    .filter-pannel .filter-pannel__list .sidebar-item:last-child {
        margin-bottom: 0px;
    }
}

.filter-pannel .filter-pannel__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    height: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #b17554;
    padding: 0 30px;
    border-bottom: 2px solid #b17554;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: none;
    background: #f7f1ed;
    z-index: 5;
}

@media screen and (max-width: 992px) {
    .filter-pannel .filter-pannel__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.filter-pannel .filter-pannel__close {
    display: block;
    width: 20px;
    height: 14px;
    position: relative;
    overflow: hidden;
}

.filter-pannel .filter-pannel__close span {
    width: 100%;
    height: 2px;
    background: #b17554;
    display: block;
    position: absolute;
    left: 0;
    top: 6px;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.filter-pannel .filter-pannel__close span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.filter-pannel .filter-pannel__bottom {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .filter-pannel .filter-pannel__bottom {
        display: block;
    }
}

.filter-pannel .filter-pannel__bottom .btn {
    min-width: 160px;
}