	/* 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;
	}

	.container {
	    position: relative;
	    display: grid;
	    justify-content: center;
	    width: 100vw;
	    height: 100vh;
	    box-sizing: border-box;
	}

	.canvas-app-container {
	    position: relative;
	    display: flex;
	    height: 100%;
	    align-items: center;
	    justify-content: center;
	    overflow: hidden;
	    background: rgb(66, 64, 85);
	    box-shadow: 0px 0px 15px 3px black;
	}

	.canvas-app-canvas-container {
	    width: 100%
	}

	.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;
	}

	.border-progress {
	    background: url("splash/border_loading.png");
	    background-repeat: no-repeat;
	    width: 408px;
	    height: 120px;
	}

	.button-progress-container {
	    display: flex;
	    justify-content: center;
	    width: 435px;
	    height: 120px;
	}

	.button-progress {
	    background: url("splash/button_loading.png");
	    background-repeat: no-repeat;
	    width: 384px;
	    height: 91px;
	    margin-left: 10px;
	    margin-top: 11px;
	    opacity: 0;
	    margin-right: auto;
	}

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

	.splash_container {
	    position: absolute;
	    z-index: 10;
	    margin: 0;
	    padding: 0;
	    width: 100%;
	    height: 100%;
	    display: flex;
	    align-items: center;
	    flex-direction: column;
	    justify-content: center;
	    background: #2B344B;
	    background-image: url("splash.png");
	    background-size: auto 51%;
	    background-repeat: no-repeat;
	    background-position: center 48%;
	    pointer-events: none;
	}

	.bottom_ad_container {
	    position: fixed;
	    bottom: -300px;
	    width: 100%;
	    height: 140px;
	    margin: 0px;
	    padding: 0px;
	    display: none;
	    background-color: #262D3F;
	    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;
	}
