	/* Disable user selection to avoid strange bug in Chrome on Windows:
	* Selecting a text outside the canvas, then clicking+draging would
	* drag the selected text but block mouse down/up events to the engine.
	*/
    html{
        width: 100%;
        height: 100%;
        background-image: url("bg_1.png"), url("bg_1.png");
        /* background-size: auto 100%, auto 100%;*/
        background-size: auto 100%,  auto 100%; 
        background-position: top left,  top right;
        background-repeat: repeat-x,  repeat-x;
        background-color: rgb(66, 64, 85);
        padding: 0;
        margin: 0;
    }

	body {
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
        user-select: none;
        margin: 0;
        margin: 0;
        min-height:100%;
        height:100%;
        overflow:hidden;
	}

    canvas {
        vertical-align: middle;
    }
    .canvas-app-container {
        /* A positioned parent for loading visuals */
        width: 100%;
        height: 100%;
        position: absolute;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: rgb(66, 64, 85);
        box-shadow: 0px 0px 15px 3px black;
    }
    .canvas-app-progress {
        position: absolute;
		background-color: #e9516b;        
		height: 6px;
		margin-top: -6px;
        width: 100%;
        visibility: hidden;
    }
    .canvas-app-progress-bar {
        font-size: 12px;
		height: 6px;
		color: rgb(255, 255, 255);
		background-color: #1a72eb;
		text-align: center;
        line-height: 20px;
        visibility: hidden;
    }
    * { margin:0; padding:0; }
    #canvas {
        outline: none;
        border: 0;
        width: 100%;
    }


    div {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    body {
        width: 100%;
        position: fixed; /* Prevent overscroll */
    }

    .logger{
        background-color: rgba(82, 79, 79, 1);
        width:200px;
        font-size: xx-small;
        color:white;
        position: absolute;
        z-index: 999;
    }

    .animate-opacity{
        transition: opacity 1s ease-out;
        -webkit-transition: opacity 1s ease-out;
        -moz-transition: opacity 1s ease-out;
        -ms-transition: opacity 1s ease-out;
        -o-transition: opacity 1s ease-out;
    }

    .splash-logo {
        width: 100%;
        top: 5%;
        display: flex;
        position: absolute;
        justify-content: center;
        text-align: center;
        z-index: 999;

        transform-origin: top;
        transition: opacity 1s ease-out;
        -webkit-transition: opacity 1s ease-out;
        -moz-transition: opacity 1s ease-out;
        -ms-transition: opacity 1s ease-out;
        -o-transition: opacity 1s ease-out;
    }

    .counter-container{
        color: rgb(255, 255, 255);
        font-size: 150%;
        font-family: "VAG World Bold";
        position: fixed;
        justify-content: center;
        text-align: center;
        display: flex;
        width: 100%;
        bottom: 10.035%;
        z-index: 999;
        transform-origin: bottom;

        transition: opacity 0.2s ease-out;
        -webkit-transition: opacity 0.2s ease-out;
        -moz-transition: opacity 0.2s ease-out;
        -ms-transition: opacity 0.2s ease-out;
        -o-transition: opacity 0.2s ease-out;
}

    .button-progress-container{
        width: 435px;
        height: 120px;
    }

    .progress-text {
        position: relative;
        font-size: 165%;
        top: -110px;
    }

    .bottom_ad_container {
        position: fixed;
        bottom: -300px;
        width: 100%;
        height: 140px;
        margin: 0px;
        padding: 0px;    
        display: none;
        background-color: #32323e;
        transform-origin: center bottom;
        transition: bottom 0.5s ease-out;
        -webkit-transition: bottom 0.5s ease-out;
        -moz-transition: bottom 0.5s ease-out;
        -ms-transition: bottom 0.5s ease-out;
        -o-transition: bottom 0.5s ease-out;
        align-items: flex-end;
        justify-content: center;
    }