#donation {
	width: 270px;
	border: 0;
	padding: 0px;
	margin: -2px 20px;
	float: right;
	vertical-align: middle;
	background-color: #f8f8f8;
	height: 22px;
	border-radius: 5px;
}

#donation .donation_bar {
	display: flex;
	height: 100%;
}

#donation .donation_button {
	width: 150px;
	background-color: #ffc439;
	color: #fff;
	text-align: center;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}

#donation form {
	height: 16px;
	padding: 3px 2px;
}

#donation .donation_progress {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	width: 100%;
	padding: 5px;
	text-align: right;
}

#donation .donation_percentage {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #4caf50;
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
	max-width: 100%;
}

#donation .donation_progress:hover .donation_percentage {
	background-color: #0066a2;
}

#donation .donation_text {
	color: #090909;
	position: relative;
	display: inline-block;
	margin: -4px 5px;
	font-weight: bold;
}

