.webgl-content * {border: 0; margin: 0; padding: 0;}
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}

.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; 
    font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px; background-color: white;}
.webgl-content .footer .title {margin-right: 10px; float: right;}
.webgl-content .footer .sub {margin-right: 0px; float: right;}

#custom-logo, #custom-loader, #custom-trunk, #custom-wing{
    position: absolute;
    left: 50%;
    top: 30%;
}

#custom-logo{
    background-image: url('logo.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    
    transform: translate(-50%, -50%);
    width: 350px;
    height: 32px;

    top: 80%;

    margin-top: 50px;
}

#custom-trunk{
    background-image: url('loading_img_bar_01.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 130px;

    margin-top: 180px;
}

#custom-wing{
    background-image: url('loading_img_head_01.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 6;

    margin-top: 15px;

    margin-left: -75px;


    width: 150px;
    height: 150px;

    animation: rotate_image 5s linear infinite;
    transform-origin: 50% 50%;
}

#custom-loader{
    width: 20%;
    height: 30px;
    background: white;
    padding: 5px;
    z-index: 3;
    transform: translate(-50%, -50%);
    margin-top: 250px;
}

#custom-loader .fill{
    width: 0%;
    height: 95%;
    background: skyblue;
}

#custom-loader .label{
    position : relative;
    top : -25px;
    font-size: 20px;
    text-align: center;
    font-family: 'NanumSquare', sans-serif, calib;
    font-weight: 600;
    color: black;
}

#gameContainer{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    width: 1280px;
    height: 722px;
}

@keyframes rotate_image{
	100% {
    	transform: rotate(360deg);
    }
}

@media (max-device-width:1000px) and (min-aspect-ratio: 2/1){
    #custom-trunk{
        width: 20px;
        height: 65px;
        margin-top: 100px;
    }

    #custom-wing{
        width: 75px;
        height: 75px;
        margin-left: -37.5px;
    }

    #custom-loader{
        margin-top: 150px;
    }
}