.game .game-container *, .game .game-container *:before, .game .game-container *:after {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.game .game-container  input, .game .game-container input:before, .game .game-container  input:after {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.game .game-container ::selection { background: transparent;color:inherit; }
.game .game-container ::-moz-selection { background: transparent;color:inherit; }
.game canvas{
    image-rendering:-o-crisp-edges;
    image-rendering:-webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
    -ms-touch-action: none;
}

.game .ani_hack{
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* mobile webkit */
}

/***************FONTS*******************/
@font-face {
    font-family: 'comfortaa';
    src: url('../game/css/comfortaa-bold-webfont.eot');
    src: url('../game/css/comfortaa-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../game/css/comfortaa-bold-webfont.woff2') format('woff2'),
         url('../game/css/comfortaa-bold-webfont.woff') format('woff'),
         url('../game/css/comfortaa-bold-webfont.ttf') format('truetype'),
         url('../game/css/comfortaa-bold-webfont.svg#comfortaa') format('svg');
    font-weight: normal;
    font-style: normal;

}

.game .check-fonts{
    position: fixed;
    opacity:0;
}

.game .check-font-1{
    font-family: 'comfortaa';
}
.game #canvas-game {
    position: relative;
    margin: 0 auto;
	height: auto !important;
    max-height: 80vh !important;
    width: auto !important;
	max-width: 100% !important;
	display: block;
	top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

/* Orientation */
.game .orientation-msg-container{
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    background-color: #000;
}

.game .orientation-msg-text{
    font-size: 40px;
    font-family: "Arial";
    color: #fff;
    text-align: center;
    width: 80%;
    
    position: fixed;
    top: 50%;
    -webkit-transform: translate(15%,-50%);
    -moz-transform: translate(15%,-50%);
    -ms-transform: translate(15%,-50%);
    transform: translate(15%,-50%);
    
        
}

@media (max-width: 767px) {
    .game .orientation-msg-text{    
        font-size: 30px;  
    }
}


@media (max-width: 500px) {
    .game .orientation-msg-text{    
        font-size: 30px;  
    }
}