.progressBar > div:first-child {
	width: 350px;
	height: 25px;
	margin: auto;
	padding: 5px;
	border-radius: 5px;
	background-color: #1a1a1a;
	box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
	text-align: left;
	border: 1px solid black;
	box-sizing: content-box;
	font-size: 1em;
}

.progressBar > div:first-child > span {
	overflow: hidden;
	display: block;
}

.progressBar > div:first-child > span > span {
	display: inline-block;
	width: 100%;
	height: 25px;
	background-color: #777;
	border-radius: 3px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
	transition: width 50ms ease-in-out;
	background-color: #64de1d;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#64de1d),
			to(#4ca916));
	background-image: -webkit-linear-gradient(top, #64de1d, #4ca916);
	background-image: -moz-linear-gradient(top, #64de1d, #4ca916);
	background-image: -ms-linear-gradient(top, #64de1d, #4ca916);
	background-image: -o-linear-gradient(top, #64de1d, #4ca916);
	background-image: linear-gradient(top, #64de1d, #4ca916);
	/* 	background-image: linear-gradient(top, #a5df41, #4ca916); */
	text-align: center;
	vertical-align: middle;
}

.progressBar.progressBar.progressBar a {
	box-sizing: border-box;
	width: 25px;
	height: 25px;
	margin-left: 5px;
	float: right;
	border-radius: 3px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
	background-color: #737373;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#737373),
			to(#575757));
	background-image: -webkit-linear-gradient(top, #737373, #575757);
	background-image: -moz-linear-gradient(top, #737373, #575757);
	background-image: -ms-linear-gradient(top, #737373, #575757);
	background-image: -o-linear-gradient(top, #737373, #575757);
	background-image: linear-gradient(top, #737373, #575757);
	display: inline-block;
	cursor: default;
	padding: 4px;
}

.progressBar.progressBar.progressBar a:hover {
	color: rgba(0, 0, 0, 0.5);
}

.progressBar.progressBar.progressBar a.active {
	background-color: #de1d1d;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#de1d1d),
			to(#a91616));
	background-image: -webkit-linear-gradient(top, #de1d1d, #a91616);
	background-image: -moz-linear-gradient(top, #de1d1d, #a91616);
	background-image: -ms-linear-gradient(top, #de1d1d, #a91616);
	background-image: -o-linear-gradient(top, #de1d1d, #a91616);
	background-image: linear-gradient(top, #de1d1d, #a91616);
	cursor: pointer;
}

.progressBar.progressBar.progressBar a.active:hover {
	color: rgba(0, 0, 0, 1);
}

.progressBar a > img {
	width: 17px !important;
	height: 17px !important;
	opacity: 0.5;
}

.progressBar > .progressMessage {
	margin-top: 5px;
	display: absolute;
}

.progressBar > .tooltip {
	display: none;
}

.indeterminateLoader {
	height: 25px;
	position: relative;
	overflow: hidden;
	background-color: #000;
}

.indeterminateLoader:before {
	display: block;
	position: absolute;
	content: "";
	left: -100px;
	width: 200px;
	height: 25px;
	animation: loading 2s linear infinite;
	-webkit-animation: loading 2s linear infinite;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#64de1d),
			to(#4ca916));
	background-image: -webkit-linear-gradient(top, #64de1d, #4ca916);
	background-image: -moz-linear-gradient(top, #64de1d, #4ca916);
	background-image: -ms-linear-gradient(top, #64de1d, #4ca916);
	background-image: -o-linear-gradient(top, #64de1d, #4ca916);
	background-image: linear-gradient(top, #64de1d, #4ca916);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
	transition: width 50ms ease-in-out;
}

@keyframes loading {
	0% {
		left: -30%;
		width: 30%;
	}

	50% {
		width: 30%;
	}

	70% {
		width: 70%;
	}

	80% {
		left: 50%;
	}

	95% {
		left: 120%;
	}

	100% {
		left: 100%;
	}
}

@-webkit-keyframes loading {
	0% {
		left: -30%;
		width: 30%;
	}

	50% {
		width: 30%;
	}

	70% {
		width: 70%;
	}

	80% {
		left: 50%;
	}

	95% {
		left: 120%;
	}

	100% {
		left: 100%;
	}
}