html {
  -ms-touch-action: none;
}

body, canvas, div {
  /* position: fixed; */
  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: #888;
  background-color: rgb(0, 0, 0);

  text-align: center;
  font-family: Helvetica, Verdana, Arial, sans-serif;

  display: flex;
  flex-direction: column;
}

#Cocos2dGameContainer {
  /*position: fixed;*/
  margin: 0;
  /*overflow: hidden;*/
  left: 0px;
  top: 0px;

  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-align: center;
  -webkit-box-pack: center;
}

canvas {
  background-color: rgba(0, 0, 0, 0);
}

a:link, a:visited {
  color: #666;
}

a:active, a:hover {
  color: #666;
}

p.header {
  font-size: small;
}

p.footer {
  font-size: x-small;
}

.progress-text {
    color: #dfdfdf;
    text-shadow: 1px 1px gray;
    position: fixed;
    top: 76.5%;
    width: 100%;
    height: 100%;
    font-size: 120%;
    overflow: auto;
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
    transition: width .2s ease-in-out; 
    background-color: #34c2e3;    
}

.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 .5s linear infinite;             
}

.mask {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background-color: black;
}

.LogoPage {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 100vh;
  width: 100vw;
  max-height: 1600px;
  max-width: 640px;
  height: fit-content;
  overflow: hidden;
}

.LogoPage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.LogoPage .Logo {
  width: 100%;
  position: absolute;
  top: 19%;
}

.LogoPage .Logo img {
  width: 85%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.LogoPage .Info {
  width: 100%;
  position: absolute;
  top: 34%;
}

.LogoPage .Info img {
  width: 85%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.LogoPage .bar-group {
  width: 100%;
  height: 15%;
  position: absolute;
  bottom: 13%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.LogoPage .bar-group .sLogo {
  width: 40%;
  padding-bottom: 2%;
}

.LogoPage .bar-group .progress-bar {
  background-color: #1d1d1d;
  width: 50%;
  height: 10%;
  border-radius: 5px;
  box-shadow: 0 1px 5px #000 inset;
}

.LogoPage .bar-group .progress-text {
  color: #dfdfdf;
  text-shadow: 1px 1px gray;
  width: 100%;
  font-size: 2vh;
  padding-top: 2%;
}/*# sourceMappingURL=style-test.css.map */

/* .LogoPage {
  position: fixed;
  background-color: black;
  width:100%;
  height:100%;
  overflow: auto;
}

.Layer{
  width: 100%;
  height: 100%;
  position: fixed;
  background: #171717 url(./bg.png) no-repeat center;
  background-size: contain;
}

.Logo{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 16%;
}

.Logo img{
  width: 40vh;
  height: auto;
  vertical-align: middle;
  background-size: contain;
}

.sLogo{
  width: 100%;
  height: 100%;
  top: 75.5%;
  position: fixed;
}

.sLogo img{
  width: 50px;
  height: 20px;
  vertical-align: middle;
}

#progress-bg{
  position: relative;
  background: no-repeat center;
  width:100%;
  height: 100%;
  vertical-align: middle;
}

.progress-bar {
  background-color: #1a1a1a;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 20%);
  top: 78%;
  height: 12px;
  padding: 2px;
  border-radius: 5px;
  box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;     
  min-width: 200px;   
  max-width: 250px;     
} */

@keyframes animate-stripes {
    0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}

