html {
    -ms-touch-action: none;
}

body {
    display: block;
    outline: none;
    /* -webkit-tap-highlight-color: rgba(0, 84, 124, 255); */
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    background-color: #00547c;
}
canvas,
div {
    display: block;
    outline: none;
    /* -webkit-tap-highlight-color: rgba(0, 84, 124, 255); */
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    /* background-color: #00547c; */
}

/* Remove spin of input type number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Helvetica, Verdana, Arial, sans-serif;
}

#GameCanvas {
    background-color: #00547c;
    visibility: hidden;
}

#Cocos2dGameContainer {
    position: absolute;
    margin: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    /* background-color: #00547c; */
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -webkit-box-pack: center;
}

@keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}

@keyframes bounce-5 {
    0% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1.15, 1.15);
    }
    50% {
        transform: scale(0.9, 0.9);
    }
    100% {
        transform: scale(1, 1);
    }
}
