@media (orientation: landscape) {
	.table {
		width: 100vh;
		height: 100vh;
	}
	#bottle {
		width: 70vh;
	}
	.tools {
		display: block;
		margin: 45px;
		position: absolute;
		top: 45px;
		right: 45px;
		
	}
}
@media (orientation: portrait) {
	.table {
		width: 100vw;
		height: 100vw;
	}
	#bottle {
		width: 70vw;
	}
	
}
label {
	font-size: 30px;
}
.tools {
	background-color: #ececec;
	padding: 10px;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.table {
	border-radius: 50%;
	background-color: brown;
	position: relative;
	overflow: hidden;
}
#bottle {
	position: absolute;
	display: inline-block;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: 8s cubic-bezier(0,0,0.2,1);
	z-index: 9999;
}
.pie {
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 50%;
	clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
	z-index: 8888;
}
.pie-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 50%;
	clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
input {
	width: 50%;
	font-size: 30px;
	padding: 5px;
}
.coloritem {
	vertical-align: middle;
	   width: 1vw;
		height: 1vw;
		margin: 0 10px;
}
#legende {
	font-size: 30px;
	list-style-image: none;
	list-style-type: none;
	padding: 0;
}
.delete {
	background: red;
	border: 0;
	margin: 0 0 0 10px;
	font-weight: 700;
	color: white;
	font-size: 20px;
	padding: 5px 9px 1px;
	cursor: pointer;
}
#winnerAlert {
	width:100vw;
	height:100vh;
	z-index:10000;
	background-color:white;
	position: fixed;
	top:0;
	left:0;
	transform: translateY(-100vh);
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s;
	opacity:0;
	
}
#winnerAlert > div {
	position:relative;
	width: 767px;
	height: 651px;
	transform: translateY(-100vh);
	transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#winnerAlert .fetteroschi {
	position: absolute;
	font-size: 40px;
	top: 60px;
	left: 75px;
}
#winnerAlert .winner {
	position: absolute;
	font-size: 40px;
	top: 217px;
	left: 317px;
	height: 148px;
	width: 300px;
	text-align: center;
}
#winnerAlert .fetteroschi {
	position: absolute;
	font-size: 40px;
	top: 60px;
	left: 75px;
}
#winnerAlert.show {
	display:flex;
	transform: translateY(0);
	opacity: 1;
}
#winnerAlert.show > div {
	transform:translateY(0);
}