﻿@font-face {
  font-family: "EuclidCircularSB";
  src: url("fonts/EuclidCircularB-Semibold.otf") format("opentype");
}

@font-face {
  font-family: "EuclidCircularB";
  src: url("fonts/EuclidCircularB-Bold.otf") format("opentype");
}

@font-face {
  font-family: "EuclidCircularR";
  src: url("fonts/EuclidCircularB-Regular.otf") format("opentype");
}

html, body {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  height: 100%;
  background-color: #000000;
  overflow: hidden;
  letter-spacing: 1px;
  position: fixed;
  font-family: "EuclidCircularR", sans-serif !important;
}

  body h1, body, h2, body h3, body h4, body h5, body h6 {
    font-family: "EuclidCircularR", sans-serif !important;
    font-weight: normal;
  }

#gameContainer {
  height: 100%;
  background-color: #ffffff;
}

* html #gameContainer {
  height: 100%;
}

#game-webgl {
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  outline-style: none;
  box-shadow: none;
  border-color: transparent;
}

  #game-webgl canvas {
    
  }

#game-layout {
  position: absolute;
  top: 1em;
  left: 1em;
  color: #ffffff;
  font-size: 30pt;
  line-height: 1.5;
}

#metadata {
  font-size: 9pt;
  color: #454545;
  position: absolute;
  bottom: 0.5vw;
  right: 0.5vw;
  z-index: 2000;
}

.game-overlay-screen {
  position: absolute;
  margin: 0 auto;
  width: 75%;
  text-align: center;
  left: 0;
  right: 0;
}

#game-loading-dimmer-screen .loading-info {
  color: #ffffff;
  font-size: 1vw;
  font-weight: 400;
}

#game-loading-dimmer-screen h3 {
  color: #ffffff;
  font-size: 1.3vw;
  font-weight: 400;
}

/*#gLogoSlogan {
  margin: 1em auto 5em auto;
  width: 20.3%;
}

  #gLogoSlogan h4 {
    margin-top: 0.4em;
    color: #ffffff;
    font-size: 1vw;
    font-weight: 400;
  }*/

.layout-onscreen {
  margin-top: 2.5em;
}

#gOverlayStart .layout-onscreen {
  margin-top: 48vh;
}

  .layout-onscreen h3 {
    color: #ffffff;
    font-size: 2.2vw;
    font-weight: 400;
  }

  .layout-onscreen h4 {
    color: #ffffff;
    font-size: 1.25vw;
    font-weight: 400;
  }

  .layout-onscreen.left {
    position: absolute;
    left: 4.4vw;
    bottom: 7vw;
  }

.whiteGlow h3 {
  text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 20px rgba(255,255,255,0.2), 0 0 30px rgba(255,255,255,0.6), 0 0 40px rgba(255,255,255,0.4), 0 0 70px rgba(255,255,255,0.2);
}

.gameleftcolor h3 {
  text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 20px rgba(255,255,255,0.2), 0 0 30px rgba(162,188,9,1.0), 0 0 40px rgba(162,188,9,0.8), 0 0 70px rgba(162,188,9,0.6);
}

.gamerightcolor h3 {
  text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 20px rgba(255,255,255,0.2), 0 0 30px rgba(229,0,124,1.0), 0 0 40px rgba(229,0,124,0.8), 0 0 70px rgba(229,0,124,0.6);
}

  .layout-onscreen.center {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
  }

.layout-onscreen.right {
  position: absolute;
  right: 4.4vw;
  bottom: 7vw;
}

#gMessageCenterCenter {
  margin-top: 14vh;
}

#gOverlayStart, #gOverlayNameInput, #gOverlayHighscore, #game-layout {
  display: none;
}


#qrCode img {
  display: inline!important;
  padding: 1.25vw;
  background-color: #ffffff;
  border-radius: 1vw;
  width: 17vw;
}

#qrArea #qrCode {
  float:right;
  margin: 0 0 0 3em;
}

#qrArea {
  display: inline-block;
  margin-bottom: 3.5em;
}

#highscoreRankings {
  margin-bottom: 4.5vw;
}

#highscoreRankings table {
  width: 100%;
  text-align: left;
  line-height: 1.4;
  font-size: 2.2vw;
  color: #ffffff;
}

  #highscoreRankings table tr td {
    padding: 0.2vw 0.2vw 0.2vw 0.2vw;
  }

  #highscoreRankings table tr.positive td {
    background-color: rgba(255, 255, 255, 0.3);
  }

  #highscoreRankings table tr.tablebreakline.positive td {
    border-style: dashed none none none;
    border-width: 0.1vw;
    border-color: #ffffff;
  }

@keyframes restart-left-animation { /* CSS3 */
  0% {
    transform: translate(0, 0) rotate(90deg);
  }

  16% {
    transform: translate(0, 50px) rotate(90deg);
  }

  55% {
    transform: translate(0, 0) rotate(90deg);
  }

  100% {
    transform: translate(0, 0) rotate(90deg);
  }
}

@-moz-keyframes restart-left-animation { /* Firefox */
  0% {
    transform: translate(0, 0) rotate(90deg);
  }

  16% {
    transform: translate(0, 50px) rotate(90deg);
  }

  55% {
    transform: translate(0, 0) rotate(90deg);
  }

  100% {
    transform: translate(0, 0) rotate(90deg);
  }
}

@-webkit-keyframes restart-left-animation { /* Webkit */
  0% {
    transform: translate(0, 0) rotate(90deg);
  }
  16% {
    transform: translate(0, 50px) rotate(90deg);
  }
  55% {
    transform: translate(0, 0) rotate(90deg);
  }
  100% {
    transform: translate(0, 0) rotate(90deg);
  }
}

@keyframes restart-right-animation { /* CSS3 */
  0% {
    transform: translate(0, 0) rotate(-90deg);
  }

  16% {
    transform: translate(0, 50px) rotate(-90deg);
  }

  55% {
    transform: translate(0, 0) rotate(-90deg);
  }

  100% {
    transform: translate(0, 0) rotate(-90deg);
  }
}

@-moz-keyframes restart-right-animation { /* Firefox */
  0% {
    transform: translate(0, 0) rotate(-90deg);
  }

  16% {
    transform: translate(0, 50px) rotate(-90deg);
  }

  55% {
    transform: translate(0, 0) rotate(-90deg);
  }

  100% {
    transform: translate(0, 0) rotate(-90deg);
  }
}

@-webkit-keyframes restart-right-animation { /* Webkit */
  0% {
    transform: translate(0, 0) rotate(-90deg);
  }

  16% {
    transform: translate(0, 50px) rotate(-90deg);
  }

  55% {
    transform: translate(0, 0) rotate(-90deg);
  }

  100% {
    transform: translate(0, 0) rotate(-90deg);
  }
}

.restart-image {
  width: 4.1vw;
  margin-top: -0.7vw;
}

.restart-left {
  float: left;
  animation: restart-left-animation 2s infinite; /* CSS3 */
  -moz-animation: restart-left-animation 2s infinite; /* Firefox */
  -webkit-animation: restart-left-animation 2s infinite; /* Webkit */
}

.restart-right {
  float: right;
  animation: restart-right-animation 2s infinite; /* CSS3 */
  -moz-animation: restart-right-animation 2s infinite; /* Firefox */
  -webkit-animation: restart-right-animation 2s infinite; /* Webkit */
}

#highscore-1 {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 1.5em;
  padding: 1.5em;
}