@keyframes fade-out {
	from {opacity: 100%;}
	to {opacity: 0;}
}
@keyframes fade-in {
	from {opacity: 0;}
	to {opacity: 100%;}
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
@keyframes game-city-objective-complete-bounce-animation {
	0% {transform: scale(1);}
	25% {transform: scale(1.05);}
	50% {transform: scale(1);}
	75% {transform: scale(0.95);}
	100% {transform: scale(1);}
}
@keyframes game-bounce-animation {
	0% {transform: none;}
	44% {transform: none;}
	47% {transform: translateY(-0.5em);}
	50% {transform: none;}
	88% {transform: none;}
	91% {transform: translateY(-0.5em);}
	94% {transform: none;}
	97% {transform: translateY(-0.5em);}
	100% {transform: none;}
}

html {
	width: 100%;
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-family: "Amaranth", "Trebuchet MS", sans-serif;
}
#screen {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}
#screen > .loading-wheel {
	width: 10%;
	padding-top: 10%;
	left: 45%;
	top: 45%;
	border-radius: 50%;
	border-color: black;
	border-top-color: rgb(52,152,219);
}
#header {
	width: 100%;
	flex: 0 0 3.5em;
	display: grid;
	grid-template-columns: auto min-content;
}
#header-left-primary {
	display: flex;
	flex-direction: column;
	grid-area: 1 / 1;
}
#header-left-primary-inner {
	display: flex;
	flex: 0 0 3.5em;
	border: 0.0625em solid black;
	border-right: 0;
	background-color: rgb(249,249,249);
	padding: 0.25em;
	box-sizing: border-box;
}
#site-logo {
	height: 3em;
	width: 3em;
	margin-right: 0.25em;
	font: inherit;
	background-color: inherit;
	border: none;
	cursor: pointer;
	background-image: url("../images/LogoThumbnail.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#search-bar {
	display: flex;
	position: relative;
}
#search-button-inset {
	display: none;
}
#search-button-inset.portrait-dropdown {
	height: 100%;
	width: 1.667em;
	z-index: 3;
	top: 0;
	right: 0.25em;
	position: absolute;
	padding: 0.75em 0.25em;
	box-sizing: border-box;
	margin: 0;
	display: inline;
	cursor: pointer;
	background-image: url("../images/search.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	font: inherit;
	background-color: inherit;
	border: none;
}
#search-label {
	display: none;
}
#search-label.visible {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	z-index: 3;
}
#search-input-form {
	width: 12em;
	margin: 0.5em;
	display: none;
	z-index: 3;
}
#search-input-form.portrait-dropdown {
	position: absolute;
	display: inline;
	top: 0;
	left: 3.25em;
	margin: 0 1.8em 0 0;
	height: 100%;
	box-sizing: border-box;
	padding: 0.5em 0;
}
#search-input-box {
	border: 0.0625em solid grey;
	padding-right: 2.6em;
	z-index: 3;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}
#search-button-full {
	z-index: 3;
	height: 3em;
	width: 3em;
	background-image: url("../images/search.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	background-color: inherit;
	font: inherit;
}
#search-button-full.portrait-dropdown {
	display: none;
}
#search-dropdown {
	position: absolute;
	top: 0;
	left: -0.25em;
	right: -16em;
	bottom: -75vh;
	background-color: white;
	box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.2);
	z-index: 2;
}
.hidden {
	display: none;
}
.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.lightgrey {
	background-color: lightgrey;
}
.grey {
	background-color: grey;
}
.close-button {
	position: absolute;
	top: 0.25em;
	right: 0.25em;
	width: 2em;
	height: 2em;
	cursor: pointer;
	border: none;
	font: inherit;
	background-color: inherit;
	background-image: url("../images/redCancel.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#search-topics {
	position: absolute;
	overflow: auto;
	top: 3em;
	bottom: 0.25em;
	left: 0.25em;
	right: 0.25em;
	padding: 0.25em;
}
.search-topic-level {
	display: grid;
	grid-template-rows: min-content auto;
	grid-template-columns: 1.5em auto;
}
.search-expand {
	grid-area: 1 / 1 / 2 / 2;
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: auto;
	height: 1.5em;
	margin: auto 0;
	pointer-events: none;
}
.search-expand-horizontal {
	display: inline-block;
	position: relative;
	top: 37.5%;
	left: 15%;
	height: 25%;
	width: 70%;
	background-color: lightblue;
	border: 0.0625em solid blue;
	grid-area: 1 / 1 / 2 / 2;
	/*z-index: 5;*/
}
.search-expand-vertical {
	display: inline-block;
	position: relative;
	top: 15%;
	left: 37.5%;
	height: 70%;
	width: 25%;
	background-color: lightblue;
	border: 0.0625em solid blue;
	grid-area: 1 / 1 / 2 / 2;
	/*z-index: 4;*/
	transition: top 0.5s, height 0.5s;
}
.search-expand-central {
	display: inline-block;
	position: relative;
	top: 15%;
	left: 37.5%;
	height: 70%;
	width: 25%;
	background-color: lightblue;
	grid-area: 1 / 1 / 2 / 2;
	/*z-index: 6;*/
	margin: 0.0625em;
	transition: top 0.5s, height 0.5s;
}
.search-expanded {
	top: 50%;
	height: 0;
}
.search-topic-title {
	grid-area: 1 / 2 / 2 / 3;
	padding-left: 0.375em;
	margin: auto 0;
	pointer-events: none;
}
.search-topic-subtopics {
	grid-area: 2 / 2 / 3 / 3;
	display: flex;
	flex-direction: column;
}
.search-topic-subtopics.hidden {
	display: none;
}
.search-subtopic {
	margin-left: 1em;
	line-height: 1.5em;
	cursor: pointer;
	border: none;
	padding: 0 0 0 0.5em;
	background-color: inherit;
	text-align: inherit;
	font-family: inherit;
	font-size: inherit;
	display: flex;
}
.search-subtopic > div {
	pointer-events: none;
}
.search-subtopic > div:first-child {
	flex: 1 1 1em;
}
.search-subtopic-implemented {
	background: url('/resources/images/tick.svg') center/cover no-repeat;
	width: 1em;
	height: 1em;
	margin: auto 0.25em;
}
.search-subtopic.grey {
	background-color: grey;
}
.search-highlight {
	grid-area: 1 / 1 / 2 / 3;
	border: none;
	font: inherit;
	background-color: inherit;
	cursor: pointer;
}
.search-highlight.lightgrey {
	background-color: lightgrey;
}
.search-highlight.grey {
	background-color: grey;
}
.header-left-button {
	margin-left: 0.25em;
	font: inherit;
	border: 0.2em solid rgb(26,76,109);
	border-radius: 1.1em;
	background-color: rgb(249,249,249);
	font-weight: bold;
	cursor: pointer;
	min-width: 12em;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	color: rgb(52,152,219);
	position: relative;
}
.header-left-button:hover {
	background-color: rgb(52,152,219);
	color: rgb(249,249,249);
}
.header-left-button:disabled {
	background-color: rgb(52,152,219);
	color: rgb(249,249,249);
	cursor: default;
}
.header-left-button > span {
	width: 100%;
	margin-right: 2.5em;
	pointer-events: none;
}
#tasks-count {
	margin-left: 0.25em;
}
#progress-count {
	margin-left: 0.25em;
}
#progress-button-hyphen {
	display: none;
}
.button-arrow {
	background-image: url("../images/goArrow.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 2em;
	height: 2em;
	position: absolute;
	right: 0.5em;
	pointer-events: none;
}
#header-left-secondary {
	background-color: rgb(249,249,249);
	grid-area: 2 / 1 / 3 / 3;
	border: 0 solid black;
}
#header-left-secondary.header-left-secondary-student {
	border-width: 0.0625em;
	border-top-width: 0;
}
#game-header {
	display: flex;
	padding: 0.25em 0 0.25em 0.5em;
}
#game-header-level {
	display: flex;
	flex-direction: column;
}
#game-header-level-colon-2 {
	display: none;
}
#game-header-resources {
	display: flex;
	width: 100%;
}
.game-header-resource {
	min-width: 7em;
	display: grid;
	align-items: center;
	margin-right: 1em;
	grid-template-columns: min-content auto min-content;
}
.game-header-resource-image {
	width: 2.0em;
	height: 1.6em;
	z-index: 1;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#game-header-resource-knowledge {
	background-image: url("../images/kno.svg");
}
#game-header-resource-cash {
	background-image: url("../images/cash.svg");
}
#game-header-resource-mowllcoin {
	background-image: url("../images/mowllCoin.svg");
}
.game-header-bar {
	background-color: rgb(230,230,230);
	margin: 0.05em -0.8em;
	height: 1.2em;
	padding-left: 1em;
}
.game-header-resource-plus {
	border: none;
	background-color: inherit;
	font: inherit;
	padding: 0;
	width: 1.2em;
	height: 1.2em;
	background-image: url("../images/standalonePlus.svg");
	cursor: pointer;
	transition: width 0.2s, height 0.2s, margin 0.2s;
}
.game-header-resource-plus:disabled {
	filter: brightness(60%);
	cursor: default;
}
.game-header-resource-plus:hover {
	width: 1.6em;
	height: 1.6em;
	margin: -0.2em;
}
.game-header-resource-plus:disabled:hover {
	width: 1.2em;
	height: 1.2em;
	margin: 0em;
}
#header-right {
	float: right;
	display: flex;
	justify-content: flex-end;
	grid-area: 1 / 2;
	background-color: rgb(249,249,249);
	border: 0.0625em solid black;
	border-left: 0;
	padding: 0.25em 0;
	box-sizing: border-box;
}
.header-right-button {
	margin-right: 0.25em;
	font: inherit;
	border: 0.2em solid black;
	border-radius: 1.1em;
	font-weight: bold;
	cursor: pointer;
}
#student-login-button {
	min-width: 8em;
	color: rgb(249,249,249);
	background-color: rgb(146,208,80);
	border-color: rgb(73,104,40);
}
#student-login-button:hover {
	background-color: rgb(117,167,64);
}
#teacher-login-button {
	min-width: 8em;
	color: rgb(249,249,249);
	background-color: rgb(52,152,219);
	border-color: rgb(26,76,109);
}
#teacher-login-button:hover {
	background-color: rgb(42,122,175);
}
.button {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.button-label {
	width: 100%;
	font-weight: bold;
}
#account-button {
	position: relative;
	border: none;
	border-radius: 0;
	width: 4.5em;
	height: 3em;
	padding: 0;
	background-color: rgb(52,152,219);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
}
#account-button:hover {
	background-color: rgb(42,122,175);
}
#account-button-image {
	width: 100%;
	height: 1.8em;
	background-image: url("../images/account.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
#account-button-label {
	width: 100%;
	display: inline-block;
	color: rgb(249,249,249);
	cursor: pointer;
}
.button-count {
	position: relative;
	float: right;
	width: 1.1em;
	height: 1.1em;
	background-color: red;
	border-radius: 1em;
	text-align: center;
	display: none;
	bottom: 1.2em;
}
#account-menu {
	position: absolute;
	background-color: transparent;
	right: 0;
	top: 100%;
	min-width: 6em;
}
.account-menu-item {
	position: relative;
	background-color: rgb(249,249,249);
	box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.2);
	z-index: 3;
	margin-top: 0.25em;
	width: 100%;
	display: inline-block;
	padding: 0.25em;
	box-sizing: border-box;
}
.account-menu-item:hover {
	background-color: rgb(52,152,219);
	color: rgb(249,249,249);
}
#body {
	width: 100%;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	position: relative;
}
#content {
	flex: 1 1 0.0625em;
	position: relative;
}
.content-page {
	width: 100%;
	height: 100%;
	display: grid;
	position: absolute;
	overflow: auto;
	background-color: rgb(242,242,242);
}
#game-bar {
	flex: 0 0 3em;
	background-color: rgb(249,249,249);
	display: flex;
	padding: 0.25em;
	border: 0.0625em solid black;
}
.game-button {
	border: none;
	width: 4.5em;
	height: 4.5em;
	display: flex;
	flex-direction: column;
	margin-right: 0.25em;
	color: rgb(249,249,249);
	justify-content: space-around;
	background-color: rgb(52,152,219);
	cursor: pointer;
	font: inherit;
	padding: 0;
	align-items: center;
}
.game-button.game-button-tutorial-locked:disabled {
	color: rgba(0,0,0,0);
	background-color: rgba(0,0,0,0);
}
.game-button:hover {
	background-color: rgb(42,122,175);
}
.game-button:disabled {
	background-color: darkblue;
	cursor: default;
}
.game-button.hidden {
	display: none;
}
.game-button.hidden:hover {
	display: none;
}
.game-button.hidden:disabled {
	display: none;
}
.game-button-name {
	display: flex;
	justify-content: center;
	font-weight: bold;
	font-style: italic;
	width: 100%;
	text-align: center;
	pointer-events: none;
}
#game-button-shop > .game-button-name {
	font-size: 90%;
}
.game-button-image {
	width: 100%;
	height: 2.75em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
}
#game-button-image-shop {
	background-image: url("../images/shop.svg");
}
#game-button-image-cards {
	background-image: url("../images/cards.svg");
}
#game-button-image-city {
	background-image: url("../images/city.svg");
}
#game-button-image-class {
	background-image: url("../images/class.svg");
}
#game-button-image-hq {
	background-image: url("../images/hq.svg");
}
#game-button-image-compete {
	background-image: url("../images/compete.svg");
}
#audio-toggles {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#audio-toggles.hidden {
	display: none;
}
.audio-toggle {
	width: 2.2em;
	height: 2.2em;
	position: relative;
	font: inherit;
	border: none;
	background-color: inherit;
	padding: 0;
}
.audio-toggle-background {
	border: 1.1em solid rgb(52,152,219);
	border-radius: 1.1em;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.audio-toggle-background:hover {
	border-color: rgb(42,122,175);
}
.audio-toggle:disabled .audio-toggle-background {
	border-color: darkblue;
	cursor: default;
}
.audio-toggle > svg {
	width: 2.2em;
	height: 2.2em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}
.game-button-footer {
	align-self: center;
}
#music-toggle {
	background-image: url("../images/musicOff.svg");
}
.audio-toggle.audio-enabled > #music-toggle {
	background-image: url("../images/musicOn.svg");
}
#sound-toggle {
	background-image: url("../images/soundOff.svg");
}
.audio-toggle.audio-enabled > #sound-toggle {
	background-image: url("../images/soundOn.svg");
}
.standard-button {
	padding: 1em 3em;
	color: rgb(249,249,249);
	background-color: rgb(52,152,219);
	transition: opacity 1s;
	font: inherit;
	border: 0.2em solid rgb(26,76,109);
	border-radius: 1.1em;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
}
.standard-button:hover {
	background-color: rgb(42,122,175);
}
.standard-button:disabled {
	background-color: darkblue;
	color: grey;
	cursor: default;
}
.fade-out {
	animation-name: fade-out;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
.fade-in {
	animation-name: fade-in;
	animation-duration: 0.5s;
	animation-fill-mode: backwards;
}
.starts-hidden {
	opacity: 0;
	transition: opacity 0s;
}
#dialog-box-background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
#dialog-box-background.hidden {
	display: none;
}
#dialog-box {
	height: 90%;
	max-height: 24em;
	aspect-ratio: 1 / 1;
	width: 90%;
	max-width: 24em;
	background-color: rgb(249,249,249);
	display: flex;
	flex-direction: column;
	border: 0.2em solid black;
	border-radius: 1.1em;
	overflow: hidden;
	z-index: 1;
}
#dialog-box-title {
	position: relative;
	width: 100%;
	flex: 0 0 0.0625em;
	background-color: rgb(52,152,219);
	display: flex;
	justify-content: center;
	border-bottom: 0.0625em solid black;
}
#dialog-box-title-text {
	margin: 0.5em;
	color: rgb(249,249,249);
}
#dialog-box-close-background {
	border: 1.1em solid rgb(249,249,249);
	border-radius: 1.1em;
	position: absolute;
	top: 0.25em;
	right: 0.25em;
	cursor: pointer;
	padding: 0;
	font: inherit;
}
#dialog-box-close-background:disabled {
	border-color: rgb(150,150,150);
}
#dialog-box-close {
	position: absolute;
	left: -1em;
	top: -1em;
	background-image: url("../images/redCancel.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 2em;
	height: 2em;
	pointer-events: none;
}
#dialog-box-close-background:disabled > #dialog-box-close {
	filter: brightness(60%);
}
#dialog-box-left-button {
	display: none;
	position: absolute;
	left: 0.5em;
	top: 0;
	width: 2.75em;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#dialog-box-left-icon {
	display: none;
	position: absolute;
	left: 0.5em;
	top: 0;
	width: 2.75em;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#dialog-box-content {
	flex: 1 1 0.0625em;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2em;
	overflow: auto;
}
#dialog-box-content-text {
	flex: 1 1 0.0625em;
	display: flex;
	align-items: center;
}
#dialog-box-content-ok {
	flex: 0 0 0.0625em;
}
.loading-wheel-parent {
	position: relative;
}
.loading-wheel {
	border: 0.25em solid grey;
	border-radius: 1em;
	border-top-color: rgb(249,249,249);
	animation: spin 2s linear infinite;
	position: absolute;
}
.standard-button > .loading-wheel {
	width: 1.4em;
	height: 1.4em;
	right: 0.7em;
	top: 0.7em;
}
.game-bounce-animation {
	animation: game-bounce-animation 5s infinite;
}
.game-bounce-animation2 {
	animation: game-city-objective-complete-bounce-animation 1s ease-in infinite;
}
.game-button.game-global-lock:disabled:hover::after {
	content: "School Lock\a 0830 - 1600 UK";
	background-color: white;
	color: black;
	border: 0.0625em solid black;
	position: absolute;
	max-width: 5em;
	font-size: 90%;
}
#dialog-box.game-locked-dialog {
	height: auto;
	max-height: 90%;
	aspect-ratio: auto;
}
#dialog-box.game-locked-dialog > #dialog-box-content {
	flex: auto;
}
#game-locked-dialog > form > .form-buttons {
	margin-top: 1em;
	display: flex;
	justify-content: center;
}
#dialog-box.manage-groups-not-available {
	height: auto;
	max-height: 90%;
	aspect-ratio: auto;
}
#dialog-box.manage-groups-not-available > #dialog-box-content {
	flex: auto;
}
@media only screen and (max-width: 44.0625em) {
	#set-task-button {
		min-width: auto;
		width: 8em;
	}
	#progress-button {
		min-width: auto;
		width: 8em;
	}
}
@media only screen and (max-width: 36.0625em) {
	#set-task-button {
		width: 6em;
	}
	#progress-button {
		width: 6em;
	}
	#set-task-arrow {
		display: none;
	}
	#progress-arrow {
		display: none;
	}
	.header-left-button > span {
		margin-right: 0;
	}
	.header-left-button #tasks-button-label {
		margin-right: 2.5em;
	}
}
@media only screen and (max-width: 24.0625em) {
	#set-task-button {
		width: 4em;
		margin-left: 0.125em;
	}
	#progress-button {
		width: 4em;
	}
	#progress-button-hyphen {
		display: inline;
	}
}
@media only screen and (max-width: 23.5625em) {
	.standard-button {
		padding: 1em 2em;
	}
	#search-bar {
		left: -3em;
	}
	#student-login-button {
		min-width: 6em;
	}
	#teacher-login-button {
		min-width: 6em;
	}
	.button-label {
		display: flex;
		flex-direction: column;
	}
	.header-left-button {
		min-width: 8em;
	}
	#dialog-box-content {
		padding: 1em;
	}
}
@media only screen and (max-width: 31.2em) {
	#game-header-resources {
		margin-left: 0.5em;
	}
	.game-header-resource {
		min-width: 3em;
		grid-template-columns: min-content min-content;
		grid-template-rows: auto min-content;
	}
	.game-header-resource-image {
		height: 1.3em;
		grid-area: 1 / 1 / 2 / 2;
	}
	.game-header-bar {
		margin: -0.1em auto 0 auto;
		padding-left: 0;
		grid-area: 2 / 1 / 3 / 3;
		text-align: center;
		background-color: inherit;
		height: auto;
	}
	.game-header-resource-plus {
		width: 1em;
		height: 1em;
		grid-area: 1 / 2 / 2 / 3;
		margin-left: 0.2em;
	}
	#game-bar {
		align-items: center;
	}
	.game-button {
		height: 15vw;
		padding: 0.1em;
	}
	.game-button.game-global-lock:disabled:hover::after {
		font-size: 70%;
	}
	.game-button-name {
		font-size: 3vw;
	}
	#game-button-shop > .game-button-name {
		font-size: 2.7vw;
	}
	.game-button-image {
		width: 10.5vw;
		height: 10.5vw;
		margin: 0 auto;
	}
	#audio-toggles {
		height: 15vw;
	}
	.audio-toggle {
		width: 7vw;
		height: 7vw;
	}
	.audio-toggle-background {
		border-width: 3.5vw;
		border-radius: 3.5vw;
	}
	.audio-toggle > svg {
		width: 7vw;
		height: 7vw;
	}
}
@media only screen and (orientation: landscape) and (max-height: 23.5625em) {
	#dialog-box-content {
		padding: 1em;
	}
}
@media only screen and (orientation: landscape) and (min-width: 69.125em) and (max-height: 34.7em) {
	#game-bar {
		max-width: 13vh;
	}
	.game-button {
		height: 15%;
		width: 13vh;
	}
	.game-button.game-global-lock:disabled:hover::after {
		font-size: 70%;
	}
	.game-button-name {
		font-size: 2.5vh;
	}
	#game-button-shop > .game-button-name {
		font-size: 2.25vh;
	}
	.game-button-image {
		width: 55%;
		height: 55%;
	}
	#audio-toggles {
		height: auto;
	}
	.audio-toggle {
		width: 6vh;
		height: 6vh;
	}
	.audio-toggle-background {
		border-width: 3vh;
		border-radius: 3vh;
	}
	.audio-toggle > svg {
		width: 6vh;
		height: 6vh;
	}
}
@media only screen and (min-width: 33.25em) {
	#site-logo {
		width: 10.225em;
		margin-right: 1em;
		background-image: url("../images/longThinLogo.svg");
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}
}
@media only screen and (orientation: landscape) and (min-width: 69.125em) {
	#header {
		grid-template-columns: min-content auto min-content;
	}
	#search-label {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100%;
		z-index: 3;
	}
	#search-input-form {
		display: inline;
	}
	#search-input-form.portrait-dropdown {
		position: static;
		margin: 0 0.5em;
	}
	#search-button-inset {
		height: 100%;
		z-index: 3;
		top: 0;
		right: 0.8em;
		position: absolute;
		padding: 0.75em;
		box-sizing: border-box;
		margin: 0;
		display: inline;
		background-image: url("../images/search.svg");
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		cursor: pointer;
		font: inherit;
		background-color: inherit;
		border: none;
	}
	#search-button-inset.portrait-dropdown {
		width: auto;
		right: 0.8em;
		padding: 0.75em;
	}
	#search-button-full {
		display: none;
	}
	#search-dropdown {
		right: -3em;
	}
	#header-left-secondary {
		grid-area: 1 / 2;
		border-width: 0.0625em 0;
	}
	#header-left-secondary.header-left-secondary-student {
		grid-area: 1 / 2;
		border-width: 0.0625em 0;
	}
	.header-left-button {
		min-width: 12em;
	}
	#game-header {
		height : 100%;
		flex-direction: column;
		box-sizing: border-box;
	}
	#game-header-resources {
		flex: 1 1 0.0625em;
		height: 100%;
	}
	.game-header-resource-plus:hover {
		margin: 0 -0.2em 0 0;
	}
	#game-header-level {
		flex-direction: row;
		margin-bottom: 0;
	}
	#game-header-level-colon-1 {
		display: none;
	}
	#game-header-level-colon-2 {
		display: inline;
	}
	.game-header-bar {
		min-height: 1.2em;
	}
	#header-right {
		grid-area: 1 / 3;
	}
	#body {
		flex-direction: row;
	}
	#game-bar {
		flex-direction: column;
		border-top-width: 0;
	}
	.game-button {
		margin-right: 0;
		margin-bottom: 0.25em;
	}
	#audio-toggles {
		flex-direction: row;
	}
}
