.aside-item {
    margin-bottom: 25px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.aside-item:last-child {
    border-bottom: none;
}

.aside-title .title-head {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.aside-title .title-head i {
    font-size: 14px;
    transition: transform 0.3s;
}

.filter-group ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.filter-item {
    margin-bottom: 10px;
}

.custom-checkbox {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    display: block;
    color: #444;
    transition: color 0.2s;
}

.custom-checkbox:hover {
    color: #931d36;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: all 0.2s;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: #931d36;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #931d36;
    border-color: #931d36;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-item-toggle {
    color: #666;
    font-size: 13px;
    cursor: pointer;
    margin-top: 5px;
    display: inline-block;
}

.filter-item-toggle:hover {
    color: #931d36;
}

.filter-item-toggle i {
    margin-left: 5px;
    font-size: 11px;
}

.overflow-item {
    display: none;
}

.overflow-item.show {
    display: block;
}
