
.progress-outer{
	flex-grow: 1;
	background-color: #ffd64f;
	display: inline-block;
	margin-left:4px;
	margin-right: 4px;
}

.progress-inner{
	height: 5px;
	background-color: #E46759;
	width: 0%;
	animation-name: fill;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}


@keyframes fill{
	from{ width: 0%; }
	to	{ width: 100%; }
}
