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: #65c7ff;
    background-color: #65c7ff;
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    /* fix bug: https://github.com/cocos-creator/2d-tasks/issues/791 */
    /* overflow cannot be applied in Cocos2dGameContainer,
  otherwise child elements will be hidden when Cocos2dGameContainer rotated 90 deg */
    overflow: hidden;
}
#GameCanvas {
    background-color: #65c7ff;
}
#Cocos2dGameContainer {
    position: absolute;
    margin: 0;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    background-color: #06a0f9;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -webkit-box-pack: center;
}
canvas {
    background-color: #06a0f9;
}
a:link,
a:visited {
    color: #65c7ff;
}
a:active,
a:hover {
    color: #65c7ff;
}
p.header {
    font-size: small;
}
p.footer {
    font-size: x-small;
}
#splash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #65c7ff;
    /* background: #171717 url(./splash.f6130.png) no-repeat center; */
    /* background-size: 20%; */
}
#logo {
    position: relative;
    max-width: 256px;
    max-height: 174px;
    min-width: 62.5px;
    min-height: 25px;
    margin-top: -72%;
    margin-left: -76%;
    border-radius:10px;
    border:2px solid #FFF; 
}
div.shadow {
    position: relative;
    /* max-width: 45%;
    max-height: 45%; */
    top: 48%;
    left: 38%;
    overflow: visible;
}
div.powered {
    font-size: 20px;
    color: #ffffff;
    position: relative;
    /* max-width: 45%;
    max-height: 45%; */
    top: 80%;
    /* margin: 0 auto; */
    overflow: visible;
}
.progress-bar {
    font-size: 25px;
    color: #ffffff;
    position: relative;
    top: 50%;
    margin: 0 auto;
}
@keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}