.category-sidebar {
    width: 240px;
    background: #F0F0F0;
    position: relative;
}
.category-sidebar__container {
    width: 240px;
    background: #F0F0F0;
    position: absolute;
    left: 0; top: 0;
    z-index: 99;
}

.category-sidebar__header {
    padding: 20px;
    background: #656C6F;
}

.category-sidebar__title {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #8A8F91;
    margin-bottom: 15px;
}

.category-sidebar__nav {
    display: inline-flex;
    flex-direction: column;
}

.category-sidebar__nav-item {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    margin: 6px 0;
}

.category-sidebar__nav-item:hover {
    text-decoration: underline;
}

.category-sidebar__form {
    padding: 20px;
}

.category-sidebar__form-group {
    margin-bottom: 35px;
}

.category-sidebar__form-label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.category-sidebar__range-controls {
    display: flex;
    justify-content: space-between;
}

.category-sidebar__control-min, .category-sidebar__control-max {
    display: block;
    width: 75px;
    height: 30px;
    padding: 6px 12px;
    font-size: 12px;
    color: #000;
    font-weight: bold;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    transition: 300ms linear all;
}

.category-sidebar__control-min:focus, .category-sidebar__control-max:focus {
    border-color: #e20932;
    outline: 0;
}

.category-sidebar__range-dash {
    height: 1px;
    margin-top: 15px;
    width: 13px;
    background: #656C6F;
}

.category-sidebar__range {
    margin-top: 15px;
    height: 4px;
    border: none;
    border-radius: 0;
    background: #ABAEB0;
}

.category-sidebar__range .ui-slider-range {
    background: #E20932;
    height: 4px;
}

.category-sidebar__range .ui-slider-handle {
    cursor: pointer;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #e20932;
    outline: 0;
}

.category-sidebar__form-group:last-child {
    margin-bottom: 0;
}

.category-siderbar__btn {
    width: 100%;
    display: block;
    font-size: 18px;
    color: #fff;
    background: #E20932;
    padding: 10px 40px;
    text-align: center;
    font-weight: bold;
    border-radius: 0;
    border: 2px solid #E20932;
    transition: 300ms ease all;
}

.category-siderbar__btn:hover {
    background: transparent;
    color: #E20932;
}

.category-sidebar .select2-selection {
    border-radius: 0;
}

.category-sidebar .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e10931;
    border: 1px solid #e10931;
    color: white;
    border-radius: 0px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}
.category-sidebar .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #fff;
}
.category-sidebar .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{
    color: #fff;
}
@media screen and (max-width: 992px) {
    .category-sidebar {
        display: none;
    }
}
