$dividerClass: pl-divider;

.#{$dividerClass} {
    margin: 1rem 0;
    border: none;
    display: flex;
    height: 1rem;
    pointer-events: none;

    &:before {
        content: attr(title);
        margin-right: .5rem;
        white-space: nowrap;
    }
    &:after {
        content: '';
        background: theme-color("gray-light");
        height: 1px;
        width: 100%;
        margin-top: .5em;
    }
}