.gprogressbar { 
	padding: 2px;
	min-height: 15px;
}

.gprogressbar .progress-wrapper {
	position: relative;
	height: calc(100% - 2px);
	text-align: center;
	font-size: 10px;
	background: white;
	border: 1px solid black;
	box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
}
.gprogressbar .progress-text, .gprogressbar .progress-text-above {
	font-size: 11px;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	color: #444;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}
.gprogressbar .progress-text-above {
	color: white;
	z-index: 3;
}

.gprogressbar .progress-done {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 50%;
	height: 100%;
	background: #a0a0a0;
	color: white;
	overflow: hidden;
	z-index: 2;
}
