.filter-checkbox {
    position: relative;
    cursor: pointer;
}

.filter-checkbox-item{
    cursor: pointer;
}

/* Active state */
.filter-checkbox:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}
.filter-checkbox.active {
    background: #007bff;
    border-color: #007bff;
}
/* When active class is added */
.filter-checkbox.active::after {
    opacity: 1;
}

.filter-item-preview span.filter-item-show {
    background: #8f8fe2;
    color: #000;
    padding: 1px 8px;
    border-radius: 6px;
    margin-left: 3px;
}

.hide-list{
    display: none;
}

/* .main-header{
    overflow-x: auto;
} */

/* scrollbar height */
/* .main-header::-webkit-scrollbar {
    height: 4px;
} */

/* scrollbar track */
/* .main-header::-webkit-scrollbar-track {
    background: #f1f1f1;
} */

/* scrollbar thumb */
/* .main-header::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
} */