* {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	line-height: 1;
	text-decoration: none;
	font-size: 1em;
	font-style: normal;
	font-weight: normal;
	color: white;
	box-sizing: border-box;
}

html {
	height: 100%;
	position: fixed;
}

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

body.floorIntersected {
	cursor: pointer !important;
}

body.rotatable {
	cursor: grabbing;
	cursor: -moz-grab;
	cursor: -webkit-grab;
}

body.rotating {
	cursor: grabbing;
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}

main {
	background-color: #cccccc;
	flex: 1;
	display: flex;
	touch-action: none;
}

canvas {
	touch-action: none;
}

#loadingScreen {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #FFFFFF;
	/*background-image: url("../assets/img/loading_bg.jpg");
	background-size: cover;
	background-position: center center;*/
	z-index: 1001;
	transition: 0.5s opacity ease-in-out;
}

#loadingBarBackground {
	background-color: #999999;
	margin: 0 auto;
	border-radius: 4px;
	margin-top: 20px;
	width: 80%;
	max-width: 500px;
	height: 25px;
}

#loadingBar {
	background-color: cadetblue;
	display: block;
	width: 0;
	height: 100%;
	border-radius: 4px;
}

#loadingPercent {
	text-align: center;
	position: relative;
	bottom: 20px;
}

#loadingPercent::after {
	content: ' %';
}

footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0);
	text-align: center;
	transition: left 0.4s ease-in-out;
}

footer div {
	width: 100%;
	height: 70px;
	margin-left: auto;
	margin-right: auto;
}

