﻿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: 12.8px;
}

.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: 32px;
	background: #4382a5;
}

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

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

#entry-page > div {
	margin: auto;
	height: 100%;
	margin-top: 60px;
	text-align: center;
	place-content: space-between;
	flex-direction: column;
	row-gap: 12px;
}

#entry-page a {
	margin: 8px 0;
	border-radius: 20px;
	border-color:#444444;
}

#entry-page #projectLink {
	margin-bottom: 40px;
}

#entry-page #logoBig {
	max-height: 125px;
}

#entry-page #start-app-container {
	margin-top: 48px;
	margin-bottom: 68px;
}

#entry-page #download-for {
	margin-bottom: 20px;
}

#entry-page img {
	margin-bottom: 80px;
}

#entry-page nav a {
	font-size: 13.6px;
	display: inline-block;
}