#h5-work-flow-container {
    display: flex;
    height: 60px;
    align-items: center;
    padding-left: 15px;
    font-size: .9em;
    overflow-x: auto;
}
.h5-workflow-step-item {
    margin-right: 15px;
    height: 40px;
    background: #ddd;
    line-height: 40px;
    padding-left: 10px;
    display: flex;
    position: relative;
    /*min-width: 40px;*/
    border-radius: 3px 0 0 3px;
    white-space: nowrap;
}
.h5-workflow-step-item::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    border-left: 10px solid #ddd;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 10px solid transparent;
    right: -20px;
}
.h5-workflow-step-item.complete {
    background-color: #00b7ee;
    color: white;
}
.h5-workflow-step-item.complete::after {
    border-left: 10px solid #00b7ee;
}