@import url(https://fonts.googleapis.com/css?family=Teko:400,700);
.Loader {
  display: block;
  margin: 0 auto; }
  .Loader--animation {
    position: relative;
    width: 30px;
    height: 30px;
    margin: auto; }
  .Loader span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 20%;
    height: 20%;
    background: #fff;
    transform: translate3d(0, -50%, 0);
    -webkit-animation: 1s linear infinite height-pulse;
            animation: 1s linear infinite height-pulse; }
    .Loader span + * {
      left: 40%;
      -webkit-animation-delay: 150ms;
              animation-delay: 150ms; }
    .Loader span + * + * {
      left: 80%;
      -webkit-animation-delay: 300ms;
              animation-delay: 300ms; }

.Toast {
  font-size: 16px;
  margin: 20px;
  border: rgba(255, 255, 255, 0.2) 1px solid;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  transition: opacity 200ms ease-out;
  box-shadow: #000 0 0 20px, #000 0 0 10px; }
  .Toast p {
    margin: 0 0 10px; }
  .Toast--content {
    display: flex; }
  .Toast--message {
    flex-grow: 1;
    padding: 20px 0 20px 20px; }
  .Toast--closeButton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px; }
  .Toast.isHidden {
    opacity: 0; }

.ToastContainer {
  position: fixed;
  bottom: 0;
  left: 0;
  max-height: 100%;
  z-index: 2; }
  @media screen and (max-width: 479px) {
    .ToastContainer {
      right: 0; } }
  @media screen and (max-width: 767px) {
    .ToastContainer {
      padding-bottom: 76px; } }

.CharacterListing {
  flex-basis: 33.333333%;
  padding: 5px; }
  .CharacterListing img {
    width: 100%; }
  @media screen and (min-width: 480px) {
    .CharacterListing {
      flex-basis: 25%; } }
  @media screen and (min-width: 768px) {
    .CharacterListing {
      flex-basis: 20%; } }

.GameListing {
  flex-basis: 100%;
  padding: 5px; }
  .GameListing.isSelected {
    opacity: 0.5; }
  @media screen and (min-width: 768px) {
    .GameListing {
      flex-basis: 50%; } }

.Navigation h2::before {
  width: auto;
  flex-grow: 1; }

.Navigation--primary {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 50%;
  border: rgba(255, 255, 255, 0.2) 1px solid;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: rgba(0, 0, 0, 0.9);
  transform: translate3d(-50%, 0, 0);
  z-index: 3; }
  .Navigation--primary span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0); }
  .Navigation--primary > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    line-height: 0;
    padding: 20px; }
    .Navigation--primary > *::before, .Navigation--primary > *::after {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      content: "";
      border: #fff 1px solid;
      border-radius: 100%;
      transform-style: preserve-3d;
      transition: width 400ms ease-out, height 400ms ease-out, transform 700ms ease-out, opacity 100ms ease-out;
      opacity: 0; }
    .Navigation--primary > *::before {
      transform: translate3d(-50%, -50%, 0) rotateX(0deg) rotateY(0deg); }
    .Navigation--primary > *::after {
      transform: translate3d(-50%, -50%, 0) rotateX(-180deg) rotateY(-180deg); }
    .Navigation--primary > *.isActive::before {
      width: 50px;
      height: 50px;
      transform: translate3d(-50%, -50%, 0) rotateX(180deg) rotateY(180deg);
      opacity: 0.6; }
    .Navigation--primary > *.isActive::after {
      width: 60px;
      height: 60px;
      transform: translate3d(-50%, -50%, 0) rotateX(0deg) rotateY(0deg);
      opacity: 0.4; }
    .Navigation--primary > *:disabled {
      opacity: 0.2; }
  .Navigation--primary svg {
    font-size: 36px; }

.Navigation--games, .Navigation--characters {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 20px 96px;
  background: rgba(0, 0, 0, 0.9);
  overflow: auto;
  transition: transform 200ms ease-out;
  z-index: 2; }
  .Navigation--games--items, .Navigation--characters--items {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    max-width: 992px;
    margin: -5px auto; }
  .Navigation--games.isOpen, .Navigation--characters.isOpen {
    transform: translate3d(0, 0, 0); }

.Navigation--games {
  transform: translate3d(-100%, 0, 0); }

.Navigation--characters {
  transform: translate3d(100%, 0, 0); }

.Page {
  height: 100%; }
  .Page--body {
    height: 100%; }
    .Page--body > * {
      padding-bottom: 76px; }

@-webkit-keyframes height-pulse {
  0% {
    height: 10%; }
  50% {
    height: 100%; }
  100% {
    height: 10%; } }
@keyframes height-pulse {
  0% {
    height: 10%; }
  50% {
    height: 100%; }
  100% {
    height: 10%; } }

*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  width: 100%;
  height: 100%;
  box-sizing: border-box; }
  html.isLocked body {
    overflow: hidden; }

body {
  width: 100%;
  height: 100%;
  font-family: "Teko", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-shadow: #000 1px 1px 0;
  margin: 0;
  padding: 20px;
  background: #000 url("/static/bg.jpg") 50% no-repeat fixed;
  background-size: cover; }
  body::before {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background: url("/static/bg-texture.gif") fixed 0 0 repeat;
    opacity: 0.7;
    z-index: -1;
    pointer-events: none; }
  body::after {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42px;
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
    pointer-events: none; }

h1 {
  font-size: 30px;
  margin: 0 -20px 20px;
  padding: 12px 20px 10px;
  border: rgba(255, 255, 255, 0.2) solid;
  border-width: 1px 0;
  background: rgba(0, 0, 0, 0.7); }

h2 {
  display: flex;
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 20px; }
  h2::before, h2::after {
    height: 1px;
    content: "";
    margin: auto; }
  h2::before {
    width: 20px;
    margin-right: 20px;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0)); }
  h2::after {
    flex-grow: 1;
    margin-left: 20px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); }

h3 {
  font-size: 20px;
  margin-bottom: 10px; }

h4 {
  margin-bottom: 0; }

a {
  color: #fff;
  text-decoration: underline; }
  a:hover, a:focus {
    color: #fff; }

img {
  display: block;
  max-width: 100%; }

figure {
  margin: 0;
  padding: 0; }

button {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font: inherit;
  color: inherit;
  text-transform: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  cursor: pointer; }

#__next {
  height: 100%; }

.isHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0); }

.container {
  max-width: 992px;
  margin: auto; }

.ButtonBar {
  display: flex;
  align-items: center; }
  .ButtonBar::before, .ButtonBar::after {
    display: block;
    content: "";
    flex-grow: 1;
    height: 1px; }
  .ButtonBar::before {
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0)); }
  .ButtonBar::after {
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); }
  .ButtonBar .Button {
    margin: 0 10px; }

.Home section {
  margin-bottom: 20px;
  padding: 20px;
  border: rgba(255, 255, 255, 0.2) 1px solid;
  background: rgba(0, 0, 0, 0.7); }

@media screen and (min-width: 480px) {
  .Home .Logo {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px;
    opacity: 0.3;
    z-index: -1; }
    .Home .Logo svg {
      width: 100%; } }

@media screen and (max-width: 479px) {
  .Home .Logo {
    margin-bottom: 20px;
    opacity: 0.8; } }

.ComboButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  vertical-align: middle;
  text-shadow: none;
  margin-right: 5px;
  border: #fff 2px solid;
  border-radius: 100%; }
  .ComboButton--text {
    padding-top: 3px; }
  .ComboButton.isHeld {
    color: #000;
    background: #fff; }
  .ComboButton--lp, .ComboButton--hp {
    color: #f99;
    border-color: #f99; }
    .ComboButton--lp.isHeld, .ComboButton--hp.isHeld {
      background: #f99; }
  .ComboButton--lk, .ComboButton--hk {
    color: #99f;
    border-color: #99f; }
    .ComboButton--lk.isHeld, .ComboButton--hk.isHeld {
      background: #99f; }
  .ComboButton.isSeparator {
    width: auto;
    border: none; }
  .ComboButton:last-of-type {
    margin-right: 0; }

.Character {
  position: relative;
  flex-basis: 100%; }
  .Character h2 {
    padding: 20px;
    margin: 0; }
  .Character h3 {
    margin-top: 0; }
  .Character--image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent 50% no-repeat;
    background-size: cover;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0.2;
    z-index: 0; }
  .Character--content {
    position: relative;
    z-index: 1; }
  .Character--moveset {
    padding: 0 20px 10px; }
    .Character--moveset dl {
      margin: 0; }
    .Character--moveset dd {
      margin: 0 0 10px; }
    .Character--moveset + *::before {
      display: block;
      width: 30%;
      height: 1px;
      content: "";
      margin: 0 auto 10px;
      background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)); }
    .Character--moveset:last-child {
      padding-bottom: 20px; }

.Move--conditions {
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic; }

@media screen and (min-width: 768px) {
    .Character {
      flex-basis: 50%;
      padding: 10px; }
      .Character--image {
        top: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
        opacity: 0.6; }
      .Character--content {
        height: 100%;
        border: rgba(255, 255, 255, 0.2) 1px solid;
        background: rgba(0, 0, 0, 0.7); } }

@media screen and (max-width: 767px) {
    .Character--content {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      overflow: auto; } }

.Game--characters--items {
  display: flex; }

@media screen and (min-width: 768px) {
  .Game--characters {
    max-width: 992px;
    margin: auto; }
    .Game--characters--items {
      flex-wrap: wrap;
      width: auto !important;
      margin: -10px;
      padding-bottom: 20px; } }

@media screen and (max-width: 767px) {
  .Game {
    display: flex;
    flex-direction: column;
    height: 100%; }
    .Game--characters {
      flex-grow: 1;
      border: rgba(255, 255, 255, 0.2) 1px solid;
      background: rgba(0, 0, 0, 0.7);
      overflow: auto;
      scroll-behavior: smooth; }
      .Game--characters--items {
        height: 100%; }
      .Game--characters.isTouching {
        scroll-behavior: initial; } }

