﻿html, body 
{
    background: #FFFFFF;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#gameContainer 
{
    margin: auto !important;
    position: relative;
}

#preloader 
{
    background: #101217;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#preloader img 
{
    width: 200px;
    height: 200px;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#bar_bg 
{
    background: #000000;
    width: 200px;
    height: 6px;
    position: absolute;
    top: 70%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#bar_fill 
{
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
    background: #FEE5AB;
    width: 0%;
    height: 100%;
}