.progress-title{
    font-size: 18px;
    font-weight: 700;
    color: #1c2647;
    margin: 0 0 10px;
}
.progress{
    height: 25px;
    background: #fff;
    border-top: 5px solid #1c2647;
    border-bottom: 5px solid #1c2647;
    border-radius: 0;
    margin-bottom: 20px;
    overflow: visible;
    position: relative;
}
.progress:before,
.progress:after{
    content: "";
    width: 5px;
    background: #1c2647;
    position: absolute;
    top: 0;
    left: -5px;
    bottom: 0;
}
.progress:after{
    left: auto;
    right: -5px;
}
.progress .progress-bar{
    border: none;
    box-shadow: none;
    -webkit-animation: 3s linear 0s normal none infinite running progress-bar-stripes,animate-positive 1s;
    animation: 3s linear 0s normal none infinite running progress-bar-stripes,animate-positive 1s;
}
.progress-bar-green{
	background-color: #44bb2c;
}

.progress-bar-orange{
	background-color: #ffb41f;
}

.progress-bar-yellow{
	background-color: #dec400;
}

@-webkit-keyframes animate-positive{
    0%{ width: 0; }
}
@keyframes animate-positive{
    0%{ width: 0; }
}