.x-progressindicator {
	width: 75%;
	height: 0.25em;
}

.x-progressindicator .x-progressindicator-inner {
	background: rgba(220, 220, 220, 0.75);
	padding: 10px;
	-webkit-backdrop-filter: blur(10px);
	height: 100%;
	box-shadow: 0px 5px 17px rgba(40, 40, 40, 0.5);
	box-sizing: content-box;
	position: relative;
}

.x-progressindicator .x-progressindicator-text {
	// @include st-box;
	// @include st-box-align(center);
	// @include st-box-pack(center);
	width: 100%;
	height: 100%;
	position: absolute;
	top: -1.5em;
	left: 0px;
	color: white;
	text-shadow: 1px 1px 2px black;
}

.x-progressindicator .x-progressindicator-bar {
	height: 100%;
	width: 0%;
}

.x-progressindicator:not(.x-item-hidden) .x-progressindicator-bar .x-progressindicator-bar-fill {
	height: 100%;
	width: 100%;
	$animation-support: webkit, moz, o, ms, not khtml;
	@include experimental('animation-name', progressIndicator, $animation-support);
	@include experimental('animation-duration', 2s, $animation-support);
	@include experimental('animation-timing-function', linear, $animation-support);
	@include experimental('animation-iteration-count', infinite, $animation-support);

	background-repeat: repeat-x;
	background-size: 50% 100%;

	background-image: linear-gradient(to right ,#41b5a8, #75cdc4, #41b5a8);
}

@-webkit-keyframes progressIndicator
{
	to {
		background-position: 200%;
	}
}
@keyframes progressIndicator
{
	to {
		background-position: 200%;
	}
}