.custom-list-group-h {
    .list-group {
        flex-direction: row;
        text-transform: uppercase;
        font-weight: 600;
        font-family: $headings-font-family;
        border: none;
        padding: mz-spacer(13) 0;
        border-top: $border-width solid $border-color;
        border-bottom: $border-width solid $border-color;
        
        &-item {
            flex: 1 1 auto;
            text-align: center;
            justify-content: center;
            border: none;
            padding: mz-spacer(7);
            
            &:not(:last-child) {
                @include rtl-prop(border-right, $border-width solid $border-color);
            }
        }
    }
}