	/* 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%;
        min-width:100%;
        height:100%;
        width: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%;
    }

    .canvas-app-canvas{
    }

    div {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    body {
        position: fixed; /* Prevent overscroll */
        background-color: rgb(66, 64, 85);
    }

    .logger{
        background-color: rgba(82, 79, 79, 1);
        width:200px;
        font-size: xx-small;
        color:white;
        position: absolute;
        z-index: 999;
    }
    
    .background-part {
        height: 100%;
        width:  100%;
        background-image: url("bg_1.png");
        background-size: auto 100%; 
        background-position: top left;
        background-repeat: repeat-x;
        pointer-events: none;
        margin: 0;
        padding: 0;
        position: absolute;
        z-index: -1;
    }
    
    .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-image: linear-gradient( #613290 6%, #00ab98 55%);
        
    }

    .animate_opacity{
        -webkit-transition: opacity 1s ease-in-out;
        -moz-transition: opacity 1s ease-in-out;
        -ms-transition: opacity 1s ease-in-out;
        -o-transition: opacity 1s ease-in-out;
    }

    .animate_position {
        transition: top 0.8s ease-out;
        -webkit-transition: top 0.8s ease-out;
        -moz-transition: top 0.8s ease-out;
        -ms-transition: top 0.8s ease-out;
        -o-transition: top 0.8s ease-out;
    }

    .splash_content{
        position: absolute;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        z-index: 100;
    }

    .splash_title {
        width: 400px;
        height: 50px;
        padding-top: 150px;
    }

    .splash_header_text{
        position: relative;
        width: 400px;
        top: 0px;
    }

    .whirl_spinner {
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        -webkit-transition: opacity 1s ease-in-out, transform 1.8s ease-out;
        -moz-transition: opacity 1s ease-in-out, transform 1.8s ease-out;
        -ms-transition: opacity 1s ease-in-out, transform 1.8s ease-out;
        -o-transition: opacity 1s ease-in-out, transform 1.8s ease-out;
    }

    .splash_spiner{
        padding: 70px;
        animation: rotate 4s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        z-index: 5;
    }

    .clock_icon {
        position: relative;
        top : -350px;
        left : 200px;
    }

    .splash_font {
        text-align: center;
        font-size: 36px;
        font-family: "VAG World Bold";
        color: rgb(255, 255, 255);
    }

    .star_space {
        position: absolute;
        top: 50px;
        left: 0px;
        animation: blink 1.9s;
        z-index: 30;
        transform: scale(0);
        opacity: 0;
    }

    .star_background {
        position: absolute;
   
        z-index: 5;
    }

    .bottom_ad_container {
        position: fixed;
        bottom: -300px;
        width: 100%;
        height: 140px;
        margin: 0px;
        padding: 0px;    
        display: none;
        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;
    }


    .background_color {
        background-color: #00344a;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
      }

      @keyframes blink {
        0%  {
            transform: scale(0) rotate(0deg);
            opacity: 0;
        }
   
        50% {
            transform: scale(1)  rotate(0deg);
            opacity: 1;
        }
        100% {
            transform: scale(0) rotate(72deg);
            opacity: 0;
        }
      }