.brand-categories-wrap{
    margin-bottom: 46px;
}
.brand-categories {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.brand-categories-title{
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
}
.brand-categories-title .title-link{
    color: var(--blue-link);
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
    font-size: 16px;
}
.brand-categories-title .title-link:hover{
    border-color: var(--blue-link);
}
.brand-categories .button{
    padding: 6px 10px;
    height: 31px;
    column-gap: 6px;
}
.brand-categories a.button:hover:active,
.brand-categories a.button:active{
    background-color: #F3F3F5;
    border-color: var(--button-outline-border-hover);
    color: var(--main-txt);
}
.hided{
    display: none !important;
}
.show-all-brand-sections{
    position: relative;
    padding-right: 22px !important;
}
.show-all-brand-sections:after{
    content: '';
    position: absolute;
    right: 5px;
    width: 15px;
    height: 26px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}
.show-brand-sections:after{
    -webkit-mask: url("img/arrow_bottom.svg") no-repeat center;
    mask: url("img/arrow_bottom.svg") no-repeat center;
}

.hide-brand-sections:after{
    -webkit-mask: url("img/arrow_bottom.svg") no-repeat center;
    mask: url("img/arrow_bottom.svg") no-repeat center;
    transform: rotate(180deg);
}

@media (max-width: 576px) {
    .brand-categories .button{
        height: 28px;
    }
    .brand-categories-wrap{
        margin-bottom: 0;
    }
}