/*** VERSION: 1.9.0 ***/
/*** SHA: 8317788ed8c05a30912bd94745e35efd09c37f75 ***/
/** --- Original game.css changes --- **/
/* --- Temp fix for bootstrap --- */
body {
    background: none !important;
}
/* --- Fix for firefox highlighting game canvas --- */
#gameCanvas {
       -webkit-user-select: none !important;  /* Chrome all / Safari all */
       -moz-user-select: none !important;     /* Firefox all */
       -ms-user-select: none !important;      /* IE 10+ */
       user-select: none !important;          /* Likely future */
}

/** --- End game.css changes --- **/ 

#viewporter {
    position: fixed !important;
}

/* Preloader Background */
.preloaderBackground #splash-screen {
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    position: absolute;
	left: 3%;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    opacity: 0;
}

.animationInClass {
    -webkit-animation: fadeIn 1s forwards;
    animation: fadeIn 1s forwards
}

.animationOutClass {
    -webkit-animation: fadeOut 1s backwards;
    animation: fadeOut 1s backwards
}

@media only screen and (min-height: 768px) and (min-width:1024px) {
    .preloaderBackground #splash-screen.game {
        position:fixed;
        background-size: contain !important;
        background-position: center;
        margin: auto;
        height: 101% !important;
        width: 101% !important
    }

	.preloaderBackground #splash-screen {
		left: 0;
	}
}

@media only screen and (max-height: 420px) {
    .preloaderBackground #splash-screen {
        background-size: contain;
        background-position: center;
		left: 0;
    }

	.disclaimer {
		background-size: contain;
		background-position: center;
	}
}

@media only screen and (max-height: 568px) and (max-width:320px) {
    .preloaderBackground #splash-screen {
        background-size: contain;        
    }
	
	.disclaimer {
		background-size: contain;
		background-position: center;
	}

}

/* Loading Bar  */
.meter-wrap {
    position: relative;
    left: 25%;
    top: 80%;
    width: 50%;
    height: auto;
    opacity: 0;
    -webkit-animation: fadeIn 1s forwards;
    animation: fadeIn 1s forwards
}

.meter-wrap-bg-container,
.meter-bg-container {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;    
    top: 0;
}

.meter-bg-container {
    position: relative;
}

.meter-bg-container::after {
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    left: -3px;
    right: 0;
    bottom: 0;
    background: grey;
    border-radius: 3px;
    -webkit-animation: gradient-anim 1s ease infinite;
    -moz-animation: gradient-anim 1s ease infinite;
    -o-animation: gradient-anim 1s ease infinite;
    animation: gradient-anim 1s ease infinite;
}

.meter-wrap-bg-left,
.meter-wrap-bg-bar,
.meter-wrap-bg-right {
    background-color: grey;
    border-bottom: 0px solid #FFF;
    border-top: 0px solid #FFF;
    position: relative;
    float: left;
    height: 100%;
    top: -100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.meter-wrap-bg-left {
    border-left: 0px solid #FFF;
    width: 3px;
    right: 3px;
    -moz-border-radius: 12px 0px 0px 12px;
    -webkit-border-radius: 12px 0px 0px 12px;
    border-radius: 12px 0px 0px 12px;
    height: 100%;
    top: 0px;
}

.meter-wrap-bg-bar {
    position: relative;
    float: left;
    width: 100%;
}

.meter-wrap-bg-right {
    -moz-border-radius: 0px 12px 12px 0px;
    -webkit-border-radius: 0px 12px 12px 0px;
    border-radius: 0px 12px 12px 0px;
    border-right: 0px solid #FFF;
    width: 3px;
    margin-right: -3px;
    height: 100%;
    top: -6px;
}

.meter-value {
    height: 6px;
    overflow: visible;
    margin: 0;
    width: 0;
}

.meter-bg-left,
.meter-bg-bar,
.meter-bg-right {
    position: relative;
    float: left;
    height: 100%;
    top: -100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.meter-bg-left {
    width: 3px;
    right: 3px;
    height: 100%;
    top: 0px;
    -webkit-border-radius: 3px 0px 0px 3px;
    border-radius: 3px 0px 0px 3px;
}

.meter-bg-right {
    width: 3px;
    height: 100%;
    margin-right: -3px;
    -webkit-border-radius: 0px 3px 3px 0px;
    border-radius: 0px 3px 3px 0px;
}

.meter-bg-bar {
    position: relative;
    float: left;
    width: 100%;
}

.meter-text-value {
    display: none;
    visibility: hidden;
}

#preLoaderProgress {
    width: 1%;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}