html {
    box-sizing: border-box;
}
@font-face {
    font-family: myFirstFont;
    src: url(editundo.woff);
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    margin: 0;
    background-image: linear-gradient(rgb(0, 0, 0), rgb(0, 102, 255));
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}
canvas + * {
    z-index: 2;
}
.notiRotateMobile{
    display: none;
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: white;
}

.btnRotateMobile{
    border:0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.imageRotateMobile{
    width: 160px;
}
#gameContainer {
    width: 100vw;
    height: 100vh;
}

.logo {
    padding: 0px 150px;
    display: block;
    max-width: 100vw;
    max-height: 70vh;
} 

#loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgb(0, 0, 0), rgb(0, 102, 255));
}
.pos_spinner{
    position: absolute;
    bottom : 15%;
    width: 100%;
}

.spinner,
.spinner:after {
    display: none;
    border-radius: 50%;
    width: 5em;
    height: 5em;
}
.spinner {
    margin: 10px;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    transform: translateZ(0);
    animation: spinner-spin 1.1s infinite linear;
}
@keyframes spinner-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.container {
    margin-top: 50px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.wrapper {

}

.loader-outer {
    position: relative;
    margin: auto;
    width: 300px;
    height: 35px;
    border-radius: 20px;
    border-bottom: 1px solid #303030;
    background: #151515;
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5), 0 0 10px 0 rgba(0, 0, 0, 0.5) ;
    overflow: hidden;
    z-index: 1;
}

.loader-outer .loader-inner {
    position: absolute;
    margin: auto;
    top: 10px;
    left: -50px;
    z-index: 2;
    animation: load 2s infinite linear;
}
.loader-inner{
    display: flex;
    justify-content: center;
}
.icon{
    margin: 0px 2px;
    display: block;
    height: 15px;
    width: 15px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 0 5px #fff;
}
h1 {
    margin: auto;
    margin-top: 10px;
    width: 85px;
    height: 40px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 20px #46bef1;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: lighter;
    color: #fff;
    font-family: myFirstFont;
}

h1 span {
    display: none;
}

h1::after,.animload::after {
    animation: txt 1s infinite;
    content: "";
}

.animload{
    font-family: myFirstFont;
     font-size: 30px;
    position: absolute;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#maploading{
    display: none;
    position: absolute;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000;
}
@keyframes load {
    0% {
        left: -50px;
    }
    100% {
        left: 350px;
    }
}

@keyframes txt {
    0% {
        content: "LOADING";
    }
    35% {
        content: "LOADING.";
    }
    65% {
        content: "LOADING..";
    }
    100% {
        content: "LOADING...";
    }
}

.percentLoading{
    font-family: myFirstFont;
    font-size: 28px;
    color:white;
}

@media only screen and (orientation:portrait){
    .notiRotateMobile{
        display: block;
    }

    .hideNotiRotateMobile{
        display: none;
    }
}

@media only screen and (orientation:landscape) {
    .notiRotateMobile{
        display: none;
    }
}

@media (max-width: 1200px) {
    .container {
        margin-top: 40px;
        height:130px;
    }
    .percentLoading{
        font-size : 26px;		
    }
}

@media (max-width: 1024px) {
    .loader-outer{
        width: 200px;
        height: 30px;
    }
    .loader-outer .loader-inner {
        top: 8px;
        left: -50px;
    }
    @keyframes load {
        0% {
            left: -50px;
        }
        100% {
            left: 250px;
        }
    }
    .container {
        margin-top: 30px;
        height:110px;
    }
    .percentLoading{
        font-size : 24px;		
    }
    .logo{
        padding: 0px 50px
    }
}

@media (max-width: 768px) {
    .container {
        margin-top: 20px;
        height:90px;
    }
}

@media (max-width: 480px) {
    .container {
        margin-top: 15px;
        height:70px;
    }
    .percentLoading{
        font-size : 20px;		
    }
}