/*
 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;
}

.ui-tabs {
  zoom: 1;
  height: 100%;
}

.ui-tabs .ui-tabs-nav {
  list-style: none;
  position: absolute;
  top: 0;
  left: 10px;
  padding: 2px 2px 0;
  overflow: hidden;
  top: 1px;
  z-index: 100;
  display: inline-block;
}

.ui-tabs .ui-tabs-nav li {
  position: relative;
  float: left;
  border-bottom-width: 0 !important;
  margin: 0 2px -1px 0;
  background: #0F1839;
}

.ui-tabs .ui-tabs-nav li {
  position: relative;
  float: left;
  border-bottom-width: 0 !important;
  margin: 0 2px -1px 0;
  background: #0F1839;
}

.ui-tabs .ui-tabs-nav li:first-child {
  border-radius: 10px 0 0 0;
}

.ui-tabs .ui-tabs-nav li:last-child {
  border-radius: 0 0 10px 0;
}

.ui-tabs .ui-tabs-nav li a {
  float: left;
  text-decoration: none;
  padding: 5px 30px 5px 30px;
  color: #3E4561;
  font-family: "PT Sans B";
  font-size: 20px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  padding-bottom: 1px;
  border-bottom-width: 0;
  background: #21ACE3;
  color: #fff;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  color: #fff;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-state-processing a {
  cursor: text;
}

.ui-tabs .ui-tabs-nav li a,
.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  cursor: pointer;
}

/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
  padding: 20px;
  display: block;
  border-width: 0;
  background: none;
  position: relative;
  min-height: 200px;
  height: 100%;
  padding: 100px 15px 15px 15px;
}

.ui-tabs .ui-tabs-hide {
  display: none;
}

.btn--next, .btn--back {
  outline: 0px;
}

.btn--next:hover, .btn--back:hover {
  color: #fff;
}

/* a.mover 							{ background: #900; padding: 6px 12px; position: absolute;
								      color: white; font-weight: bold; text-decoration: none; }
.next-tab 							{ bottom: 0; right: 0; -moz-border-radius-topleft: 10px; -webkit-border-top-left-radius: 10px; }
.prev-tab 							{ bottom: 0; left: 0; -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px; } */
.quiz__panel {
  position: relative;
}

.quiz_image__holder {
  text-align: center;
  width: 100%;
  height: 100%;
}

.quiz_image__holder img, .quiz_image__holder svg {
  max-width: 992px;
  width: 100%;
  max-height: 100%;
}

.quiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.quiz__start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/images/bg-geometric-start.png"), url("../assets/images/pattern.png");
  background-repeat: no-repeat, repeat;
  background-size: 80%, auto;
  background-position: center, center;
}
.quiz__title {
  font-size: 80px;
  max-width: 60%;
  text-align: center;
  text-transform: uppercase;
  color: #21ACE3;
  line-height: 1;
  margin-bottom: 24px;
}
.quiz__title:before {
  content: "";
  display: block;
  background-image: url("../assets/images/quiz.png");
  width: 150px;
  height: 48px;
  margin: 0 auto;
}
.quiz__option {
  width: 50%;
  padding: 10px 20px 10px 0;
  display: inline-block;
}
@media (min-width: 1600px) {
  .quiz__option {
    padding: 24px 48px 24px 0;
  }
}
.quiz__question {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 96px;
}
.quiz__question h1 {
  padding-right: 40%;
  margin-bottom: 24px;
  font-size: 28px;
}
@media (min-width: 1600px) {
  .quiz__question h1 {
    font-size: 2.5rem;
  }
}
.quiz__question .quiz__buttons-container {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
.quiz__question .imagecontainer {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  text-align: center;
  margin-top: -50px;
}
.quiz__question .imagecontainer img {
  max-width: 80%;
  height: 100%;
}

.topbar {
  width: auto;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px;
  position: absolute;
  z-index: 200;
}
@media (min-width: 1600px) {
  .topbar {
    padding: 24px;
  }
}
.topbar__counter {
  margin: 0 24px;
  padding: 16px 24px;
  background-image: url("../assets/images/bgbutton-pink.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Upheaval TT (BRK)";
  font-size: 12px;
  color: #FFEBA1;
}
@media (min-width: 1600px) {
  .topbar__counter {
    padding: 28px 24px;
    font-size: 22px;
  }
}
.topbar__exit img, .topbar__help img {
  width: 85px;
  margin-bottom: 15px;
}

.well {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  background-color: #003478;
  border: 1px solid #85BB9A;
  padding: 12px;
}
.well > p:first-child {
  display: none;
}
.well p {
  margin-bottom: 0;
}

#quiz-body {
  width: 100%;
}

.modal__container {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s;
  -o-transition: visibility 0s linear 0.3s, opacity 0.3s;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal__container.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.modal__overlay {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 6em;
  left: 50%;
  width: 32em;
  margin-left: -16em;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
}
.modal-wrapper.modal-transition {
  -webkit-transition: all 0.3s 0.12s;
  -o-transition: all 0.3s 0.12s;
  transition: all 0.3s 0.12s;
  -webkit-transform: translateY(-10%);
      -ms-transform: translateY(-10%);
          transform: translateY(-10%);
  opacity: 0;
}

.is-visible .modal-transition {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #21ace3;
  width: 70%;
  height: 70vh;
  border-radius: 30px;
  background-image: url("../assets/images/bg-geometric.png");
  background-repeat: no-repeat;
  background-size: 80%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid gray;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px;
}
.modal__title {
  font-size: 42px;
  line-height: 1;
}
.modal .modal__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 23%;
  margin-right: 15px;
  margin-left: 30px;
}
.modal .modal__image img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .modal__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  padding: 20px;
}

.final {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  text-align: center;
  padding-top: 100px;
  background-color: pink;
  z-index: 2000;
  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;
}
.final h1 {
  font-size: 54px;
}
.final > img {
  max-width: 150px;
  margin-bottom: 12px;
}
.final .correct, .final .wrong {
  display: inline-block;
  width: 40px;
  margin-right: 8px;
  margin-bottom: 12px;
}
.final p {
  font-size: 51px;
  font-family: "PT Sans B";
}
.final__btn--retry, .final__btn--exit {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 200px;
}
.final__btn--retry {
  right: auto;
  left: 24px;
}

#shower,
#toilet,
#shink,
#shaver,
#hair,
g.quiz_modal {
  cursor: pointer;
  display: block;
}
#shower:hover circle, #shower.answered circle,
#toilet:hover circle,
#toilet.answered circle,
#shink:hover circle,
#shink.answered circle,
#shaver:hover circle,
#shaver.answered circle,
#hair:hover circle,
#hair.answered circle,
g.quiz_modal:hover circle,
g.quiz_modal.answered circle {
  fill: #86BC9B !important;
}
#shower:hover .glow,
#toilet:hover .glow,
#shink:hover .glow,
#shaver:hover .glow,
#hair:hover .glow,
g.quiz_modal:hover .glow {
  fill: white !important;
}
#shower.answered .glow,
#toilet.answered .glow,
#shink.answered .glow,
#shaver.answered .glow,
#hair.answered .glow,
g.quiz_modal.answered .glow {
  display: none;
  fill: white !important;
}

.glow {
  fill: white !important;
  fill-opacity: 0;
  display: block;
}
.glow:nth-child(1) {
  -webkit-animation: glow 3s ease-in-out 0s infinite;
          animation: glow 3s ease-in-out 0s infinite;
}
.glow:nth-child(2) {
  -webkit-animation: glow2 3s ease-in-out 0s infinite;
          animation: glow2 3s ease-in-out 0s infinite;
}
.glow:nth-child(3) {
  -webkit-animation: glow3 3s ease-in-out 0s infinite;
          animation: glow3 3s ease-in-out 0s infinite;
}

@-webkit-keyframes glow {
  0% {
    fill-opacity: 0;
  }
  40% {
    fill-opacity: 0.8;
  }
  100% {
    fill-opacity: 0;
  }
}

@keyframes glow {
  0% {
    fill-opacity: 0;
  }
  40% {
    fill-opacity: 0.8;
  }
  100% {
    fill-opacity: 0;
  }
}
@-webkit-keyframes glow2 {
  0% {
    fill-opacity: 0;
  }
  60% {
    fill-opacity: 0.6;
  }
  100% {
    fill-opacity: 0;
  }
}
@keyframes glow2 {
  0% {
    fill-opacity: 0;
  }
  60% {
    fill-opacity: 0.6;
  }
  100% {
    fill-opacity: 0;
  }
}
@-webkit-keyframes glow3 {
  0% {
    fill-opacity: 0;
  }
  80% {
    fill-opacity: 0.4;
  }
  100% {
    fill-opacity: 0;
  }
}
@keyframes glow3 {
  0% {
    fill-opacity: 0;
  }
  80% {
    fill-opacity: 0.4;
  }
  100% {
    fill-opacity: 0;
  }
}
.form_data {
  display: inline-block;
}
.form_data + .form_data {
  display: none;
}

.input_container {
  margin-bottom: 25px;
}

input[type=radio] {
  display: none;
  margin: 10px;
}

input[type=radio] + label {
  display: inline-block;
  margin: 5px;
  padding: 10px 30px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.input_other {
  display: inline-block;
  margin: 5px;
  padding: 10px 10px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 25px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #fff;
  width: 80px;
  outline: 0px;
  text-align: center;
}

.modal__content input[type=radio] + label {
  margin: 60px 5px 5px 5px;
}

input[type=radio]:checked + label, input[type=radio]:hover + label {
  background-image: none;
  background-color: #0F1739;
}

.text_other {
  visibility: hidden;
  -webkit-transition: all 0.3s 0.12s;
  -o-transition: all 0.3s 0.12s;
  transition: all 0.3s 0.12s;
  -webkit-transform: translateY(-10%);
      -ms-transform: translateY(-10%);
          transform: translateY(-10%);
  opacity: 0;
}
.text_other input {
  display: inline-block;
  margin: 5px;
  padding: 10px 25px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 50%;
  min-width: 300px;
  outline: 0px;
  color: #fff;
}

input[type=radio]:checked + label + .text_other {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.quiz__back {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  text-decoration: none;
  text-transform: uppercase;
}
.quiz__back:before {
  display: inline-block;
  margin: 0 10px -5px 0;
  width: 25px;
  height: 25px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  content: "";
}
.quiz__back:hover {
  text-decoration: none;
}

.quiz__next, .quiz__close {
  display: none;
}

.result__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
  max-width: 900px;
  min-height: 500px;
  margin: 5% auto 0 auto;
  padding: 30px;
  border-radius: 30px;
  background: #0F1839 url("../images/bg-drop.png") no-repeat center center;
  background-size: auto 70%;
}
.result__content > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.result__content #house {
  margin-right: 15px;
}
.result__content #house h1, .result__content #house h2 {
  color: #CCE2BC;
}
.result__content h1, .result__content h2 {
  color: #21ACE3;
  font-family: "PT Sans B";
}
.result__content h1 {
  font-size: 70px;
}
.result__content h2 {
  font-size: 32px;
}
.result__content h2, .result__content p {
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result__content h2 span, .result__content p span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.result__content p {
  color: #9DB5DB;
  font-family: "PT Sans B";
  font-size: 22px;
}
.result__content img.icon {
  width: 50px;
  margin-right: 15px;
}
.result__content hr {
  margin: 20px 0;
  padding: 0;
  border-color: 1px solid #9DB5DB;
}
.result #result_note {
  text-align: center;
  line-height: 1.3;
  margin-top: 15px;
}
.result #result_note img.icon {
  width: 50px;
  margin-right: 15px;
}
.result .btn-modal {
  padding: 15px 36px 17px 48px;
  width: 200px;
}
.result .btn-modal img {
  width: 45px;
}

.hidden {
  display: none !important;
}