%title{
    content: '';
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
}
.widget-title,
.blook-title-style-1{
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    &:after{
        content: '';
        display: inline-block;
        width: 50px;
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 50%;
        @include transform(translateX(-50%));
    }
}
.blook-dashed{
    position: relative;
    text-align: center;
    &:after{
        content: '';
        display: inline-block;
        width: 50px;
        height: 2px;
        position: absolute;
        top: 0;
        left: 0%;
    }
    &.blook-dashed-center{
        &:after{
            left: 50%;
            @include transform(translateX(-50%));
        }
    }
}
.blook-section-title-style-1{
    text-transform: uppercase;
    font-size: 20px;
    position: relative;
    &:after{
        @extend %title;
        background-color: $color_light_gray;
    }
    >span{
        display: inline-block;
        position: relative;
        padding-bottom: 5px;
        &:after{
            @extend %title;
            z-index: 1;
        }
    }
}
