:root {
	--main: #890a25;
	--text: black;
	--textOnBg: white;
	--bg: white;
	--alternateBg: #2c373e;
	--alternate: #adadad;
	--accent: #2d64a6;
	--heroBg: rgba(255, 255, 255, .3);
	--agendaCols: 2;
	--agendaColsSmall: 1;
}
html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	background-color: #09161e;
	color: var(--textOnBg);
	position: relative;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	background-image: url("./images/expo_bg.png");
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

noscript {
	color: white;
	font-size: 2rem;
}

*, *:before, *:after {
	box-sizing: border-box;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: inline-block;
	margin-bottom: .25rem;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

input[type="range"] {
	height: 0;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.message {
	word-break: break-word !important;
}

iframe {
	max-width: 100%;
}

.info-box {
	max-width: clamp(400px, 1024px, 90%);
	margin: 3rem auto;
	border: 1px solid var(--alternate);
	border-radius: 1rem;
	padding: 2rem;
	position: relative;
	background-color: var(--alternateBg);
}

.tribute-container {
	position: absolute;
	top: 0;
	left: 0;
	height: auto;
	overflow: auto;
	display: block;
	z-index: 999999;
	font-size: .8em;
}
.tribute-container ul {
	margin: 0;
	margin-top: 2px;
	padding: 0;
	list-style: none;
	color: var(--text);
	background: #eee;
}
.tribute-container li {
	padding: 5px 5px;
	cursor: pointer;
}
.tribute-container li.highlight {
	color: var(--textOnBg);
	background: var(--accent);
}
.tribute-container li span {
	font-weight: bold;
}
.tribute-container li.no-match {
	cursor: default;
}
.tribute-container .menu-highlighted {
	font-weight: bold;
}

.vertical-middle, .vertical-middle > img {
	vertical-align: middle;
}
