@font-face {
	font-family: "roboto-light";
	font-style: normal;
	font-weight: normal;
	src: local("roboto-light"), url("../fonts/roboto/roboto-light.woff") format("woff");
}

@font-face {
	font-family: "ostrich-rounded";
	font-style: normal;
	font-weight: normal;
	src: local("ostrich-rounded"), url("../fonts/ostrich-sans/ostrich-sans-rounded.woff") format("woff");
}

body,
html {
	width: 100%;
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	border: none;
	overflow: hidden;
	user-select: none;
	touch-action: none;
	text-align: center;
	background-color: #f0f0f0;
	/* -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility; */
	font-family: "roboto-light";
}

button {
	outline: none;
	border: none;
	cursor: pointer;
}

button:not([class*='icon-']) {
	padding: 5px;
	border-radius: 2px;
	/* background-color: #f3d053; */
	background-color: #ffd76a;
	font-family: "ostrich-rounded";
	box-shadow: 1px 1px 0px 2px #00000022;
	font-size: 2em;
	letter-spacing: 4px;
	/* Because letter-spacing also adds space to the last character */
	text-indent: 4px;
}

.rounded {
	border-radius: 50%;
}

select {
	font-family: "ostrich-rounded", monospace;
	font-size: 2em;
	height: 40px;
	border: none;
	outline: none;
	text-align: right;
	border-radius: 2px;
}

iframe {
	outline: none;
	border: none;
	width: 100%;
	height: 100%;
}

input:not([type="range"]),
textarea {
	border: none;
	outline: none;
	padding: 10px;
	margin-bottom: 10px;
	font-size: 1em;
	background-color: #eee;
	border-radius: 2px;
}

textarea {
	resize: none;
	font-family: "roboto-light";
}


h1,
h2,
h3 {
	font-family: "ostrich-rounded";
	font-weight: normal;
	font-style: normal;
}

h1 {
	font-size: 4em;
	/* line-height: 1.1; */
	margin: 20px 00px;
}

h2 {
	font-size: 2em;
	letter-spacing: 0.008em;
	margin-bottom: 0px;
	margin-top: 30px;
}

h2+p {
	margin-top: 8px;
}

.hidden {
	display: none !important;
}

.invisible {
	opacity: 0;
}

.flipElement {
	position: absolute;
	display: flex;
}

.centerElement {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.cover {
	width: 100%;
	height: 100%;
}

.modalBlocker {
	position: fixed;
	top: 0%;
	left: 0%;
	z-index: 1000;
	background-color: black;
	opacity: 0.30;
	width: 100%;
	height: 100%;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 720px;
	background-color: #808080;
	z-index: 1001;
	box-shadow: 4px 4px 0px 0px #00000022;
	color: #111;
	border-radius: 2px;
	text-align: left;
	padding: 10px;
	max-width: calc(100% - 50px);
	max-height: calc(100% - 10px);
	overflow-x: hidden;
	overflow-y: auto;
}

.modal label {
	margin-right: 20px;
}

.modal input,
.modal textarea {
	max-width: calc(100% - 20px);
}

.modal select {
	max-width: 100%;
}

.flushRight {
	float: right;
}

.flushLeft {
	float: left;
}

div#pageInformation {
	display: none;
}

.externalLink {
	display: none
}

.globalButton {
	display: none
}

span.inputLabelContainer {
	white-space: nowrap;
	font-size: 1.5em;
	font-family: "ostrich-rounded";
}

span.inputLabelContainer input {
	margin-left: 10px;
}

div:focus {
	outline: none;
}

.nonInteractive {
	pointer-events: none;
}

canvas {
	outline: none;
}

.altFont {
	font-family: "roboto-light" !important;
}

.inputToggleBlock {
	display: flex;
}

.inputToggleBlock input {
	display: none;
}

.inputToggleBlock input:checked+label {
	background-color: #f3d053;
	border-top: 1px solid #dbdbdb;
	border-bottom: 1px solid #9b9b9b;
}

.inputToggleBlock>* {
	flex-grow: 1;
	cursor: pointer;
	height: 30px;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 30px;
}

.thumbnail {
	width: 33%;
	margin: 20px 20px 20px auto;
	display: inline-block;
	cursor: pointer;
}

@media (max-width:640px) {
	.thumbnail {
		width: 25% !important;
	}
}