*, *:before, *:after {
  box-sizing: border-box;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
  outline: 0; }

html {
  -webkit-tap-highlight-color: transparent; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  font-family: Helvetica, Sans;
  background-color: #1a2b57;
  cursor: none; }

ul {
  margin: 0;
  list-style: none;
  padding: 0; }

figure {
  margin: 0;
  padding: 0; }

a {
  text-decoration: none; }

.content.in-game {
  cursor: none; }

@font-face {
  font-family: 'pooper';
  src: url("../fonts/pooper.ttf?502xxc") format("truetype"), url("../fonts/pooper.woff?502xxc") format("woff"), url("../fonts/pooper.svg?502xxc#pooper") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'pooper' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  [class^="icon-"]:before, [class*=" icon-"]:before {
    font-size: 1.4rem; }

.icon--refresh:before {
  content: "\f021"; }

.icon--volume--up:before {
  content: "\f028"; }

.icon--question--circle:before {
  content: "\f059"; }

.icon--info--circle:before {
  content: "\f05a"; }

.icon--expand:before {
  content: "\f065"; }

.icon--compress:before {
  content: "\f066"; }

.icon--twitter:before {
  content: "\f099"; }

.icon--facebook:before {
  content: "\f09a"; }

.icon--facebook--f:before {
  content: "\f09a"; }

.icon--question:before {
  content: "\f128"; }

.icon--info:before {
  content: "\f129"; }

.icon--exclamation:before {
  content: "\f12a"; }

.intro {
  position: fixed;
  width: 100%;
  height: 100%;
  font-size: 40px;
  text-align: center;
  color: white;
  background-color: #1a2b57; }

.intro__content {
  width: 100%;
  height: 100%; }
  .intro__content.hidden {
    display: none; }

.intro__preloader {
  width: 760px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.intro__screen {
  display: none; }
  .intro__screen.playing {
    display: block; }

.intro__video {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 80vw; }

.intro__text {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); }

.intro__cta {
  opacity: 0;
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -o-transform: scale(0.75);
  transform: scale(0.75);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55), ease-in;
  -moz-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55), ease-in;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55), ease-in;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s; }
  .intro__cta.visible {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.intro__loading {
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  -webkit-animation: pulse 1s;
  -moz-animation: pulse 1s;
  animation: pulse 1s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate; }
  .intro__loading.visible {
    opacity: 1; }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale(1); }
  to {
    -webkit-transform: scale(1.2); } }

@-moz-keyframes pulse {
  from {
    -moz-transform: scale(1); }
  to {
    -moz-transform: scale(1.2); } }

@keyframes pulse {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  to {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); } }
