:root {
	--logo-color1: #ff4f75;
	--logo-color2: #3d0066;
}

body{ 
	margin: 0; 
	font-family: Sans-Serif;
	overflow:hidden;
	background-color:black;
}

canvas{
	width: 100%; 
	height: 100% 
}

#annotate_container{
	position:absolute;
	width:auto;
	text-align:center;
	color:black;
	display:none;
	margin-top:0px;
	padding:3px;
	transform: translate(-50%, 0%);
	margin-left:50%;
}


#sleep{
	position:absolute; 
	top:0; 
	left:0;
	right:0;
	bottom:0;
	z-index:3;
	margin:0;
	padding:0;
	color:white;
	background-color:black;
	font-family: Sans-Serif;
	text-align: center;
	font-size:20px;
	font-size:10vw;
	opacity: 0.8;
	cursor: pointer;
}


#UserMessage{
	position:absolute; 
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color:white;
	text-align: center;
	font-size:10px;
	font-size:5vmin;
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	opacity:0;
	padding:15px;
}
.hidden{
	display:none;
}

.shrinkGrow{
	-webkit-animation-name: grow; 
	-webkit-animation-duration: 3s;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-name: grow;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

/* Add Animation */
@keyframes grow {
    0% { transform: scale(1); }
    50% { transform: scale(0.75); }
    100% { transform: scale(1); }
}

a{
	color: var(--logo-color1);
}
a:visited {
	color: var(--logo-color1);
}

.octreeLoadingPaused{
	fill: gray;
}

#WebGLContainer{
	position: absolute;
	top: 0px;
	left:  0px;
}

#flyExplainer{
	background-color:#808080; 
	color: black; 
	position:fixed; 
	bottom:0; 
	left:0; 
	padding:10px; 
	font-size:14px; 
	border-radius: 00px 10px 0px 0px;
	/*z-index:100;*/
	transform:  translate(0px, 0px);
}
#flyExplainerHider{
	background-color:rgb(80,80,80); 
	color: white; 
	position:fixed; 
	height: 20px;
	bottom:0; 
	left: 0px;
	padding:2px; 
	/*margin-bottom: 70px;*/
	/*z-index:100;*/
	border-radius: 10px 10px 0px 0px;
	transform:  translate(0px, 0px);
	cursor: pointer;
}
#flyExplainerHider:hover{
	color: black;
}
.loaderText{
    text-align:center;
    color:white;
	/* font-size:20px; */
	margin:0;
	padding:0;
	padding-top:10px;
    width:100%
}