.loadingDoor {
	position: absolute;
	background-color: #111111;
	transition: 1s all;
	left: 0px;
	right: 0px;
	color: white;
	overflow: hidden;
}
.loadingText {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 3em;
}
#loadingTop {
	top: 0px;
	bottom: 50%;
	z-index: 999;
}
#loadingBot {
	top: 50%;
	bottom: 0px;
	z-index: 998;
}
.loadingHazard {
    position: relative;
    left: 0px;
    right: 0px;
    height: 10px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}
#loadingTop .loadingHazard {
    top: calc(100% - 14px);
	background: repeating-linear-gradient(45deg, #222222 0px, #000000 5px, #3a2e00 10px, #000000 15px, #222222 20px);
}
#loadingBot .loadingHazard {
    top: 0px;
	background: repeating-linear-gradient(-45deg, #222222 0px, #000000 5px, #3a2e00 10px, #000000 15px, #222222 20px);
}

#loadingTop.closed {
	margin-bottom: 100%;
}
#loadingBot.closed {
	margin-top: 100%;
}

#preloadAssets {
	display: none;
}