body {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: url("../../images/background/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000000;
  background-size: contain;
  overflow-y: hidden; }
  body ::-webkit-scrollbar {
    display: none; }

* {
  box-sizing: border-box; }

@font-face {
  font-family: 'OCR-New';
  src: url("/fonts/OCRAEXT.TTF");
  font-style: normal;
  font-weight: 100; }

#stage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  margin: auto;
  width: 100vw;
  height: 100vh;
  overflow: hidden; }

#timer-and-score {
  position: fixed;
  left: 3%;
  top: 5%;
  z-index: 9999999;
  display: flex;
  flex-direction: row;
  transform-origin: top left;
  transform: scale(0.8); }

#left-column {
  display: flex;
  flex-direction: column;
  width: 70px;
  margin-right: 20px; }

#right-column {
  display: flex;
  flex-direction: column; }

.circular-timer {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  margin: 0 auto; }

.circular-timer .rotate {
  width: 100%;
  height: 100%;
  border: 2px solid #005BBB;
  border-radius: 50%; }

.circular-timer .rotate #loader {
  fill: #005BBB; }

.ui-text {
  color: #B3B3B3;
  font-size: 15px;
  font-family: "Arial Black";
  font-weight: bold;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-bottom: 10px; }

#score-container {
  overflow: hidden;
  height: 70px;
  color: #B3B3B3;
  font-size: 30px;
  font-family: OCR-New;
  text-transform: uppercase;
  font-family: "Arial Black";
  font-weight: bold;
  width: 125px;
  border-radius: 10px;
  border: 2px solid #005BBB;
  padding: 10px;
  text-align: center; }

#timer {
  position: absolute;
  z-index: 999;
  top: 12.5%;
  left: 5%;
  color: #B3B3B3;
  font-size: 35px;
  font-family: "Arial Black"; }

#ended {
  z-index: 999;
  color: #fff;
  font-size: 40px;
  font-family: "Arial Black";
  text-align: center;
  white-space: nowrap;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

#game {
  text-align: justify;
  height: 100%;
  font-family: 'Pathway Gothic One', sans-serif;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.1em; }

#lean {
  transform-origin: 50% 100%;
  transform: rotateX(40deg); }

.fade {
  position: absolute;
  width: 100%;
  min-height: 50%;
  top: -25px;
  background-image: linear-gradient(0deg, transparent, black 100%);
  z-index: 2;
  pointer-events: none; }

.scroll {
  position: relative;
  top: 100%;
  animation: scroll 300s linear;
  animation-play-state: paused;
  transform: translate3d(0, 0, 0); }

@keyframes scroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    -webkit-transform: translate3d(0, -1000vh, 0);
    transform: translate3d(0, -1000vh, 0); } }

.ball-in-pipe {
  position: fixed;
  right: 400px;
  top: 168px; }
  .ball-in-pipe:after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    display: block; }
  .ball-in-pipe.ball-blue {
    animation: themeXAxis 1s 1 linear forwards; }
    .ball-in-pipe.ball-blue:after {
      animation: themeYAxis 1s 1 cubic-bezier(0.34, 0.5, 0.58, 0.83) forwards;
      background-color: #3079c7;
      background-image: url("/images/balls/balles_theme_digital.png"); }
  .ball-in-pipe.ball-green, .ball-in-pipe.ball-orange {
    animation: emotionXAxis 1s 1 ease-in forwards; }
    .ball-in-pipe.ball-green:after, .ball-in-pipe.ball-orange:after {
      animation: emotionYAxis 1s 1 ease-out forwards;
      background-color: #d6e153;
      background-image: url("/images/balls/balles_ressenti_emotion.png"); }

.ball {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  background-size: 100%;
  transition: all 400ms linear;
  background-repeat: no-repeat;
  transform-origin: top left;
  transform: translate3d(0, -50%, 0); }
  .ball.ball-orange {
    background-color: #fcb14c; }
  .ball.ball-blue {
    background-color: #3079c7; }
  .ball.ball-green {
    background-color: #d6e153; }
  .ball:after {
    content: attr(data-content);
    position: absolute;
    color: black;
    bottom: 0px;
    font-size: 25px;
    text-transform: uppercase;
    font-family: "Arial Black";
    width: 100%;
    text-align: center;
    opacity: 0;
    left: 50%;
    margin-left: -110px;
    width: 220px;
    transition: opacity 250ms;
    -webkit-transition: opacity 250ms;
    /* Safari prior 6.1 */ }
  .ball:hover, .ball.start {
    clear: both;
    background-size: 75%;
    background-position: center top;
    width: 220px;
    height: 220px;
    border-radius: 5%;
    z-index: 1; }
    .ball:hover::after, .ball.start::after {
      opacity: 1; }
  .ball.start {
    pointer-events: none;
    animation: anime 1s 1; }

@keyframes emotionXAxis {
  100% {
    animation-timing-function: ease-in;
    transform: translateX(150px); } }

@keyframes emotionYAxis {
  100% {
    animation-timing-function: ease-out;
    transform: translateY(-190px); } }

@keyframes themeXAxis {
  100% {
    transform: translateX(325px); } }

@keyframes themeYAxis {
  100% {
    transform: translateY(-190px); } }

@keyframes anime {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

#stamped:before, .stamped-recla:before, .stamped-mob:before, .stamped-rc:before {
  content: '';
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("../../images/stamps/stampRC.png");
  height: 150px;
  width: 150px;
  display: block;
  position: absolute;
  left: -70px;
  top: -10px; }

.stamped-recla:before {
  background-image: url("../../images/stamps/stampRecla.png"); }

.stamped-mob:before {
  background-image: url("../../images/stamps/stampMob.png"); }

.stamped-rc:before {
  background-image: url("../../images/stamps/stampRC.png"); }

.email {
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: #f9af48;
  border-bottom-width: 5px;
  border-bottom-style: dashed;
  color: #f9af48;
  -webkit-transition: color 1000ms ease, max-height 1000ms linear;
  transition: color 1000ms ease, max-height 1000ms linear;
  transform: translate3d(0px, 0px, 0px);
  max-height: 9000px; }
  .email.complete {
    color: #c4d42c; }
    .email.complete .word::after {
      background-color: #c4d42c; }
  .email.incomplete {
    color: #ff0000; }
    .email.incomplete .word::after {
      background-color: #ff0000; }
  .email.small {
    max-height: 0px; }

#finish-line {
  position: fixed;
  display: none;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40vw;
  height: 2px;
  background-color: #FFFFFF;
  z-index: 999; }

/**
 * STATIC POPUPS
 */
#start-container {
  width: 80%;
  height: 80%;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99999;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.logo {
  width: 35%;
  min-height: 112px;
  min-width: 288px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99999;
  display: block;
  margin-top: 5%; }

.text {
  font-family: 'Arial';
  font-size: 24px; }

.orangeText {
  color: #FFA02F; }

.yellowText {
  color: #fdeb31;
  font-weight: bold; }

.whiteText {
  color: #fff; }

#home-screen {
  margin-top: 15%; }

.start-button {
  color: #fdeb31;
  font-size: 40px;
  font-family: OCR-New;
  text-transform: uppercase;
  margin: 0 auto;
  width: 300px;
  border-radius: 10px;
  border: 2px solid #fdeb31;
  padding: 10px;
  display: block; }
  .start-button:hover {
    cursor: pointer; }
  .start-button:active {
    filter: brightness(75%); }

.startButtonHome {
  margin-top: 3%; }

@keyframes fly-in {
  0% {
    -moz-transform: translate3d(-100vw, 0, 0);
    -webkit-transform: translate3d(-100vw, 0, 0);
    transform: translate3d(-100vw, 0, 0); }
  100% {
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.spaceship {
  position: fixed;
  -moz-animation: fly-in 1000ms 1;
  -webkit-animation: fly-in 1000ms 1;
  animation: fly-in 1000ms 1;
  height: 87px;
  width: 243px;
  top: 20px;
  left: 40%;
  transition: top 1000ms ease-in-out; }
  .spaceship::before {
    content: '';
    background-size: 100%;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: width 1000ms ease-in-out;
    transition: width 1000ms ease-in-out;
    background-image: url("../../images/main/xwing.png");
    z-index: 10; }
  .spaceship + .spaceship::before {
    z-index: 9; }

#score-board {
  width: 290px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99999;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #3a6eff;
  color: #fff; }

#finalScore {
  display: block;
  font-size: 2.4rem; }

#retry {
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 5px 5px;
  position: relative;
  margin: 0 auto;
  outline: 0 !important; }
  #retry:hover {
    cursor: pointer; }

#retry:hover {
  top: 4px;
  outline: 0 !important; }

/**
 * Extended from animate.css (https://daneden.github.io/animate.css/)
 */
@-webkit-keyframes pulseSmaller {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulseSmaller {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulseSmaller {
  animation: pulseSmaller 0.8s ease;
  -webkit-animation: pulseSmaller 0.8s ease; }

@-webkit-keyframes bounceInUpCenter {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, calc(-50% - 20px), 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, calc(-50% - 10px), 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, calc(-50% - 5px), 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0); } }

@keyframes bounceInUpCenter {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    transition-delay: 2s;
    opacity: 0;
    -webkit-transform: translate3d(-50%, 3000px, 0);
    transform: translate3d(-50%, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, calc(-50% - 20px), 0);
    transform: translate3d(-50%, calc(-50% - 20px), 0); }
  75% {
    -webkit-transform: translate3d(-50%, calc(-50% - 10px), 0);
    transform: translate3d(-50%, calc(-50% - 10px), 0); }
  90% {
    -webkit-transform: translate3d(-50%, calc(-50% - 5px), 0);
    transform: translate3d(-50%, calc(-50% - 5px), 0); }
  to {
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0); } }

.bounceInUpCenter {
  animation-delay: 1s;
  -webkit-animation-name: bounceInUpCenter;
  animation-name: bounceInUpCenter; }

@-webkit-keyframes bounceOutUpEmail {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    transition-delay: 3500ms; }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); } }

@keyframes bounceOutUpEmail {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); } }

.bounceOutUpEmail {
  -webkit-animation-name: bounceOutUpEmail;
  animation-name: bounceOutUpEmail;
  animation-delay: 3500ms;
  animation-duration: 2000ms; }

@-webkit-keyframes bounceOutRightEmail {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    transition-delay: 3500ms; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRightEmail {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRightEmail {
  -webkit-animation-name: bounceOutRightEmail;
  animation-name: bounceOutRightEmail;
  animation-delay: 3500ms; }

@-webkit-keyframes fadeInSpaceship {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeInSpaceship {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeInSpaceship {
  -webkit-animation-name: fadeInSpaceship;
  animation-name: fadeInSpaceship; }

@keyframes wordshake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

.wordshake {
  -webkit-animation-name: wordshake;
  animation-name: wordshake; }

.word {
  display: inline-block;
  position: relative;
  transform: translate3d(0px, 0px, 0px); }
  .word::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 6px;
    width: 100%;
    max-width: 0;
    display: block;
    background-color: #f9af48;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out; }

.stamps {
  position: absolute;
  height: 100px;
  width: 116px; }
  .stamps:hover {
    cursor: pointer; }

#stamp-recla {
  left: 5%;
  top: 30%; }

#stamp-mob {
  left: 5%;
  top: 42%; }

#stamp-rc {
  left: 5%;
  top: 54%; }

.stamp-recla {
  cursor: url("../../images/stamps/woodStampRecla.png") 96 85, auto; }

.stamp-mob {
  cursor: url("../../images/stamps/woodStampMob.png") 96 85, auto; }

.stamp-rc {
  cursor: url("../../images/stamps/woodStampRC.png") 96 85, auto; }

#help-text {
  left: 3%;
  top: 20%;
  position: absolute;
  width: 200px;
  color: white;
  font-family: 'Arial';
  font-size: 13px; }
  #help-text .help-block {
    display: block; }
  #help-text .help-holder {
    float: left;
    position: relative;
    margin: 5px 0px 0 0; }
    #help-text .help-holder .help-content {
      margin-top: 10px;
      width: 200px;
      pointer-events: none; }
      #help-text .help-holder .help-content .help-title {
        color: #f9af48;
        padding-bottom: 10px; }
      #help-text .help-holder .help-content .help-text {
        display: block; }
    #help-text .help-holder img {
      height: 25px;
      width: auto;
      float: left; }

.disable-keyword-click {
  pointer-events: none; }

#pipes {
  position: fixed;
  height: 168px;
  width: 400px;
  top: 0;
  right: 0; }
  #pipes #ressentiPipe {
    position: absolute;
    top: 0; }
  #pipes #themePipe {
    position: absolute;
    top: 0; }

#ball-score {
  position: fixed;
  top: 100px;
  right: 400px; }
  #ball-score span {
    position: absolute;
    font-weight: bold;
    font-size: 30px;
    color: white;
    font-family: "Arial Black"; }
    #ball-score span.slide-top {
      -webkit-animation: slide-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
      animation: slide-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both; }

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-filter: blur(0.01);
    filter: blur(0.01); }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-filter: blur(12px) opacity(0%);
    filter: blur(12px) opacity(0%); } }

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-filter: blur(0.01);
    filter: blur(0.01); }
  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-filter: blur(12px) opacity(0%);
    filter: blur(12px) opacity(0%); } }

/* ----------------------------------------------
 * Generated by Animista on 2020-2-6 20:57:7
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation text-blur-out
 * ----------------------------------------
 */
@-webkit-keyframes text-blur-out {
  0% {
    -webkit-filter: blur(0.01);
    filter: blur(0.01); }
  100% {
    -webkit-filter: blur(12px) opacity(0%);
    filter: blur(12px) opacity(0%); } }

@keyframes text-blur-out {
  0% {
    -webkit-filter: blur(0.01);
    filter: blur(0.01); }
  100% {
    -webkit-filter: blur(12px) opacity(0%);
    filter: blur(12px) opacity(0%); } }

.hidden {
  visibility: hidden;
  pointer-events: none;
  display: none !important; }

.underline {
  text-decoration: underline; }

.line-through::after {
  max-width: 1000px; }

#emails {
  -webkit-transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out; }

.flex-container {
  padding: 0;
  margin: 0px auto;
  position: fixed;
  left: 10px;
  bottom: 10px;
  display: flex;
  text-align: center;
  justify-content: center;
  z-index: 999; }

.vol-container {
  width: 60px;
  padding: 10px; }

.vol-button {
  cursor: pointer;
  width: 100%; }

.button-text {
  text-align: center;
  color: #fdeb31;
  font-size: 14px; }
