﻿body {
	height: 100vh;
	overflow: hidden;
	font-family: 'DEON-UI-Icons', Fallback, 'fluent-icons', 'Roboto', sans-serif;
	background-color: var(--dark-background);
}

#app {
	height: 100%;
	display: flex;
	flex-direction: column;
}

canvas {
	max-width: 100% !important;
	max-height: 100% !important;
}


.b-layout-content {
	align-items: stretch;
	justify-content: center;
	display: flex;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: #aaaaaa80;
	height: 70px;
}

::-webkit-scrollbar-thumb:hover {
	background: #aaaaaa;
}

.prevent-select {
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */
}

.loadingProgress {
	top: 40%;
	left: 30%;
	right: 30%;
	margin-top: 60px;
	text-align: center;
	position: absolute;
}

#progressLabel {
	font-size: 0.8em;
}

.spinner {
	width: 80px !important;
	height: 80px !important;
	margin: -40px -40px;
	animation: rotation 3s infinite linear;
	top: 40%;
	left: 50%;
	position: absolute;
}

.progress {
	background: #aaaaaa;
}

.progress-bar {
	position: absolute;
	height: 2em;
	background: #4382a5;
}

@keyframes rotation {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(359deg);
	}
}

.metaMessagePanel dev span.fade-in {
	opacity: 0;
	animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}