#canvas {
	display: none;
	background-color: rgba(0, 0, 0, 1.00);
	position: absolute;
	left: 0;
	top: 0;
	image-rendering: pixelated;
	image-rendering: crisp-edges;
}

#dom_overlay_container {
	pointer-events: none;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 0px;
	display: none;
	z-index: 2;
}

#build-version {
	position: absolute;
	right: 10px;
	bottom: 8px;
	z-index: 4;
	font: 11px/1.2 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	letter-spacing: 0;
	color: rgba(255, 248, 232, 0.88);
	text-shadow: 0 1px 2px #000;
	pointer-events: none;
}

#_preload_div_ {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	background-color: black;
	display: flex;
	justify-content: center;
	align-items: center;
}

.no-select {
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Old versions of Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

#animation_container {
	background-color: #000;
	overflow: hidden;
	height: 100%;
	position: relative;
}

#screen-split {
	display: grid;
	grid-template-columns: 1fr;
	flex: 1 1 auto;
	min-height: 0;
	height: auto;
}

#screen-split.has-timer {
	grid-template-columns: 1fr;
}

#side_panel {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	box-sizing: border-box;
	width: max-content;
	max-width: none;
	height: 100%;
	max-height: 100%;
	margin: 0;
	padding: 1px 4px 1px 5px;
	background: rgba(8, 6, 4, 0.48);
	overflow: hidden;
	scrollbar-width: none;
	pointer-events: none;
}

#side_panel::-webkit-scrollbar,
#table_container::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

#side_panel.is-open {
	display: flex;
	flex-direction: column;
}

#image_select {
	display: none;
}

#table_container {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: right;
	overflow: hidden;
	flex: 1 1 auto;
	height: 100%;
	min-height: 0;
	color: rgba(255, 248, 232, 0.92);
	scrollbar-width: none;
}

#timeTable {
	--timer-rows: 34;
	border-collapse: collapse;
	border-spacing: 0;
	height: 100%;
	width: max-content;
	table-layout: auto;
	font-size: 7px;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

#timeTable thead,
#timeTable tbody {
	height: auto;
}

#timeTable tr {
	height: calc(100% / var(--timer-rows));
}

#timeTable tr:nth-child(even) {
	background-color: rgba(255, 255, 255, 0.06);
}

#timeTable tr.is-current {
	background-color: rgba(255, 180, 70, 0.28);
	color: #fff;
	font-weight: 700;
}

#timeTable tr.is-current td {
	font-weight: 700;
}

#timeTable th {
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	padding: 0 3px;
	background-color: rgba(8, 6, 4, 0.72);
	font-size: 7px;
	line-height: 1;
}

#timeTable td {
	padding: 0 3px;
	white-space: nowrap;
	line-height: 1;
}

#timeRows {
	font-size: 7px;
}

html,
body {
	position: relative;
	margin: 0px;
	background-color: black;
	color: white;
	height: 100%;
	height: 100dvh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}