body { 
	padding: 0; 
	margin: 0;
	overflow: hidden;
}
#unity-container { 
	position: absolute;
	width: 100%; 
	height: 100%;
}
#unity-canvas { 
	width: 100%; 
	height: 100%;
	background: #231F20;
}
#unity-warning { 
	display: none;
	position: absolute;
	left: 50%;
	top: 5%;
	padding: 0.5rem;
	transform: translate(-50%);
	background: white;	
}
#an {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	user-select: none;
}
#an.vis {
	display: flex;
}
#an>iframe {
	width: 100%;
    margin: 20px 50px;
    border: 0;
}
.close {
	position: absolute;	
	top: 22px;
	right: 52px;
	width: 20px;
	height: 20px;	
}
#loading {
	display: block;
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);	
}
.loading-label {
	display: block;
	margin-top: 5rem;
	text-align: center;
	color: #c0c0c0;
}
.ripple {
	display: inline-block;
	position: relative;
	width: 200px;
	height: 200px;
}
.ripple div {
	position: absolute;
	border: 4px solid #fff;
	opacity: 1;
	border-radius: 50%;
	animation: ripple-anim 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.ripple div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes ripple-anim {
	0% {
		top: 95px;
		left: 95px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: 190px;
		height: 190px;
		opacity: 0;
	}
}
