/*
 Scss Libraries, mixins, functions and any Scss focused logic
*/
/*
* Variables are in a map in settings.scss:

    'small'  : 48em,
    'medium' : 56.25em,
    'large'  : 68.75em,

* Use like this:

.foo {
  color: red;
  @include respond-to('small') {
    color: blue;
  }
}
*/
/*
    $FUNCTIONS
\*




/*
 * Function to keep font size consistent
 .selector { font-size: fs(x-small);}
 * You can see the current values and variables in settings.scss
 */
/*
 * Function to control Index
 	.selector { z-index: z(goku);}
 * Compiles:
	.selector { z-index: 9001;}
 * The MAP used for this is in constants.scss
 */
/*
 Settings for differents elements
*/
/*
    $CONSTANTS
\*
/**
 * Constant layout values, apart from these we can also declare values
 * for different blocks sizes and more.
 */
/*
* A simple solution to manage z-index
* We implement it with the z($layers) function:
.element {
 z-index: z(goku);
}
*
*/
/**
 * "Start with the small screen first, then expand until it looks like shit. Time to insert a breakpoint!"
 * We use it with a respond-to($breakpoint) mixin:

.text {
  color: pink;
  @include respond-to(medium) {
    color: maroon;
  }
}
 *
 */
/*------------------------------------*\
    $DIR
\*------------------------------------*/
/**
 * Sometimes we change image dir from develop to production:
 */
/*
 * In case we use local fonts (I use them fewer and fewer lately)
 */
/*
    $COLORS
\*
/**
 * Color Palette
 */
/**
 * Message Colors
 */
/*
    $FONTS
*/
@font-face {
  font-family: "Upheaval TT (BRK)";
  src: url("fonts/UpheavalTT-BRK-.eot");
  src: local("Upheaval TT -BRK-"), local("UpheavalTT-BRK-"), url("fonts/UpheavalTT-BRK-.eot?#iefix") format("embedded-opentype"), url("fonts/UpheavalTT-BRK-.woff2") format("woff2"), url("fonts/UpheavalTT-BRK-.woff") format("woff"), url("fonts/UpheavalTT-BRK-.ttf") format("truetype"), url("fonts/UpheavalTT-BRK-.svg#UpheavalTT-BRK-") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PT Sans B';
  src: url("fonts/PTSans-Bold.ttf");
  src: local("fonts/PTSans-Bold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'PT Sans';
  src: url("fonts/PTSans-Regular.ttf");
  src: local("fonts/PTSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

/*
 * Font Size variables are defined in a Scss MAP,
 * TODO: this MAP will create a class (in `utilities.scss`)
 * for every size with the value in REM units, you can check
 * `utilities.scss` if you need to change the loop:

 .x-small { font-size: .8rem}

 * We also have a function to assign font sizes, call `fs`:

  .selector { font-size: fs(x-small);}

 */
/*
 * Fonts definitions
 */
/*
 Base HTML elements
*/
/*
    $LINKS
*/
a {
  color: #21ACE3;
  cursor: pointer;
  font-weight: 400;
}
a:hover {
  text-decoration: underline;
  color: #fff;
}
a:focus {
  outline: 0;
  text-decoration: underline;
  color: #fff;
}
a:hover, a:active {
  outline: 0;
}

/*
    $TIPOGRAPHY
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "PT Sans B";
  font-weight: 600;
  color: #fff;
  text-rendering: optimizelegibility;
}

/* Set headers line-height, margin bottom and font size */
h1 {
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 1.5;
}

h2 {
  margin-bottom: 0;
  font-size: 1.37rem;
  line-height: 1.5;
}

h3 {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

h4 {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.5;
}

h5 {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.5;
}

h6 {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

p {
  margin-top: 0;
  font-weight: 400;
}

/*
 Scss Libraries, mixins, functions and any Scss focused logic
*/
/*
* Variables are in a map in settings.scss:

    'small'  : 48em,
    'medium' : 56.25em,
    'large'  : 68.75em,

* Use like this:

.foo {
  color: red;
  @include respond-to('small') {
    color: blue;
  }
}
*/
/*
    $FUNCTIONS
\*




/*
 * Function to keep font size consistent
 .selector { font-size: fs(x-small);}
 * You can see the current values and variables in settings.scss
 */
/*
 * Function to control Index
 	.selector { z-index: z(goku);}
 * Compiles:
	.selector { z-index: 9001;}
 * The MAP used for this is in constants.scss
 */
/*
 Settings for differents elements
*/
/*
    $CONSTANTS
\*
/**
 * Constant layout values, apart from these we can also declare values
 * for different blocks sizes and more.
 */
/*
* A simple solution to manage z-index
* We implement it with the z($layers) function:
.element {
 z-index: z(goku);
}
*
*/
/**
 * "Start with the small screen first, then expand until it looks like shit. Time to insert a breakpoint!"
 * We use it with a respond-to($breakpoint) mixin:

.text {
  color: pink;
  @include respond-to(medium) {
    color: maroon;
  }
}
 *
 */
/*------------------------------------*\
    $DIR
\*------------------------------------*/
/**
 * Sometimes we change image dir from develop to production:
 */
/*
 * In case we use local fonts (I use them fewer and fewer lately)
 */
/*
    $COLORS
\*
/**
 * Color Palette
 */
/**
 * Message Colors
 */
/*
    $FONTS
*/
@font-face {
  font-family: "Upheaval TT (BRK)";
  src: url("fonts/UpheavalTT-BRK-.eot");
  src: local("Upheaval TT -BRK-"), local("UpheavalTT-BRK-"), url("fonts/UpheavalTT-BRK-.eot?#iefix") format("embedded-opentype"), url("fonts/UpheavalTT-BRK-.woff2") format("woff2"), url("fonts/UpheavalTT-BRK-.woff") format("woff"), url("fonts/UpheavalTT-BRK-.ttf") format("truetype"), url("fonts/UpheavalTT-BRK-.svg#UpheavalTT-BRK-") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PT Sans B';
  src: url("fonts/PTSans-Bold.ttf");
  src: local("fonts/PTSans-Bold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'PT Sans';
  src: url("fonts/PTSans-Regular.ttf");
  src: local("fonts/PTSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

/*
 * Font Size variables are defined in a Scss MAP,
 * TODO: this MAP will create a class (in `utilities.scss`)
 * for every size with the value in REM units, you can check
 * `utilities.scss` if you need to change the loop:

 .x-small { font-size: .8rem}

 * We also have a function to assign font sizes, call `fs`:

  .selector { font-size: fs(x-small);}

 */
/*
 * Fonts definitions
 */
.cta, .primary, .button {
  font-size: 1rem;
  cursor: pointer;
  color: #cfd8dc;
  display: inline-block;
  border: none;
  border-radius: 3px;
  background: #0F1739;
  padding: 10px 36px;
  line-height: 1.5;
  font-weight: bold;
  border-radius: 1.5em;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-align: center;
  font-family: "PT Sans";
  text-decoration: none;
}
.cta:hover, .primary:hover, .button:hover {
  background: #21ACE3;
  text-decoration: none;
  -webkit-box-shadow: inset 5px 0 0 #178cba;
          box-shadow: inset 5px 0 0 #178cba;
}

.disabled,
button[disabled=disabled],
.disabled:hover,
.disabled:active {
  cursor: not-allowed;
}
.disabled.wrong,
button[disabled=disabled].wrong,
.disabled:hover.wrong,
.disabled:active.wrong {
  background-color: #EB7C80;
  -webkit-box-shadow: inset 5px 0 0 #f2a8ab;
          box-shadow: inset 5px 0 0 #f2a8ab;
}
.disabled.correct,
button[disabled=disabled].correct,
.disabled:hover.correct,
.disabled:active.correct {
  background-color: #85BB9A;
  -webkit-box-shadow: inset 5px 0 0 #a6cdb5;
          box-shadow: inset 5px 0 0 #a6cdb5;
}

.primary {
  border: 2px solid #fff;
  background-color: #fff;
  color: #000;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.primary:hover {
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  background-color: #bfbfbf;
  border: 2px solid #bfbfbf;
  color: #000;
}

.cta {
  border: 2px solid #21ACE3;
  background-color: #21ACE3;
  color: #000;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.cta:hover {
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  background-color: #0f5976;
  border: 2px solid #0f5976;
  color: #000;
}

.overwhite {
  border-color: #E3EBF5;
  color: #E3EBF5;
}
.overwhite:hover {
  border-color: white;
  color: white;
  background-color: transparent;
}

.buttonrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
}
.buttonrow.equally {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.buttonrow.equally [class^=button], .buttonrow.equally [class*=" button"] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 12px;
  margin-left: 0;
}
@media (min-width: 56.25em) {
  .buttonrow.align-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.buttonrow [class^=button], .buttonrow [class*=" button"] {
  width: 100%;
  margin-bottom: 12px;
}
@media (min-width: 56.25em) {
  .buttonrow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .buttonrow [class^=button], .buttonrow [class*=" button"] {
    width: auto;
    margin-bottom: 0;
  }
}

.responsive {
  display: block;
  width: 100%;
}
@media (min-width: 56.25em) {
  .responsive {
    display: inline-block;
    width: auto;
  }
}

.block {
  display: block;
  width: 100%;
}

.btn--next, .btn--back {
  position: absolute;
  background-color: #fff;
  border: none;
  padding: 28px 36px 28px 48px;
  text-align: center;
  font-family: "Upheaval TT (BRK)";
  color: #21ACE3;
  font-size: 28px;
  cursor: pointer;
}

.btn--next {
  right: 24px;
  bottom: 24px;
  border-radius: 95px 0 10px;
  -webkit-box-shadow: inset 5px 0 0 #cccccc;
          box-shadow: inset 5px 0 0 #cccccc;
}

.btn--back {
  left: 24px;
  bottom: 24px;
  border-radius: 0 95px 0 10px;
  -webkit-box-shadow: inset -5px 0 0 #cccccc;
          box-shadow: inset -5px 0 0 #cccccc;
}

.btn--cta {
  font-family: "Upheaval TT (BRK)";
  font-size: 28px;
  background-color: #fff;
  color: #21ACE3;
  line-height: 1.5;
  padding: 0 64px;
  -webkit-box-shadow: inset 5px 0 0 #cccccc;
          box-shadow: inset 5px 0 0 #cccccc;
}
.btn--cta:hover {
  color: #fff;
}

.btn-modal {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background-color: #85BB9A;
  border: none;
  padding: 28px 36px 28px 48px;
  text-align: center;
  font-family: "Upheaval TT (BRK)";
  color: #21ACE3;
  font-size: 28px;
  border-radius: 95px 0 10px;
  -webkit-box-shadow: inset 5px 0 0 #4e8c66;
          box-shadow: inset 5px 0 0 #4e8c66;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
.btn-modal--no {
  right: auto;
  left: 24px;
  border-radius: 0 90px 0 10px;
  padding: 28px 48px 28px 24px;
  -webkit-box-shadow: inset -5px 0 0 #dd242a;
          box-shadow: inset -5px 0 0 #dd242a;
  background-color: #EB7C80;
}

.final__btn--retry, .final__btn--exit {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 200px;
}
.final__btn--retry {
  right: auto;
  left: 24px;
}

/*
 Layout and general styles
*/
/*
 Main layout and HTML/BODY styles
*/
html {
  background: #0F1739;
  font-size: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: transparent;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

.content {
  background-color: #002E6D;
  background-image: url("../assets/images/bg-geometric.png"), url("../assets/images/pattern.png");
  background-repeat: no-repeat, repeat;
  background-size: 80%, auto;
  background-position: center, center;
  height: 90vh;
  max-width: 1500px;
  width: 90vw;
  border-radius: 30px;
  border: 1px solid #E3EBF5;
  position: relative;
}
.content--motion {
  background-image: url("../assets/images/pattern.png");
  background-repeat: repeat;
  background-size: 10px;
  background-position: center;
  overflow: hidden;
}

/*
 Utilities as a last resource, so we can avoid some !importants
*/
/* Displays */
.block {
  display: block;
  width: 100%;
}

.relative {
  position: relative;
}

/* Margins */
.margin-bottom-s {
  margin-bottom: 12px;
}

.margin-bottom {
  margin-bottom: 24px;
}

.margin-bottom-x2 {
  margin-bottom: 48px;
}

.margin-bottom-x3 {
  margin-bottom: 72px;
}

.margin-bottom-x4 {
  margin-bottom: 96px;
}

.margin-left {
  margin-left: 24px;
}

.margin-lef-x2 {
  margin-left: 48px;
}

.no-margin {
  margin: 0;
}

/* Paddings */
.padding-top {
  padding-top: 24px;
}

.padding-top-x2 {
  padding-top: 48px;
}

.padding-top-x4 {
  padding-top: 96px;
}

.padding-hor {
  padding-left: 24px;
  padding-right: 24px;
}

/* Aligns */
.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.maxwidth {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  width: 100%;
}

.maxwidth--small {
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  width: 100%;
}

/*
*
*   Classes for font- sizes, you can check them in _fonts.scss
*   Same name of the variables with the `font-` prefix

    .font-x-small {
        font-size: .9rem;
    }

    *
 */
.font-x-small {
  font-size: 0.6rem;
}

.font-small {
  font-size: 0.875rem;
}

.font-normal {
  font-size: 1rem;
}

.font-big {
  font-size: 1.125rem;
}

.font-bigger {
  font-size: 1.5rem;
}

.font-huge {
  font-size: 2.5rem;
}

.font-x-huge {
  font-size: 3.5rem;
}

.visuallyhidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.text-break {
  word-break: break-all;
}

hr {
  clear: both;
  display: block;
  margin: 24px;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #E3EBF5;
}

.activate-dot, .finnished .indicator__step--1, .aquifero--on .indicator__step--5, .river--on .indicator__step--4, .rain--on .indicator__step--3, .steam--on .indicator__step--2, .sun--on .indicator__step--1 {
  background-color: #fff;
  border-color: #fff;
}

.de-activate-dot {
  border-color: #003478;
  background-color: #003478;
}

.sun--on .sun {
  -webkit-animation: sun 1s forwards 1;
          animation: sun 1s forwards 1;
  opacity: 1;
}
.sun--on ~ .message#message1 {
  opacity: 1;
}
.steam--on .sun {
  -webkit-animation: sun--out 1s forwards 1;
          animation: sun--out 1s forwards 1;
  opacity: 0;
}
.steam--on ~ .message#message1 {
  opacity: 0;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.steam--on .steamarea {
  opacity: 1;
}
.steam--on .clouds {
  opacity: 1;
}
.steam--on ~ .message#message2 {
  opacity: 1;
}
.rain--on .clouds {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 1;
}
.rain--on .rain {
  opacity: 1;
  -webkit-animation: rain 1s infinite;
          animation: rain 1s infinite;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.rain--on .snow {
  opacity: 1;
}
.rain--on ~ .message#message2 {
  opacity: 0;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.rain--on ~ .message#message3 {
  opacity: 1;
}

.river--on .clouds {
  opacity: 0;
}
.river--on .rain {
  opacity: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.river--on .snow {
  opacity: 0;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.river--on ~ .message#message3 {
  opacity: 0;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.river--on ~ .message#message4 {
  opacity: 1;
}
.river--on .waterfall {
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: 1;
}
.river--on .ola g {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.river--on .st7 {
  opacity: 1;
}

.aquifero--on ~ .message#message5 {
  opacity: 1;
}
.aquifero--on ~ .message#message4 {
  opacity: 0;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.aquifero--on #SVGID_12_ {
  -webkit-transition: all 1s ease-in;
  -o-transition: all 1s ease-in;
  transition: all 1s ease-in;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}
.aquifero--on .innerriver {
  -webkit-transition: all 1s ease-in;
  -o-transition: all 1s ease-in;
  transition: all 1s ease-in;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}
.aquifero--on .ola g {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 0;
}
.aquifero--on .st7 {
  opacity: 0;
}
.aquifero--on .sun {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
}

.finnished ~ .message#message5 {
  opacity: 0;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.finnished ~ .comprobar {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.finnished .sun {
  opacity: 1;
}

@-webkit-keyframes sun {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f9d162;
            box-shadow: 0 0 0 0 #f9d162;
  }
  25% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6);
  }
  75% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5), 0 0 0 270px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5), 0 0 0 270px rgba(249, 209, 98, 0.4);
  }
}

@keyframes sun {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f9d162;
            box-shadow: 0 0 0 0 #f9d162;
  }
  25% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6);
  }
  75% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5), 0 0 0 270px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5), 0 0 0 270px rgba(249, 209, 98, 0.4);
  }
}
@-webkit-keyframes sun--out {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f9d162, 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5), 0 0 0 270px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 0 #f9d162, 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5), 0 0 0 270px rgba(249, 209, 98, 0.4);
  }
  25% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6);
  }
  75% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 0px rgba(249, 209, 98, 0.4);
    opacity: 0;
  }
}
@keyframes sun--out {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f9d162, 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5), 0 0 0 270px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 0 #f9d162, 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5), 0 0 0 270px rgba(249, 209, 98, 0.4);
  }
  25% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6), 0 0 0 170px rgba(249, 209, 98, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4), 0 0 0 70px rgba(249, 209, 98, 0.6);
  }
  75% {
    -webkit-box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 30px rgba(249, 209, 98, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0px rgba(249, 209, 98, 0.4);
            box-shadow: 0 0 0 0px rgba(249, 209, 98, 0.4);
    opacity: 0;
  }
}
/* animation keyframes */
@-webkit-keyframes rain {
  from {
    background-position: 0 0px;
    opacity: 1;
  }
  to {
    background-position: 224px 224px;
    opacity: 1;
  }
}
@keyframes rain {
  from {
    background-position: 0 0px;
    opacity: 1;
  }
  to {
    background-position: 224px 224px;
    opacity: 1;
  }
}
@-webkit-keyframes rain2 {
  from {
    background-position: 64px 64px;
  }
  to {
    background-position: 288px 288px;
  }
}
@keyframes rain2 {
  from {
    background-position: 64px 64px;
  }
  to {
    background-position: 288px 288px;
  }
}
@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 500;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 500;
  }
}
@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
#start__screen {
  position: relative;
  background-image: url("../images/bg-drop.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 400px auto;
}
#start__screen::before {
  width: 80%;
  height: 100%;
  position: absolute;
  top: 10%;
  left: 10%;
  content: "";
  display: block;
  background: url("../images/screen_start_bg-01.svg") no-repeat center top;
}

.message {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 90%;
  color: #fff;
  padding: 48px 24px;
  font-weight: 400;
  z-index: 900;
}
.message__title {
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.message .light {
  color: #90d5f1;
}

.message__desc {
  width: 50%;
  position: absolute;
  left: 24px;
  bottom: 24px;
}
.message__desc .light {
  color: #90d5f1;
}

.btn__start {
  position: absolute;
  background-color: #fff;
  border: none;
  padding: 10px 62px 10px 62px;
  text-align: center;
  font-family: "Upheaval TT (BRK)";
  color: #21ACE3;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  border-radius: 30px;
  right: 24px;
  bottom: 24px;
  -webkit-box-shadow: inset 10px 0 0 #cccccc;
          box-shadow: inset 10px 0 0 #cccccc;
}
.btn__start:hover {
  text-decoration: none;
  color: #003478;
}