#loading_popup
{
    width: 100%;
    height: 100%;
    overflow:hidden;    
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background: url('../img/loading_back.jpg') no-repeat;
    background-size: cover;    
    background-position: center;
}

#gameLoadingGuideWrapper
{
    position: fixed;
    transform: translate(-50%, -50%);
    width: 45%;
    left: 50%;
    top: 75%;
}

#gameLoadingGuide
{
    color: yellow; 
    padding: 5px;   
    font-size: 15px;
    text-align: center;
    background-color: rgba(50,50,50,.8);
    margin: 0;
}

#progressPercent
{
    text-align: center;
    color: yellow;
    font-size: 30px;
    font-weight: bold;    
    margin: 0;
}

#gameLoadingBack
{
    background: url('../img/loading_progress_back.png') no-repeat;
    width: 100%;    
    margin-top: 2px;
    background-size: cover;
    background-position: center;
}

@media (orientation: portrait) {
    #loadingVideo
    {
        display: none;
    }

    #loading_popup
    {
        width: 100%;
        height: 100%;
        overflow:hidden;    
        position:absolute;
        top:0px;
        left:0px;
        right:0px;
        bottom:0px;
        background: url('../img/loading_back_portrait.jpg') no-repeat;
        background-size: cover;    
        background-position: center;
    }

    #gameLoadingBack
    {
        background: url('../img/loading_progress_back.png') no-repeat;
        width: 70%;    
        background-size: contain;
        background-position: center;
        position: fixed;
        left: 50%;
        top: 80%;
        transform: translate(-50%, -50%);
    }
}

.netgame-logo-wrapper{
    background: url('../img/loading_back.jpg') no-repeat;
}



#gameLoadingProgress
{
    background: url('../img/loading_progress.png') no-repeat;
    width: 0%;
    height: 100%;
    background-size:cover;
    background-position-y: center;    
}

#mainframe{
    border:0px
}

.home-btn{
    position: fixed;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    content: url('../img/btn_home.png');
    background-size: contain;
    cursor:pointer;
    z-index: 1000;
}

.home-btn:hover{
    transform: scale(1.1);
}

#orientation {
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/en_orientation.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    z-index: 1000;
    background-size: contain;
    visibility: hidden;
    opacity: .95;
}

#loadingVideo{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

*::-webkit-media-controls-panel {
    display: none!important;
    -webkit-appearance: none;
  }
  
/* Old shadow dom for play button */

*::-webkit-media-controls-play-button {
display: none!important;
-webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works! */

*::-webkit-media-controls-start-playback-button {
display: none!important;
-webkit-appearance: none;
}