#game {
  display: flex;
  flex-direction: row;
}

#game table {
	display: inline-block;
	height: 100%;
	margin-left: 5px;
	margin-right: 5px;
}

#boardContainer {
	font-size: max(min(3vw, 2vh), 7pt);
	background-color: #ddd;
}
#boardContainer tr {
	font-size: 14pt;
	font-size: min(2vw, 2.4vh);
	user-select: none;
}
#boardContainer tr td:not(.val) {
	border: 1px solid black;
	padding-left: 3px;
	padding-right: 3px;
	width: 20%;
}
#boardContainer .gridSpot > div {
	margin-top: 5%;
	margin-bottom: 5%;
	background-color: #eee;
	border-radius: 2vh;
	border: 1px solid #666;
	width: 100%;
	padding-left: 3px;
	padding-right: 3px;
}
#boardContainer .val {
	width: 25%;
	padding-right: 5px;
	padding-left: 5px;
	display: inline-block;
	align-items: center;
	justify-content: center;
}
#boardContainer .gridSpot .selected {
	background-color: #bfb;
}
#boardContainer .val {
	text-align: center;
	cursor: pointer;
}
#boardContainer .val.hover {
	transform: scale(1.5);
	text-shadow: #995 0 0 0.25vh;
}
#boardContainer .val.hover::after {
	position: absolute;
	top: 45%;
	left: 50%;
	width: 2.5vh;
	height: 2.5vh;
	transform: translate(-50%, -50%);
	border: 1px dashed #0008;
	border-radius: 50%;
	content: "";
}
#boardContainer .val.highlight {
	transform: scale(1.1, 1.1);
	border: 2px solid #885;
	font-weight: bold;
}
#boardContainer.won .circle.selected {
	background-color: #cfc;
}
#boardContainer svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#score {
	display: flex;
	flex-direction: column;
	font-size: 16pt;
	margin-top: 20px;
	max-width: fit-content;
}

#score {
	display: flex;
	flex-direction: column;
	font-size: 16pt;
	margin-top: 20px;
	max-width: fit-content;
}

#numBasis {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 3px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	border: 1px solid #666;
	font-size: 30pt;
	text-align: center;
	background-color: #fbb;
}
#numBasis.odd {
	background-color: #bfb;
}
#numBasis.even {
	background-color: #fbb;
}

#game #scoreboard {
	font-size: min(2vw, 2.4vh);
	box-shadow: #0002 2px 2px 5px;
	color: black;
	height: 100%;
	margin-left: 30px;
}
#scoreboard .ray {
	padding: 2px;
}
#scoreboard .ray div {
	display: inline-block;
	width: 55%;
	padding-left: 1px;
	padding-right: 1px;
	margin-top: .31vh;
	margin-bottom: .31vh;
}
#scoreboard .ray div:nth-child(2) {
	font-size: min(1.5vw, 1.8vh);
	width: 45%;
}
@media (max-width: 650px) {
	#scoreboard {
		flex-direction: row;
		height: 150px;
	}
	#scoreboard .entry {
		height: 33.33%;
		width: 12.5%;
	}
}

.window h3 {
	text-align: center;
	margin: 10px;
}

#win_about {
	width: 400px;
	height: 300px;
}

#win_rules {
	width: 400px;
	height: 300px;
}

/*# sourceMappingURL=qudoku3.css.map */
