.progress-title{
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
}

.progress{
    height: 20px;
    background: #f0f0f0;
    border-width: 8px 0;
    border-style: solid none;
    border-color: #000;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: none;
    overflow: visible;
    position: relative;
}

.progress .progress-bar{
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    position: relative;
    animation: animate-positive 1s;
}

.progress .progress-bar:before{
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #000;
    background: #f0f0f0;
    position: absolute;
    top: -14px;
    right: 0;
}

@-webkit-keyframes animate-positive{
    0%{ width: 0; }
}

@keyframes animate-positive{
    0%{ width: 0; }
}