#admin-screen {
  position: absolute;
  overflow: hidden;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-family: "verdana";
}
#admin-server-output {
  position: absolute;
  bottom: 0;
  height: 20%;
  left: 0;
  right: 0;
  background-color: #A0A0A0;
  overflow-y: auto;
  border: 1px solid black;
  color: black;
  font-family: "Verdana";
  font-size: 3vh;
  text-align: left;
  padding-left: 1vh;
  padding-right: 1vh;
  line-height: 100%;
}
#admin-server-output hr {
  margin: 1px;
}
.admin-board {
  position: absolute;
  top: 2vmin;
  height: 50vmin;
  left: 2vmin;
  width: 50vmin;
  background-color: green;
}
#admin-player-list {
  position: absolute;
  top: 10vh;
  bottom: 20%;
  left: 53vmin;
  right: 1%;
  background-color: black;
  overflow-y: auto;
  font-family: "Arial";
  font-size: 20px;
  text-align: center;
}
#admin-player-list div:nth-child(odd) {
  background-color: #202020;
}
#admin-player-list div:nth-child(even) {
  background-color: #302030;
}
#admin-player-list .player-connection {
  float: left;
  width: 100%;
}
#admin-player-list .player-connection .connectionid {
  float: left;
  width: 4vmax;
  height: 40px;
  color: white;
  line-height: 200%;
  background-color: inherit;
}
#admin-player-list .player-connection .type {
  float: left;
  width: 20vmax;
  height: 40px;
  color: white;
  line-height: 200%;
  text-align: left;
  margin-left: 2vmax;
  background-color: inherit;
}
#admin-player-list .player-connection .boot {
  float: left;
  width: 6vmax;
  height: 40px;
  background-image: url("img/boot.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: inherit;
}
.admin-player-connection-template {
  display: none;
}
#admin-game-info {
  position: absolute;
  top: 10vh;
  left: 1vmin;
  width: 52vmin;
  bottom: 28%;
  overflow-y: auto;
}
#admin-game-info .setting-item-template {
  display: none;
}
#admin-game-info .setting-list-template {
  display: none;
}
#admin-game-info .setting-select-template {
  display: none;
}
#admin-game-info .setting-item {
  height: 5vh;
  width: 100%;
  font-size: 2vh;
}
#admin-game-info .setting-item .heading {
  display: inline-block;
  vertical-align: top;
  width: 45%;
  height: 5vh;
  border-right: 1px solid black;
  text-align: right;
  padding-right: 1vw;
  line-height: 80%;
}
#admin-game-info .setting-item .value {
  display: inline-block;
  width: 40%;
  height: 80%;
}
#admin-game-info .setting-item .valuelist-container {
  display: inline-block;
  width: 40%;
  height: 100%;
  min-height: 5vh;
}
#admin-game-info .setting-item .valuelist-container .action {
  height: 3vh;
}
#admin-game-info .setting-item .valuelist-container .action .button {
  height: 80%;
  width: 15%;
  float: left;
  text-align: center;
  border: 1px solid black;
  border-radius: 25%;
  cursor: pointer;
}
#admin-game-info .setting-item .valuelist-container .action .newentry {
  float: right;
  width: 78%;
}
#admin-game-info .setting-item .valuelist {
  display: inline-block;
  width: 100%;
}
#submit-settings {
  position: absolute;
  left: 1vmin;
  width: 51vmin;
  height: 6%;
  bottom: 21%;
  border: 2px solid black;
  border-radius: 1em;
  font-size: 4vh;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
#admin-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  color: black;
  font-family: "verdana";
  text-align: left;
  background-color: #e0e0e0;
  font-size: 2.3vh;
}
#admin-header .text-line {
  height: 2.5vh;
  margin-left: 2vw;
  line-height: 100%;
}
#admin-header .game-action {
  height: 2vh;
  width: 16vh;
  text-align: center;
  margin-left: 3vw;
  pointer-events: all;
  cursor: pointer;
  line-height: 100%;
  font-size: 2vh;
  border: 1px solid black;
  border-radius: 50vh;
  color: green;
}
#index-page {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/bubbles_background.png");
  background-size: auto 100%;
  background-position: center center;
  color: #173044;
  font-family: "HelveticaNeueBlack";
  text-align: center;
  overflow-y: auto;
}
#index-page input[type=number]::-webkit-inner-spin-button,
#index-page input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#index-page a {
  position: relative;
  text-decoration: none;
  left: 0;
  right: 0;
  height: 4vh;
  font-size: 4vh;
  line-height: 100%;
  cursor: pointer;
  color: #173044;
  line-height: 130%;
  -webkit-transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -ms-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}
#index-page a:focus,
#index-page a:active,
#index-page a:hover {
  outline: 0;
}
#index-page a:hover {
  color: #284199;
}
#index-page .logo {
  height: 50vh;
  width: 100%;
  background-image: url("img/logo.png");
  background-position: center center;
  background-size: auto 110%;
  background-repeat: no-repeat;
  -webkit-user-select: none;
  cursor: pointer;
}
@media screen and (max-aspect-ratio: 0.67164179) {
  #index-page .logo {
    background-size: 100% auto;
  }
}
#index-page .title-heading {
  margin-top: 10vh;
  margin-bottom: 3%;
  left: 0;
  right: 0;
  height: 7vh;
  font-size: 6vh;
  line-height: 100%;
}
#index-page .other-actions {
  left: 0;
  right: 0;
  height: 4vh;
  font-size: 4vh;
  line-height: 100%;
  margin-bottom: 2vh;
  -webkit-user-select: none;
  cursor: pointer;
}
#index-page .text-entry {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 40vh;
  height: 5vh;
  font-size: 3.5vh;
  text-align: center;
  color: #4B565B;
  margin-top: 2vh;
  border-radius: 1vh;
  border: solid 0.08em #4B565B;
  font-family: "HelveticaNeueBold";
}
#index-page .blink-text {
  animation: blink-in-out 2s linear infinite;
  -webkit-animation: blink-in-out 2s linear infinite;
}
#index-page .button-area {
  margin-top: 2vh;
  left: 0;
  right: 0;
  height: 7vh;
  white-space: nowrap;
}
#index-page .button-area div:nth-child(1) {
  text-align: left;
}
#index-page .button-area div:nth-child(2) {
  text-align: right;
}
#index-page .action-button {
  display: inline-block;
  margin-left: 5.5vh;
  margin-right: 5.5vh;
  width: 14vh;
  height: 100%;
  line-height: 130%;
  font-size: 7vh;
  -webkit-user-select: none;
  cursor: pointer;
}
#index-page .action-button:hover {
  color: #284199;
}
#index-page .spacer {
  left: 0;
  right: 0;
  height: 8vh;
}
#index-page .create-game-container {
  display: none;
  width: 100%;
}
#index-page .create-game {
  width: 40vh;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 6vh;
  color: white;
  border: 1px solid white;
  border-radius: 1vh;
  font-size: 4vh;
  line-height: 150%;
  -webkit-user-select: none;
  cursor: pointer;
  background-color: #181818;
  margin-bottom: 1vh;
}
.templates {
  display: none;
}
@keyframes blink-in-out {
  0% {
    color: rgba(64, 64, 64, 0);
  }
  30% {
    color: #404040;
  }
  100% {
    color: rgba(64, 64, 64, 0);
  }
}
@-webkit-keyframes blink-in-out {
  0% {
    color: rgba(64, 64, 64, 0);
  }
  30% {
    color: #404040;
  }
  100% {
    color: rgba(64, 64, 64, 0);
  }
}
#account-root {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  color: white;
  font-family: "HelveticaNeueBlack";
  overflow: auto;
}
#account-root .account-page {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
}
#account-root .title {
  margin-top: 1em;
  width: 100%;
  height: 6%;
  text-align: center;
  line-height: 100%;
  background-color: rgba(0, 0, 255, 0.3);
}
#account-root .error-msg {
  margin-top: 1em;
  margin-bottom: 1em;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 4%;
  border: solid 1px red;
  line-height: 120%;
  color: red;
  text-align: center;
  font-family: Arial;
  border-radius: 0.2em;
  opacity: 0;
}
#account-root .success-msg {
  margin-top: 1em;
  margin-bottom: 1em;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 4%;
  line-height: 120%;
  text-align: center;
  font-family: Arial;
  border-radius: 0.2em;
}
#account-root .email {
  color: #bbffdd;
}
#account-root .form {
  height: 50%;
  width: 100%;
}
#account-root .entry {
  margin-bottom: 2em;
  height: 10vh;
  width: 80%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
#account-root .entry .label {
  float: left;
  width: 30%;
  height: 50%;
  line-height: 130%;
  white-space: nowrap;
  text-align: left;
}
#account-root .entry .text-input {
  width: 100%;
  height: 50%;
  padding: 0;
  border: solid 1px #8080c0;
  padding-left: 1%;
  font-family: "HelveticaNeueBlack";
}
#account-root .submit {
  display: block;
  margin-top: 1em;
  width: 6em;
  height: 6%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #4040a0;
  border-radius: 1em;
  border: 2px solid white;
  color: white;
  line-height: 120%;
  text-align: center;
  cursor: pointer;
}
#account-root .action {
  height: 3.5vh;
  text-align: center;
  text-shadow: 0.04em 0.04em 0px white, -0.04em -0.04em 0px white, 0.04em -0.04em 0px white, -0.04em 0.04em 0px white;
  color: blue;
  margin-top: 1.5em;
  cursor: pointer;
}
#account-root .info {
  margin-top: 2vh;
  height: 7vh;
  width: 80%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #101020;
  pointer-events: none;
}
#account-root .info .label {
  padding-left: 0.3em;
  height: 50%;
  line-height: 100%;
}
#account-root .info .data {
  float: right;
  height: 50%;
  line-height: 100%;
  color: #d0d000;
  padding-right: 0.3em;
}
#account-root .account-library-container {
  width: 100%;
  height: 30%;
}
#account-root .account-game-details {
  width: 90%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
#account-root #active-games {
  width: 100%;
  text-align: center;
  margin-top: 1em;
}
#account-root #active-games table {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid white;
}
#account-root #active-games tr {
  font-size: 1em;
  margin-top: 0.4em;
  cursor: pointer;
}
#account-root #active-games tr td {
  padding-left: 1em;
}
#account-root #popup {
  display: none;
}
#account-root #popup #container {
  position: absolute;
  left: 6vmin;
  right: 6vmin;
  top: 6vmin;
  bottom: 6vmin;
  border: 0.2em solid white;
  border-radius: 6vmin;
  text-align: center;
}
#account-root #popup #container .text {
  margin-top: 10vmin;
  margin-bottom: 1vmin;
  margin-left: 10%;
  margin-right: 10%;
  font-size: 6vh;
}
#account-root #popup #container .text-input {
  width: 50%;
  height: 5vh;
  padding: 0;
  border: solid 1px #8080c0;
  padding-left: 1%;
  text-align: center;
  font-family: "HelveticaNeueBlack";
  margin-left: 20%;
  margin-right: 20%;
}
#account-root #popup #container #confirm-credits {
  color: #a08000;
}
#account-root #popup #container #confirm-icon {
  width: 100%;
  height: 30vh;
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 4vmin;
}
#account-root #popup #container .popup-button {
  display: inline-block;
  margin: 1vmin;
  border: 1px solid white;
  height: 6vmin;
  font-size: 5vmin;
  font-family: arial;
  padding: 0.2em;
  border-radius: 0.5em;
  cursor: pointer;
}
#account-root #popup #container .positive {
  border-color: green;
  color: green;
}
#account-root #popup #container .negative {
  border-color: red;
  color: red;
}
.game-library {
  margin-top: 1%;
  margin-bottom: 1%;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.game-library .game-tile {
  display: inline-block;
  height: 99%;
  margin-left: 1%;
  background-color: #808080;
  background-size: 100% 100%;
  border: solid 1px #404040;
  border-radius: 0.5em;
  pointer-events: all;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
}
.game-library .game-tile .spacer {
  height: 85%;
  pointer-events: none;
}
.game-library .game-tile .cost {
  height: 8%;
  width: 95%;
  text-align: right;
  color: yellow;
  pointer-events: none;
}
.game-library .selected {
  border-color: #a08000;
  opacity: 1;
}
.game-details {
  border: 1px solid blue;
  border-radius: 0.5em;
  text-align: center;
  font-size: 5vmin;
}
.game-details .game-name {
  width: 95%;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.game-details .game-description {
  width: 95%;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  font-size: 4vmin;
  font-family: arial;
}
.game-details .host-game-button {
  display: inline-block;
  background-color: #4040a0;
  border-radius: 1em;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  margin-top: 1vmin;
  margin-bottom: 1vmin;
}
.game-details .game-error {
  display: inline-block;
  color: red;
  margin-top: 1vmin;
  margin-bottom: 1vmin;
  font-size: 3vmin;
}
.screen-dimmer {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: all;
  background-color: black;
  opacity: 0.98;
}
.instance-entry .delete {
  color: red;
  text-align: center;
  padding-right: 1em;
}
.instance-entry .tag {
  color: #80ff80;
}
/*
@font-face {
  font-family: 'GearedSlab';
  src: url("font/GearedSlab.ttf");
}
@font-face {
  font-family: 'GearedSlabBold';
  src: url("font/GearedSlab-Bold.ttf");
}
@font-face {
  font-family: 'GearedSlabExtra';
  src: url("font/GearedSlab-Extrabold.ttf");
}
@font-face {
  font-family: 'GearedSlabLight';
  src: url("font/GearedSlab-Light.ttf");
}
*/
@font-face {
  font-family: 'HelveticaNeueBlack';
  src: url("font/HelveticaNeue-CondensedBlack.otf");
}
@font-face {
  font-family: 'HelveticaNeueBold';
  src: url("font/HelveticaNeue-CondensedBold.otf");
}
#register-screen {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background-color: black;
}
#register-screen #enter-name {
  position: absolute;
  top: 45%;
  width: 60%;
  height: 5%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1vw;
  border: 1px solid black;
  font-size: 4vh;
}
#register-screen .button {
  position: absolute;
  top: 52%;
  width: 61.5%;
  height: 7%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid black;
  border-radius: 0.3em;
  font-size: 4vh;
}
