.progres-bar{
    display:flex;
    flex-direction:column;
    margin-bottom: 10px;
}
.progress-bar > .label{
    font-size:40px;
    font-family:Arial, sans-serif;
}
.progress-bar > .line {
    width:185px;
    height:8px;
    background:#E8E8E8;
    border-radius:10px;
    position:relative;
}
.progress-bar > .line > span{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    border-radius:10px;
    border:none;

    background: #ef0404; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #ef0404, #be0400); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #ef0404, #be0400);
}