#toast-container > div {
	opacity:1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	filter: alpha(opacity=100);
	margin-top: 0.5em;
}

@keyframes fillAnimation {
	from {
		stroke-dasharray: 0 100;
	}
	to {
		stroke-dasharray: var(--percentage) 100;
	}
}

/* Apply the animation */
.progress-circle {
	animation: fillAnimation 2s ease-out forwards;
}