body {
  cursor: default;
  padding: 0;
  border: 0;
  margin: 0;

  text-align: center;
  background-color: black;
  font-family: Helvetica, Verdana, Arial, sans-serif;
}

input, textarea {
    position: fixed !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
	
}

input[type="password"] {
	font-size: 34px !important;
}

input[type="password"]:focus {
    font-size: 20px !important;
}

#fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: transparent; /* Invisible but clickable */
    cursor: pointer;
}

.fullscreen-active #fullscreen-overlay {
    display: none; /* Hide when in fullscreen mode */
}

.loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #fff;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 0.35s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body,
canvas,
div {
  outline: 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 */
}

#Cocos2dGameContainer {
  position: absolute;
  margin: 0;
  overflow: hidden;
  left: 0px;
  top: 0px;
}

canvas {
  width:100%;
  height:100%;
  background-color: rgba(0, 0, 0, 0);
}

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

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

p.header {
  font-size: small;
}

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

#splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  background-size: 100% 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.progress-bar {
  background-color: #1a1a1a;
  position: absolute;
  left: 50%;
  top: 80%;
  height: 5px;
  width: 300px;
  margin: 0 -150px;
  border-radius: 5px;
  box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: width 0.4s ease-in-out;
  background-color: #3dc5de;
}

.stripes span {
  background-size: 30px 30px;
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );

  animation: animate-stripes 1s linear infinite;
}

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

h1 {
  color: #444;
  text-shadow: 3px 3px 15px;
}

#GameDiv {
  width: 800px;
  height: 450px;
  margin: 0 auto;
  background: black;
  position: relative;
  border: 3px solid black;
  border-radius: 6px;
  box-shadow: 0 5px 40px #333;
}
