body {
	touch-action: none;
	width: 100vw;
	height: 100vh;
  margin: 0;
  overflow: hidden;
}

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}
@media only screen and (max-width: 590px){
  #info {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 50px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 1; /* TODO Solve this in HTML */
    color:  #ffffff;
  }
  #info img{
    width: 75%;
  }
}

@media only screen and (min-width: 591px) and (max-width: 1000px){
  #info {
    position: absolute;
    top: 40px;
    width: 100%;
    padding-left: 50px;
    box-sizing: border-box;
    text-align: Left;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 1; /* TODO Solve this in HTML */
    color:  #ffffff;
  }
  #info img{
    width: 40%;
  }
}



@media only screen and (min-width: 1001px), print {
  #info {
    position: absolute;
    top: 80px;
    width: 100%;
    padding-left: 50px;
    box-sizing: border-box;
    text-align: Left;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 1; /* TODO Solve this in HTML */
    color:  #ffffff;
  }
}

#menu {
  position: absolute;
  width: 100%;
  bottom: 90px;
  text-align: center;
  z-index: 1; /* TODO Solve this in HTML */
  position: fixed;
}


#menu2 {
  position: absolute;
  width: 100%;
  top: 10px;
  right: 10px;
  text-align: right;
  z-index: 1; /* TODO Solve this in HTML */
}



@media only screen and (max-width: 590px){
  #menu3 {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 130px;
    z-index: 2;
    position: fixed;
  }
  #menu3 button {
    padding: 0;
    border: none;
    background: transparent;
  }
  #menu3 button img {
    display: block;
  }
  #menu3 button:active,
  #menu3 button img {
    position: relative;
  }
  #menu3 button::-moz-focus-inner {
    padding: 0;
    border: none;
  }
}

@media only screen and (min-width: 591px), print {
  #menu3 {
    position: absolute;
    left: 30px;
    bottom: 10px;
    z-index: 2;
    position: fixed;
  }
  #menu3 button {
    padding: 0;
    border: none;
    background: transparent;
  }
  #menu3 button img {
    display: block;
  }
  #menu3 button:active,
  #menu3 button img {
    position: relative;
  }
  #menu3 button::-moz-focus-inner {
    padding: 0;
    border: none;
  }
}

a, button, input, select {
	pointer-events: auto;
}


input[type=range] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 200px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 200px;
  height: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #999999;
  
  border: 0px solid #000101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #999999;
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background: #FFFFFF;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -10px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #999999;
}
input[type=range]::-moz-range-track {
  width: 200px;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #999999;
  border-radius: 25px;
  border: 0px solid #000101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 39px;
  border-radius: 7px;
  background: #999999;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 200px;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #999999;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #999999;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 18px;
  width: 18px;
  border-radius: 18px;
  background: #999999;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #999999;
}
input[type=range]:focus::-ms-fill-upper {
  background: #999999;
}

#loading-screen {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 1;
  transition: 1s opacity;
}

#loading-screen.fade-out {
  opacity: 0;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #C80E47;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #d67291;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #FFFFFF;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}