.docs-filter-container {}

.docs-filter-options {
    /* background-color: pink; */
    /* padding-bottom: 27px; */
    border-bottom: 1px solid #E0E0E0;
}

.filter-group {
    display: flex;
    gap: 100px;
    margin-bottom: 30px;
    color: #000;
    
}

.filter-group ul {
    flex: 1;
}

.filter-group h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    max-width: 100%;
    min-width: 128px;
    line-height: 1em;
}

.filter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-group li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.filter-group li::after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background-color: #545454;
    margin: 0 10px;
}

.filter-group li:last-child::after {
    display: none;
}



.filter-group li a {
    color: #545454;
    text-decoration: none;
    margin-right: 8px;
    line-height: 16px;
    line-height: 1em;
}

.filter-item {}

.filter-item:hover {
    color: #DD5224;
}

.filter-item.active {
    color: #DD5224;
}

.docs-filter-options-other {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
    line-height: 1em;
    font-size: 14px;
    color: #7F7F7F;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.docs-filter-options-other a {
    color: #7F7F7F;
    text-decoration: none;
}

.docs-filter-options-other a:hover,
.docs-filter-options-other a.active {
    color: #DD5224;
}



.docs-filter-options-other ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.docs-filter-options-other li{
    display: flex;
}

.docs-filter-options-other li::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: #7F7F7F;
    margin: 0 5px;
}

.docs-filter-options-other li:last-child::after {
    display: none;
}

@media screen and (max-width: 768px) {
    .filter-group {
        flex-direction: column;
        gap: 20px;
    }
}