html {
  -ms-touch-action: none;
  width: 100% !important;
  height: 100% !important;
}
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body, canvas, div {
  display: block;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

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

}

body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;

  cursor: default;
  color: #888;
  background-color: #333;

  text-align: center;
  font-family: Helvetica, Verdana, Arial, sans-serif;

  display: flex;
  flex-direction: column;
  background: transparent;
}

#Cocos2dGameContainer {
  position: absolute;
  margin: 0;
  overflow: hidden;
  left: 0px;
  top: 0px;

  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
}
.gameLoading {
  position: absolute;
  margin: -290px -250px;
  padding:0;
  top:50%;
  left:50%
}
.gameLoading  ul {
  margin:0;
  padding:0;
  position: relative;
  left: 200px;
}
.gameLoading  span {
  color:#FFF;
  text-align:center;
  display:block;
  margin-top: 50px;
  margin-left: 20px;
}
.gameLoading  li {
  list-style:none;
  float:left;
  border-radius:15px;
  width:15px;
  height:15px;
  background:#FFF;
  margin:5px 0 0 10px;
}
.gameLoading  li .ball, .gameLoading li .unball {
  background-color:#2187e7;
  background-image:-moz-linear-gradient(90deg,#2187e7 25%,#a0eaff);
  background-image:-webkit-linear-gradient(90deg,#2187e7 25%,#a0eaff);
  width:15px;
  height:15px;
  border-radius:50px
}
.gameLoading li .ball {
  transform:scale(0);
  -moz-transform:scale(0);
  -webkit-transform:scale(0);
  animation:showDot 1s linear forwards;
  -moz-animation:showDot 1s linear forwards;
  -webkit-animation:showDot 1s linear forwards
}
.gameLoading  li .unball {
  transform:scale(1);
  -moz-transform:scale(1);
  -webkit-transform:scale(1);
  animation:hideDot 1s linear forwards;
  -moz-animation:hideDot 1s linear forwards;
  -webkit-animation:hideDot 1s linear forwards
}
@keyframes showDot {
  0% { transform:scale(0,0) }
  100% { transform:scale(1,1) }
}
@-moz-keyframes showDot {
  0% {-moz-transform:scale(0,0)}
  100%{-moz-transform:scale(1,1)}
}
@-webkit-keyframes showDot {
  0% {-webkit-transform:scale(0,0)}
  100% {-webkit-transform:scale(1,1)}
}
@keyframes hideDot {
  0% {transform:scale(1,1)}
  100% {transform:scale(0,0)}
}
@-moz-keyframes hideDot {
  0% {-moz-transform:scale(1,1)}
  100% {-moz-transform:scale(0,0)}
}
 @-webkit-keyframes hideDot {
   0% {-webkit-transform:scale(1,1)}
   100% {-webkit-transform:scale(0,0)}
 }
