html {
  -ms-touch-action: none;
  margin: 0;
  padding: 0;
}

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);
}

#content {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
  background-color: #000;
}

#scroll-mask {
  background-color: rgba(0, 0, 0, 1);
  display: none;
  pointer-events: visible;
  width: 200%;
  height: 200%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: show;
  touch-action: manipulation;
}

#mask-image-container {
  width:50%;
  height: 50%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

#mask-image {
  height: 40%;
  margin: auto;
}

#click-target {
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 20;
  pointer-events: visible;
  background-color: rgba(0,0,0,0);
  position: fixed;
  overflow: show;
  top: 0;
  bottom: 0;
  right: 0;
  left: 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: #000;

  text-align: center;
  font-family: Helvetica, Verdana, Arial, sans-serif;

  display: -webkit-flex;
  -webkit-flex-direction: column;
  display: flex;
  flex-direction: column; 
}

#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;
}

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;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #171717;
  display: -webkit-box;   /* iOS 6-, Safari 3.1-6 */
  display: -moz-box;      /* Firefox 2-21 */
  display: -ms-flexbox;   /* IE 10+ */
  display: -webkit-flex;  /* Chrome 4-20 */
  display: flex;          /* Chrome 21+, Firefox 20+, Opera 12.1 */

  /* vertically centre with old flexbox */
  -webkit-align-items: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;

  /* vertically centre with new flexbox */
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#splash-image {
  height: 50%;
  align-self: center;
  display:block;
}

.splash-info {
  color: #fff;
  font-weight: bold;
  align-self: center;
  text-align: center;
  display:block;
}

/*.progress-bar {
    background-color: #1a1a1a;
    position: absolute;
    left: 25%;
    top: 80%;
    height: 15px;
    padding: 5px;
    width: 50%;
    margin: 0 -175px;         
    border-radius: 5px;
    box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;           
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
    transition: width .4s 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 1s linear infinite;             
}

@keyframes animate-stripes {
    0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}*/


.progress-bar {
  background: #252525;
  border: 1px solid #000;
  border-radius: 8px;
  box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.8), 1px 1px 0 0 rgba(255, 255, 255, 0.12);
  height: 16px;
  width: 50%;
  max-width: 50%;
  align-self: center;
  display: block;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
  transition: width .4s ease-in-out; 
  background-color: #34c2e3;    
}

span.hidden {
    display: none !important;
}

.stripes span {
  background-color: #A444B1;
  border-right: 1px solid #090909;
  border-radius: 7px;
  height: 100%;
  width: 100%;
  background-size: 100% 100%, 20px 20px, 100% 100%;
  background-image:
      linear-gradient(to bottom,
                      rgba(255, 255, 255, 0.33) 0,
                      rgba(255, 255, 255, 0.08) 50%,
                      rgba(0, 0, 0, 0.25) 50%,
                      rgba(0, 0, 0, 0.1) 100%),
      linear-gradient(45deg,
                      rgba(255, 255, 255, 0.16) 25%,
                      rgba(0, 0, 0, 0) 25%,
                      rgba(0, 0, 0, 0) 50%,
                      rgba(255, 255, 255, 0.16) 50%,
                      rgba(255, 255, 255, 0.16) 75%,
                      rgba(0, 0, 0, 0) 75%,
                      rgba(0, 0, 0, 0));
       /*linear-gradient(to right, #5A377F, #A444B1); */
  box-shadow: inset 0 1px 1px 0px rgba(255, 215, 215, 0.5),
              inset 0 -1px 1px 0px rgba(255, 255, 255, 0.25),
              1px 1px 3px 0 rgba(0,0,0,0.33);
  animation: animate-stripes 1s linear infinite;    
}

@keyframes animate-stripes {
  0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}