@charset "UTF-8";
* {
  box-sizing: border-box;
}

.sprite {
  background: url("https://res.cloudinary.com/lotsofcode/image/upload/v1460118051/sprite_vqr2es.png") no-repeat top left;
  width: 46px;
  height: 87px;
}

.sprite.big-big {
  background-position: 0 0;
  height: 62px;
}

.sprite.big-double-big {
  background-position: 0 -72px;
  width: 55px;
  height: 88px;
}

.sprite.big-double {
  background-position: 0 -170px;
  width: 67px;
  height: 67px;
}

.sprite.big-small-big {
  background-position: 0 -247px;
}

.sprite.big {
  background-position: 0 -344px;
  width: 51px;
  height: 33px;
}

.sprite.cross {
  background-position: 0 -387px;
  width: 69px;
  height: 79px;
}

.sprite.double-big-double {
  background-position: 0 -476px;
  width: 56px;
}

.sprite.double-double {
  background-position: 0 -573px;
  width: 63px;
  height: 65px;
}

.sprite.double {
  background-position: 0 -648px;
  width: 60px;
  height: 35px;
}

body {
  background: #550000;
  margin: 0;
  padding: 20px;
}

body, button {
  font-family: "Shadows Into Light", Arial;
}

.SymbolHeader {
  color: white;
  margin: 0 0 20px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.SymbolHeader h1 {
  flex: 1;
}
.SymbolHeader h2 {
  flex: shrink;
  color: #FFAAAA;
  font-size: 20px;
  transition: all 0.25s ease-in;
}
.SymbolHeader h2.SymbolHeaderZap {
  color: #d46a6a;
  font-size: 28px;
  transform: rotate(10deg);
  animation-name: boop;
  animation-duration: 0.25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.Symbols {
  margin: 0 auto;
}

.Symbol {
  background: #000;
  border: 1px solid #000;
  padding: 20px 20px 50px;
  width: 31%;
  margin-left: 3.33%;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.Symbol:nth-child(1), .Symbol:nth-child(4), .Symbol:nth-child(7) {
  margin-left: 0;
}
.Symbol p {
  color: #FFAAAA;
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 10px;
}
.Symbol i {
  display: inline-block;
  text-align: center;
}

.Symbol {
  position: relative;
  border-radius: 5px;
  border: solid 1px #000;
  background: #000;
  text-align: center;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
  opacity: 0.7;
  -webkit-box-shadow: 0px 9px 0px #801515;
  -moz-box-shadow: 0px 9px 0px #801515;
  box-shadow: 0px 9px 0px #801515;
}

.Symbol:active {
  -webkit-box-shadow: 0px 2px 0px #d46a6a;
  -moz-box-shadow: 0px 2px 0px #d46a6a;
  box-shadow: 0px 2px 0px #d46a6a;
  position: relative;
  top: 10px;
}

.SymbolSelected {
  opacity: 1;
  border: 1px solid #FFAAAA;
  transform: scale(1.05) rotate(-2deg);
}
.SymbolSelected:after {
  content: "✓";
  color: #550000;
  font-size: 30px;
  line-height: 1.4;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #FFAAAA;
  border: 1px solid #801515;
  top: -10px;
  right: -10px;
  border-radius: 100%;
  box-shadow: 2px 2px 5px #d46a6a;
}

.SymbolResetButton {
  margin: 30px 0 0;
  font-size: 16px;
}
.SymbolResetButton button {
  font-size: 20px;
  padding: 10px;
  width: 100%;
  color: #d46a6a;
  background: #801515;
  border: 1px solid #d46a6a;
}

.SymbolResetButtonActive button {
  color: white;
}
.SymbolResetButtonActive button:hover {
  background: #550000;
}

.RouteInfo {
  color: white;
}

@keyframes boop {
  0% {
    transform: scale(1) rotate(15deg);
  }
  100% {
    transform: scale(1.1) rotate(10deg);
  }
}