input{
	text-align: right;
}
.barometer{
	margin-top: 35px;
}
.barometer>div{
	width: 100%;
	min-height: 70px;
	background: linear-gradient(90deg, #c00d0d, #00b0a9);
	border: 3px white solid;
	display: grid;
	grid-template-columns: 10% 3px auto;
	/*position: relative;*/
}
.barometer>div div:nth-child(2){
	background-color: white;
}
.barometer>div div:nth-child(3){
	background-color: rgba(255,255,255,0.4);
}
.prozent{
	height: 100%;
	color: white;
	font-size: 30px;
	line-height: 70px;
	/* vertical-align: middle; */
	padding-left: 20px;
}

@media screen and (max-width: 900px) {
	.prozent{
		font-size: 20px;
	}
}

@media screen and (max-width: 600px) {
	.barometer{
		margin-top: 25px;
	}
	.barometer>div{
		min-height: 50px;
	}
	.prozent{
		font-size: 15px;
		line-height: 50px;
	}
}
