#control{
	--color: #eee;
	/* background-color: var(--color); */
	/* border: 5px solid var(--color); */
	/* padding: 5px; */
	/* border-radius: 5px; */
	/* border-top-right-radius: 0; */
	/* border-bottom-right-radius: 0; */
	cursor: pointer;
	position: fixed;
	width: 32px;
	height: 32px;
	top: 120px;
	left: 10px;
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
	/* font-family: "Font Awesome 5 Free"; */
	z-index: 1000;
}
#control::before{
	content: "\f028";
	font-family: "Font Awesome 5 Free";
	display: block;
	background-color: var(--color);
	color: black;
	font-weight: bold;
	/* margin-left: 24px; */
	margin-top: -10px;
	padding: 6px;
	width: max-content;
	/* height: 22px; */
	border-radius: 5px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border: 5px #eee solid;
	border-radius: 10px;
}