html, body, #unityContainer, .webgl-content {
	margin:0;
	padding:0;
	height:100%;
	overflow:hidden;
}

#mobileLink {
	height:80px;
	width:80px;
	position:fixed;
	top:20px;
	left:20px;
	transition:0.4s;
}

#mobileLink:hover {
	transform: rotate(20deg); 
}

#lds-ellipsis {
  display: inline-block;
  position: fixed;
  width: 160px;
  height: 160px;
  top:calc(50% - 80px);
  left:calc(50% - 80px);
}
#lds-ellipsis div {
  position: absolute;
  top: 66px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
#lds-ellipsis div:nth-child(1) {
  left: 16px;
  animation: lds-ellipsis1 0.6s infinite;
}
#lds-ellipsis div:nth-child(2) {
  left: 16px;
  animation: lds-ellipsis2 0.6s infinite;
}
#lds-ellipsis div:nth-child(3) {
  left: 64px;
  animation: lds-ellipsis2 0.6s infinite;
}
#lds-ellipsis div:nth-child(4) {
  left: 112px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(48px, 0);
  }
}