#boardContainer {
	position: relative;
	display: flex;
	max-width: 95%;
	align-self: center;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 20px;
	min-width: 200px;
	scroll-snap-align: end;
	scroll-snap-stop: normal;
	margin-left: 20px;
	margin-right: 40px;
}
#boardContainer .moveCounter {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top: 2.5%;
	right: 2.5%;
	padding: 3px;
	padding-left: 5px;
	padding-right: 5px;
	border: 1px solid #666;
	background-color: #fcc;
	font-size: 20pt;
	font-size: min(6vw, 24pt);
	text-align: center;
}
#boardContainer .moveCounter::before {
  position: absolute;
  width: 200%;
  left: 50%;
  bottom: 100%;
  font-size: 12pt;
  font-size: min(4vw, 14pt);
  text-align: center;
  transform: translate(-50%);
  content: "moves";
}
#boardContainer .moveCounter.even {
  background-color: #fcc;
}
#boardContainer .moveCounter.odd {
  background-color: #cfc;
}
#upperRight #scoreboard {
	width: 100%;
	font-size: 16pt;
	font-size: max(min(4vw, 2.5vh), 8pt);
}
#upperRight #scoreboard .ray {
	padding: 5px;
}
#upperRight #scoreboard .ray div {
	padding: 1.85px;
}
#boardContainer .board {
	height: 65vh;
	width: 65vh;
  padding-bottom: 95%;
  max-width: 95%;
  min-width: 200px;
  min-height: 200px;
}
#boardContainer .board .circle {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 12%;
  height: 12%;
  transform: translate(-50%, -50%);
  padding: 1%;
  font-size: 14pt;
  font-size: min(3vw, 2vh);
  border: 1px solid #666;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: #0002 2px 2px 5px;
  cursor: pointer;
  z-index: 5;
  user-select: none;
  transition: transform ease-out 0.1s, font-weight ease 0.1s;
}
@media (max-width: 650px) {
  #boardContainer .board .circle {
    font-weight: bold;
  }
}
@media (max-height: 650px) {
  #boardContainer .board .circle {
    font-weight: bold;
  }
}
#boardContainer .board .circle::before {
  content: "";
  position: absolute;
  left: -15%;
  top: -15%;
  right: -15%;
  bottom: -15%;
  border-radius: 50%;
}
#boardContainer .board .circle.selected {
  background-color: #fcc;
}
#boardContainer .board .circle.highlight {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
  border: 2px solid #885;
  font-weight: bold;
}
#boardContainer .board .circle .value {
  width: 50%;
  text-align: center;
}
#boardContainer.won .board .circle.selected {
  background-color: #cfc;
}
#boardContainer svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#boardContainer svg .inner {
  stroke-width: 2;
}

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

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

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

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