html {
    -ms-touch-action: none
}

body,
canvas,
div {
    display: block;
    outline: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: default;
    color: #888;
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

#Cocos2dGameContainer {
    position: absolute;
    margin: 0;
    overflow: hidden;
    left: 0;
    top: 0;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -webkit-box-pack: center
}

canvas {}

a:link,
a:visited {
    color: #666
}

a:active,
a:hover {
    color: #666
}

p.header {
    font-size: small
}

p.footer {
    font-size: x-small
}

#loading-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
    background-color: #fff
}

#loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 40px
}

#loading span {
    display: inline-block;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background: #90ee90;
    -webkit-animation: load 1s ease infinite
}

@-webkit-keyframes load {
    0%,
    100% {
        height: 40px;
        background: #90ee90
    }
    50% {
        height: 70px;
        margin: -15px 0;
        background: #add8e6
    }
}

#loading span:nth-child(2) {
    -webkit-animation-delay: .2s
}

#loading span:nth-child(3) {
    -webkit-animation-delay: .4s
}

#loading span:nth-child(4) {
    -webkit-animation-delay: .6s
}

#loading span:nth-child(5) {
    -webkit-animation-delay: .8s
}