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: #101010;
  background-color: #101010;
  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: #101010;
}

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

canvas {
  background-color: #101010;
}

a:link,
a:visited {
  color: #101010;
}

a:active,
a:hover {
  color: #101010;
}

p.header {
  font-size: small;
}

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

#splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: #101010; */
  background-image: url(splash.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

#logo {
  position: relative;
  max-width: 250px;
  max-height: 100px;
  min-width: 62.5px;
  min-height: 25px;
  margin-top: -72%;
  margin-left: -76%;
}

div.shadow {
  position: relative;
  /* max-width: 45%;
    max-height: 45%; */
  top: 48%;
  left: 38%;
  overflow: visible;
}

.progress-bar {
  background-color: #00547c;
  position: relative;
  top: 70%;
  height: 1.25%;
  /* height: 15px; */
  padding: 5px;
  width: 100%;
  max-width: 110px;
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgb(133, 188, 247) inset, 0 1px 0 rgb(26, 62, 70);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgb(74, 155, 241) inset;
  transition: width 0.4s ease-in-out;
  background-color: #076fa0;
}

.stripes span {
  background-size: 30px 30px;
  background-image: linear-gradient(
    135deg,
    rgb(71, 184, 245) 25%,
    transparent 25%,
    transparent 50%,
    rgb(3, 183, 248) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  animation: animate-stripes 0.4s linear infinite;
}

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