html {
  scroll-behavior: smooth;
}

body {
	font-family: "Yanone Kaffeesatz", Sans-serif;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 100%;
	width: 100%;
	overflow: hidden
}

body.disableTransitions * {
	transition: none !important;
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
}

.blocker {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

#focusBlocker {
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	transition: opacity 0.2s;
}

#inputBlocker {
	z-index: 20;
	background-color: rgba(0, 0, 0, 0.0);
}

#loadBlocker {
	z-index: 30;
	background-color: rgba(0, 0, 0, 1.0);
}

.sectionContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 1.0);
}

.sideSeperator {
	height: 100%;
	width: 0.5%;
	background-color: rgba(127, 89, 51, 1.0);
}

.sideSection {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 49.75%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(0, 0, 0, 1.0);
}

#attackersSection {
	background-image: url("../Media/Backgrounds/Background_Attackers.png");
	background-color: rgba(130, 166, 216, 1.0);
}

#defendersSection {
	background-image: url("../Media/Backgrounds/Background_Defenders.png");
	background-color: rgba(216, 167, 119, 1.0);
}

.sideHeading {
	height: 5vw;
	margin: 1vw 0px 4vw;
}

.counter {
	background-color: rgba(255, 255, 255, 0.0);
	height: 6vw;
	width: auto;
	margin: 1vw 0px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.counterOutput {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 18vw;
	cursor: pointer;
}

.counterOutputImage {
	height: 100%;
	width: auto;
	margin-right: 1vw;
	margin-left: 0.25vw;
}

.counterOutputText {
	width: auto;
	height: 6vw;
	font-size: 6vw;
	text-align: center;
	color: rgba(255, 255, 255, 1.0);
	margin-left: 1vw;
	margin-right: 0.25vw;
}

.counterButton {
	height: 100%;
	width: auto;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.0);
	transition: background-color 0.2s;
}

.counterButton:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.counterButton:active {
	background-color: rgba(127, 127, 127, 0.5);
}

.evaluationButton {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	height: 8vw;
	border-radius: 4vw;
	background-color: rgba(255, 255, 255, 1.0);
	position: fixed;
	bottom: 2vw;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	cursor: pointer;
	transition: background-color 0.2s, opacity 0.4s;
}

.evaluationButton:hover {
	background-color: rgba(223, 223, 223, 1.0);
}

.evaluationButton:active {
	background-color: rgba(191, 191, 191, 1.0);
}

#evaluationButtonBasic {
	width: 8vw;
}

#evaluationButtonOutput {
	
}

#evaluationButtonText {
	font-size: 5vw;
	margin: 0px -1.5vw 0px 2vw;
	opacity: 1.0;
}

#evaluationButtonImage {
	height: 4vw;
	margin: 2vw;
}

.fullscreenButton {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	height: 6vw;
	width: 6vw;
	border-radius: 3vw;
	background-color: rgba(255, 255, 255, 1.0);
	opacity: 0.25;
	position: fixed;
	bottom: 2vw;
	right: 2vw;
	z-index: 1;
	cursor: pointer;
	transition: background-color 0.2s, opacity 0.4s;
}

.fullscreenButton:hover {
	opacity: 1.0;
}

.fullscreenButton:active {
	background-color: rgba(191, 191, 191, 1.0);
}

#fullscreenButtonImage {
	height: 3vw;
}

.numpadPositioner {
	width: 0px;
	height: 0px;
	position: relative;
	top: 1vh;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-end;
}

.numpad {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 18vw;
	height: 13.5vw;
	padding: 0.25vw;
	border-radius: 1vw;
	border-style: solid;
	border-width: 0.25vw;
	border-color: rgba(102, 54, 30, 1.0);
	background-color: rgba(153, 101, 76, 1.0);
	position: absolute;
	z-index: 21;
	transition: opacity 0.2s;
}

.numpadButton {
	width: 4vw;
	height: 4vw;
	margin: 0.25vw;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.numpadButton:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.numpadButton:active {
	background-color: rgba(127, 127, 127, 0.5);
}

#numpadButtonClose:hover {
	background-color: rgba(229, 114, 133, 0.75);
}

#numpadButtonClose:active {
	background-color: rgba(153, 76, 89, 0.75);
}

#numpadButtonReset:hover {
	background-color: rgba(229, 191, 114, 0.75);
}

#numpadButtonReset:active {
	background-color: rgba(153, 127, 76, 0.75);
}

.pageInfoLinkContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	align-items: flex-end;
	width: 100%;
	height: 0px;
	position: fixed;
	bottom: 0.5vw;
	left: 50%;
	transform: translateX(-50%);
	z-index: 22;
}

.pageInfoLink {
	width: 49.75vw;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-end;
	cursor: pointer;
}

.pageInfoLinkText {
	width: auto;
	font-size: 1.5vw;
	color: rgba(0, 0, 0, 1.0);
	transition: color 0.2s;
}

.pageInfoLinkText:hover {
	color: rgba(255, 255, 255, 1.0);
}

.pageInfoLinkSeperator {
	text-align: center;
	font-size: 1.5vw;
	width: 0.5vw;
	color: rgba(0, 0, 0, 1.0);
	visibility: hidden;
}


/* Vertical displays. */
@media (max-aspect-ratio: 1/1) {
	.sectionContainer {
		flex-direction: column;
	}

	.sideSeperator {
		height: 0.5%;
		width: 100%;
	}

	.sideSection {
		height: 49.75%;
		width: 100%;
	}
	
	.counter {
		height: 6vh;
		margin: 1vh 0px;
	}
	
	.counterOutput {
		width: 18vh;
	}

	.counterOutputImage {
		margin-right: 1vh;
		margin-left: 0.25vh;
	}

	.counterOutputText {
		height: 6vh;
		font-size: 6vh;
		margin-left: 1vh;
		margin-right: 0.25vh;
	}
	
	.counterText {
		width: 10vh;
		height: 6vh;
		font-size: 6vh;
	}

	.sideHeading {
		height: 5vh;
		margin: 1vh 0px 4vh;
	}

	.evaluationButton {
		/*width: 8vh;*/
		height: 8vh;
		border-radius: 4vh;
		bottom: 50%;
		left: 50%;
		transform: translate(-50%, 50%);
	}

	#evaluationButtonBasic {
		width: 8vh;
	}

	#evaluationButtonOutput {
		
	}

	#evaluationButtonText {
		font-size: 5vh;
		margin: 0px -1.5vh 0px 2vh;
	}

	#evaluationButtonImage {
		height: 4vh;
		margin: 2vh;
	}

	.fullscreenButton {
		height: 6vh;
		width: 6vh;
		border-radius: 3vh;
		bottom: 2vh;
		right: 2vh;
	}

	#fullscreenButtonImage {
		height: 3vh;
	}

	.numpad {
		width: 18vh;
		height: 13.5vh;
		padding: 0.25vh;
		border-radius: 1vh;
		border-width: 0.25vh;
	}

	.numpadButton {
		width: 4vh;
		height: 4vh;
		margin: 0.25vh
	}

	.pageInfoLinkContainer {
		justify-content: center;
		bottom: 0.5vh;
	}

	.pageInfoLink {
		width: auto;
	}

	.pageInfoLinkText {
		font-size: 2vh;
	}

	.pageInfoLinkSeperator {
		font-size: 2vh;
		width: auto;
		visibility: visible;
		margin: 0px 1vh;
	}
}