.healthbar-container {
	display: block;
	position: absolute;
	left: 20px;
	top: 20px;
	width: 300px;
	font-family: Arial, sans-serif;
}

.healthbar {
	display: block;
	position: relative;
	height: 30px;
	background: #ddd;
	border-radius: 10px;
	overflow: hidden;
}

.healthbar-bar {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: red;
	width: 100%;
}

.healthbar-trailing {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(255, 0, 0, 0.5);
}
