.progression ul {
	margin: 0;
	padding: 0;
}

.progression ul li {
	list-style-type: none;
}

.progression ul li a {
	color: #1bc1a2;
}

.progression ul li.finished a {
	color: gray;
}

.progression svg {
	vertical-align: text-bottom;
}

.progression .status {
    margin-top: 8px;
    width: 100%;
	height: 18px;
    background-color: #818181;
    border-radius: 8px;
}

.progression .status .progress {
	all: unset;
	display: block;
	width: 0;
	height: 18px;
	background-color: green;
	border-radius: 8px 0 0 8px;
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
    -webkit-animation: 1s linear infinite progress-bar-stripes;
    animation: 1s linear infinite progress-bar-stripes;
}