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: #252525;
  outline: 0px solid rgba(0, 0, 0, 0);
  outline-offset: 3px;
  border-radius: 7px;
  box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.8), 1px 1px 0 0 rgba(255, 255, 255, 0.12);
  height: 14px;
  width: 50%;
  max-width: 50%;
  align-self: center;
  display: block;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 7px;
  transition: width .4s ease-in-out;
  background-color: #FFF;
  border-right: 0px solid #090909;
  width: 100%;
  box-shadow: 
    inset 0 0 0 1px #47127c,
    inset 0 0 0 2px #920db6,
    inset 0 0 0 3px #d708ea,
    inset 0 0 0 4px #e754f5,
    inset 0 0 0 5px #ef9cf7,
    0 1px 6px 3px rgba(215, 8, 234, 0.9),
    0 1px 6px 12px rgba(78, 18, 124, 0.9);
  -webkit-animation: fadeinout 3s linear infinite;
  animation: fadeinout 3s linear infinite;
}

span.hidden {
    display: none !important;
}

@-webkit-keyframes fadeinout {
  50% { box-shadow: 
		inset 0 0 0 1px #47127c,
		inset 0 0 0 2px #920db6,
		inset 0 0 0 3px #d708ea,
		inset 0 0 0 4px #e754f5,
		inset 0 0 0 5px #ef9cf7,
		0 1px 6px 3px rgba(215, 8, 234, 0.3),
		0 1px 6px 12px rgba(78, 18, 124, 0.0.3);
    }
}

@keyframes fadeinout {
  50% { box-shadow: 
		inset 0 0 0 1px #47127c,
		inset 0 0 0 2px #920db6,
		inset 0 0 0 3px #d708ea,
		inset 0 0 0 4px #e754f5,
		inset 0 0 0 5px #ef9cf7,
		0 1px 6px 3px rgba(215, 8, 234, 0.3),
		0 1px 6px 12px rgba(78, 18, 124, 0.3);
    }
}
