.progress-container {
    margin-bottom: 15px;
    z-index: 1;
}
.progress-ul {
    padding: 0;
    list-style-type: none;
    font-family: arial;
    font-size: 12px;
    clear: both;
    line-height: 1em;
    margin: 0 -1px;
    text-align: center;
}
.progress-ul li {
    float: left;
    padding: 10px 30px 10px 40px;
    background: #999;
    color: #fff;
    position: relative;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 32%;
    margin: 0 1px;
}
.progress-ul li:before {
    content: '';
    border-left: 16px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    
}
.progress-ul li:after {
    content: '';
    border-left: 16px solid #999;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 5;
}
.progress-ul li.progress-active {
    background: #333;
}
.progress-ul li.progress-active:after {
    border-left-color: #333;
}
@media (max-width: 767px) {
.progress-full {
    display: none;
}
}
@media (min-width: 768px) {
.progress-small {
    display: none;
}
}