#thermometer-area {
	display:flex;
	flex-wrap:wrap;
	margin-bottom: 1em;
}

#thermometer-area .content {
	flex-basis:100%;
	padding: 1em;
}

#thermometer-area .content p {
	margin: 1em;
}

#thermometer-wrapper {
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#thermometer {
	width: 25px;
	background: white;
	height: 240px;
	position: relative;
	border: 5px solid #2a2a2e;
	border-radius: 20px;
	z-index: 1;
	margin-bottom: 50px;
}

#thermometer:before, #thermometer:after {
	position: absolute;
	content: "";
	border-radius: 50%;
}

#thermometer:before {
	width: 100%;
	height: 34px;
	bottom: 5px;
	background: white;
	z-index: -1;
}

#thermometer:after {
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background-color: #019c01;
	bottom: -41px;
	border: 5px solid #2a2a2e;
	z-index: -3;
	left: 50%;
}

#thermometer #graduations {
	height: 59%;
	top: 20%;
	width: 50%;
}

#thermometer #graduations, #thermometer #graduations:before {
	position: absolute;
	border-top: 2px solid rgba(0, 0, 0, 0.5);
	border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

#thermometer #graduations:before {
	content: "";
	height: 34%;
	width: 100%;
	top: 32%;
}

#thermometer #collected {
	bottom: 0;
	background: linear-gradient(#018301, #019c01) no-repeat bottom;
	width: 100%;
	border-radius: 20px;
	background-size: 100% 240px;
	transition: all 0.2s ease-in-out;
}

#thermometer #collected, #thermometer #collected:before, #thermometer #collected:after {
	position: absolute;
}

#thermometer #collected:before {
	content: attr(data-value);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	z-index: 2;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 1em;
	line-height: 1;
	transform: translateY(50%);
	left: calc(100% + 1em / 1.5);
	top: calc(-1em + 5px - 5px * 2);
}

#thermometer #collected:after {
	content: "";
	border-top: 0.45455em solid transparent;
	border-bottom: 0.45455em solid transparent;
	border-right: 0.66667em solid rgba(0, 0, 0, 0.7);
	left: 100%;
	top: calc(-1em / 2.2 + 5px);
}

@media only screen and (min-width:769px) {
	#thermometer-area .content {
		flex-basis:75%;
		padding: 1em;
	}
}