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

body,
canvas,
div {
    display: block;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 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: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: default;
    color: #00547c;
    background-color: #00547c;
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

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

#splash {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #00547c;
    margin-top: -150px;
    margin-left: -100px;
}

.btn {
    position: fixed;
    margin-top: 20px;
    margin-left: 35px;
    width: 140px;
    height: auto;
    animation-duration: 0.5s;
    animation-name: bounce-5;
    animation-timing-function: ease;
    display: none;
}

#logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}
#loading {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    color: white;
    margin-top: 20px;
    font-size: 25px;
    margin-left: 8%;
    text-align: left;
    font-weight: bold;
    align-items: center;
}
#Progress {
    width: 100%;
    margin-top: 20px;
    background-color: #00547c;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgb(133, 188, 247) inset, 0 1px 0 rgb(26, 62, 70);
}

#progressBar {
    width: 1%;
    height: 18px;
    background-color: rgb(74, 155, 241);
    text-align: center;
    line-height: 18px;
    color: white;
}

@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);
    }
}
