.blook-categories{
    ul{
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        font-weight: $font_weight_semi_bold;
        margin: 0 -10px;
    }
    li{
        padding: 0 10px;
    }
}
.blook-categories-with-seperator{
    ul{
        margin: 0;
        text-transform: uppercase;
        font-size: 14px;
        li{
            padding: 0;
            a{
                position: relative;
                font-weight: $font_weight_bold;
                font-size: 12px;
                &:after{
                    content: '/';
                    display: inline-block;
                    margin: 0 10px;
                }
            }
            &:last-child{
                a{
                    &:after{
                        content: '';
                        margin-right: 0;
                    }
                }
            }
        }
        
    }
}


.blook-categories-with-bg{
    ul{
        li{
            a{
                display: inline-block;
                height: 22px;
                line-height: 22px;
                padding: 0 10px;
                border-radius: 2px;
                font-size: 14px;
                &:hover{
                    opacity: 0.63;
                }
            }
          
        }
        
    }
}

