body {
  padding: 50px 0;
  background: #0f0f23;
  color: #fff;
}
@media only screen and (min-width: 1px) and (max-width: 719px) {
  body {
    padding-top: 10px;
  }
}
body .wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  /* Safari/Chrome, other WebKit */
  /* Firefox, other Gecko */
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
}
body .wrapper:after,
body .wrapper:before {
  content: "";
  display: table;
  clear: both;
}
body .wrapper .layout {
  text-align: center;
  margin: 0 -10px;
}
body .wrapper .layout > div {
  /* Safari/Chrome, other WebKit */
  /* Firefox, other Gecko */
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  float: left;
  display: block;
  padding: 0 10px;
  width: 50%;
}
@media only screen and (min-width: 1px) and (max-width: 1019px) {
  body .wrapper .layout > div {
    width: 100%;
    float: none;
    padding-bottom: 20px;
  }
}
.table {
  margin: 0 auto;
  max-width: 470px;
}
.table .row {
  background: #000;
  font-size: 0;
}
.table .row .cell {
  /* Safari/Chrome, other WebKit */
  /* Firefox, other Gecko */
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  width: 33.3334%;
  padding-bottom: 33.3334%;
  border: 1px solid #fff;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.table .row .cell.circle {
  background-image: url('../img/circle.png');
}
.table .row .cell.cross {
  background-image: url('../img/cross.png');
}
.table.human .row .playable.cell {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
.pane {
  color: #eaeaea;
}
.pane .frame {
  margin: 0 auto;
  background: #000;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 5px;
  overflow: hidden;
  height: 456px;
  /* Safari/Chrome, other WebKit */
  /* Firefox, other Gecko */
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
}
@media only screen and (min-width: 1px) and (max-width: 719px) {
  .pane .frame {
    width: 100%;
    height: 200px;
  }
}
.pane #console {
  text-align: left;
  margin-right: -30px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: "Courier New", "Fixedsys", monospace;
  font-size: 16px;
  line-height: 16px;
}
@media only screen and (min-width: 1px) and (max-width: 719px) {
  .pane #console {
    font-size: 9px;
    line-height: 9px;
  }
}
.pane #console .row {
  min-height: 16px;
}
@media only screen and (min-width: 1px) and (max-width: 719px) {
  .pane #console .row {
    min-height: 9px;
  }
}
.pane #console .row.error {
  color: #ff0000;
}
.cursor {
  -webkit-animation: blink 1s infinite steps(1, start);
  -moz-animation: blink 1s infinite steps(1, start);
  -ms-animation: blink 1s infinite steps(1, start);
  animation: blink 1s infinite steps(1, start);
}
@keyframes blink {
  0%,
  100% {
    background-color: #000;
    color: #aaa;
  }
  50% {
    background-color: #bbb;
    /* not #aaa because it's seem there is Google Chrome bug */
    color: #000;
  }
}
@-webkit-keyframes blink {
  0%,
  100% {
    background-color: #000;
    color: #aaa;
  }
  50% {
    background-color: #bbb;
    color: #000;
  }
}
@-ms-keyframes blink {
  0%,
  100% {
    background-color: #000;
    color: #aaa;
  }
  50% {
    background-color: #bbb;
    color: #000;
  }
}
@-moz-keyframes blink {
  0%,
  100% {
    background-color: #000;
    color: #aaa;
  }
  50% {
    background-color: #bbb;
    color: #000;
  }
}
/*# sourceMappingURL=style.css.map */