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

  overflow: hidden;
}

/* 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: black;
  background-color:black;

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

  display: flex;
  flex-direction: column;
}

canvas {
  background-color: rgba(0, 0, 0, 0);
}

#GameDiv, #Cocos3dGameContainer, #GameCanvas {
  width: 100%;
  height: 100%;
}



.progress-bar {

  /* position: absolute;
  left: 40%;
  top: 75%;
  height: 10px;
  margin: auto;
  width: 20%;
  border-radius: 20px;
  border: 5px solid #c69070;
  box-shadow: 0 10px 5px #c69070 inset, 0 1px 0 #6f412d; */

  /* background: url(progressBg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; */

  position: absolute;
  top: 70%;
  width: 300px;
  height: 19px;
  background: url(progressBg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
  transform: translate(-50%, -50%);

  padding: 0 7px;
}

.icon-loading {
  position: absolute;
  top: 65%;
  width: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-loading {
  position: absolute;
  left: 27.5%;
  top: 40%;
  width: 45%;
}

.progress-bar span {

  /* display: block;
  height: 100%;
  border-radius: 3px;
  background-color: #29c159; */

  /* display: block;
  height: 100%;
  border-radius: 3px;
  transition: width .4s ease-in-out;
  background: url(progressbar.png);
  background-position: center;
  background-repeat: no-repeat; */

  height: 10px;
  background: url(progressbar.png);
  background-repeat: no-repeat;
  display: block;
  margin-top: 5px;
  background-size: cover;
}

.background {
  /* height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */

  height: auto;
  width: 100%;
  position: absolute;
  display: block;
  bottom: 0;
  min-height: 100%;
}

.logo {
  min-width: 350px;
  max-width: 600px;
  width: 50%;
  /* height: 250px; */
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .stripes span {
  background-size: 30px 30px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                      transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                      transparent 75%, transparent);            
  
  animation: animate-stripes 1s linear infinite;             
}

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

