*{
	box-sizing: border-box;
}

#wheel{
	width: 350px;
	height: 350px;
	border: 2px dotted black;
	border-radius: 50%;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#x{
	width: 370px;
	height: 0px;
	border-top: 1px solid black;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#y{
	width: 0px;
	height: 370px;
	border-left: 1px solid black;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#handle{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: dodgerblue;
	position: fixed;
	left: calc(50% + 175px);
	top: 50%;
	transform: translate(-50%,-50%);
	color: white;
	font-size: 0.8rem;
	text-align: center;
	padding-top: 2px;
}
#start{
	position: fixed;
	top: calc(50% + 200px);
	left: 50%;
	transform: translate(-50%,-50%);

	background-color: rgb(4, 170, 109);
	border-bottom-color: rgb(255, 255, 255);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-style: none;
	border-bottom-width: 0px;
	border-image-outset: 0;
	border-image-repeat: stretch;
	border-image-slice: 100%;
	border-image-source: none;
	border-image-width: 1;
	border-left-color: rgb(255, 255, 255);
	border-left-style: none;
	border-left-width: 0px;
	border-right-color: rgb(255, 255, 255);
	border-right-style: none;
	border-right-width: 0px;
	border-top-color: rgb(255, 255, 255);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-top-style: none;
	border-top-width: 0px;
	box-sizing: border-box;
	color: rgb(255, 255, 255);
	cursor: pointer;
	display: inline-block;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 17px;
	line-height: 25.5px;
	margin-bottom: 16px;
	overflow-x: hidden;
	overflow-y: hidden;
	padding-bottom: 6px;
	padding-left: 18px;
	padding-right: 18px;
	padding-top: 6px;
	text-align: center;
	text-decoration-color: rgb(255, 255, 255);
	text-decoration-line: none;
	text-decoration-style: solid;
	text-decoration-thickness: auto;
	user-select: none;
	vertical-align: middle;
	white-space: nowrap;
	font-weight: bold;
}
#angle{
	text-align: center;
	font-size: 3rem;
}

#result{
	text-align: center;
	direction: rtl;
	font-weight: bold;
	background-color: #eb4034;
	color: white;
	border-radius: 10px
}