.category {
    background-color: #f1f3f9;
    border-radius: 24px;
    padding: 24px 24px 0;
    margin-bottom: 30px;
    height: 100%;
}

.category .category-item {
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    height: 100%;
    min-height: 156px;
}

.category .category-item>.row {
    height: 100%;
}

.category .category-item .cat-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.category .category-item .cat-header img {
    width: 28px;
    height: 28px;
}

.category .category-item .col-xl-5 {
    position: relative;
}

.category .category-item .col-xl-5::before {
    content: '';
    width: 1px;
    height: calc(100% - 30px);
    border-right: 1px solid #ecedef;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.category .category-item .cat-header .cat-title {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.category .category-item .cat-header .count {
    font-size: 14px;
    color: #949cb7;
}

.cat-child {
    height: 100%;
    display: flex;
    align-items: center;
}

.category .cat-child ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.category .cat-child ul a {
    color: var(--main-color);
    font-size: 14px;
}

#category-mb {
    background-color: #f1f3f9;
    padding: 16px 0;
    margin-bottom: 50px;
}

#category-mb .categories-title {
    font-size: 16px;
    font-weight: 500;
}

#category-mb .icon {
    width: 28px;
    height: 28px;
}

#category-mb .accordion-item {
    border: 1px solid #BBC3DD;
    border-radius: 16px;
    overflow: hidden;
}

#category-mb .accordion-button {
    padding: 12px 16px;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: #fff;
}

#category-mb .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#category-mb .accordion-button>.d-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

#category-mb .category-title {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

#category-mb .count {
    font-size: 16px;
    color: #949CB7;
}

.accordion-body {
    padding: 0 12px 12px;
}

#category-mb .cat-child {
    border-top: 1px #ECEDEF solid;
    padding-top: 12px;
}

#category-mb .cat-child ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#category-mb .cat-child ul a {
    font-size: 16px;
    color: var(--main-color);
}