html {
	-ms-touch-action: none;
}

body,
canvas,
div {
	display: block;
	outline: none;
	-moz-outline-style: none;
	-moz-outline-style: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-khtml-user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	border: 0px;
	overflow: hidden;
	cursor: default;
	color: #000;
	background-color: #000;
	text-align: center;
	display: flex;
	flex-direction: column;
}

canvas {
	background-color: rgba(0, 0, 0, 0);
	width: 100% !important;
	height: 100% !important;
}

#GameDiv,
#Cocos2dGameContainer,
#GameCanvas,
#gameAxDivContainer {
	width: 100%;
	height: 100%;
}

#Cocos2dGameContainer {
	position: absolute;
	margin: 0;
	overflow: hidden;
	left: 0px;
	top: 0px;
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-align: center;
	-webkit-box-pack: center;
}

#loadingText {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	border: 8px solid #000000;
	color: #eeeeee;
	font-family: Verdana;
	font-size: 16px;
	text-align: center;
	vertical-align: middle;
	line-height: 100px;
}

#loadingDisplay {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	border: 8px solid #eeeeee;
	border-top: 8px solid #666666;
	border-radius: 50%;
	animation: spin 1.5s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}