#gl-viewport{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#gl-viewport::after{
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	pointer-events: none;
	background: rgb(0,0,0);
	background: rgb(6,5,73);
	background: -moz-radial-gradient(circle, rgba(6,5,73,0) 35%, rgba(4,4,57,0.57) 70%, rgba(3,3,42,0.91) 100%);
	background: -webkit-radial-gradient(circle, rgba(6,5,73,0) 35%, rgba(4,4,57,0.57) 70%, rgba(3,3,42,0.91) 100%);
	background: radial-gradient(circle, rgba(6,5,73,0) 35%, rgba(4,4,57,0.57) 70%, rgba(3,3,42,0.91) 100%);
}

#loader {
    position: fixed;
    /* background: #0003; */
    width: 100%;
    height: 100%;
    z-index: 1000;
    left: 0%;
    top: 0%;
    transform: scale(.7)
    /* display:none; */
    /* opacity:0; */;
}
#loader .loading-logo {position: relative; z-index: 5;}
#loader .loader-content{
	position: absolute;
	/* background: #000; */
	width: 220px;
	height: 220px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 120px;
}
#loader .loader-message {
    text-align: center;
    padding: 60px 0 20px;
}

#loader .loader-progress {
    text-align: center;
    font-size: 30px;
    position: absolute;
    top: calc(100% - 17px);
    left: 50%;
    transform: translateX(-50%);
}
.loader-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.7);
}
#loader .loader-progress span{position: relative;}
#loader .loader-progress::before {
    content:'';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;
    z-index: -1;
    box-shadow: 0 0 60px 60px #000;
}


@media screen and (max-width: 900px){
    #gl-viewport canvas { position: fixed; }
    #gl-viewport::after { position: fixed; background: rgb(0,0,0); background: rgb(6,5,73); background: -moz-radial-gradient(circle, rgba(6,5,73,0) 6%, rgba(4,4,57,0.57) 70%, rgba(3,3,42,0.91) 100%); background: -webkit-radial-gradient(circle, rgba(6,5,73,0) 6%, rgba(4,4,57,0.57) 70%, rgba(3,3,42,0.91) 100%); background: radial-gradient(circle, rgba(6,5,73,0) 6%, rgba(4,4,57,0.57) 70%, rgba(3,3,42,0.91) 100%); }
}