@charset "UTF-8";
/* unicode: ✓ */
@font-face {
  font-family: Galano;
  src: url("../fonts/GalanoGrotesque-Bold.woff2") format("woff2"), url("../fonts/GalanoGrotesque-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

:root {
  --full-height: 100vh;
  --full-width: 100vw;
  --padding: 6.25vw;
  --coloured-header-height: calc( 42vw + 50px );
  --header-logo-height: 8.75vw;
  --header-button-size: calc( 3.5vw + 14px );
  --suggest-icon-size: calc( 5vw + 10px );
  --suggest-button-size: calc( 22vw + 26px ); }
  @media (min-width: 960px) {
    :root {
      --padding: calc( 62.5vw - 540px ); } }
  @media (min-width: 1024px) {
    :root {
      --full-width: 1024px;
      --padding: 100px;
      --coloured-header-height: 480px;
      --header-logo-height: 70px;
      --header-button-size: 50px;
      --suggest-button-size: 250px;
      --suggest-icon-size: 70px; } }

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

html {
  background: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font: bold 15px Galano, sans-serif;
  font-size: calc( 2.8vw + 6px);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }
  @media (min-width: 1024px) {
    html {
      font-size: 35px; } }

body {
  margin: 0;
  overflow: hidden; }

button {
  background-color: #ba28ba;
  border: none;
  border-radius: 1.33em;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-size: .87em;
  letter-spacing: .384em;
  padding: 1em;
  text-transform: uppercase; }
  button:focus {
    outline: none; }
  button::-moz-focus-inner {
    border: 0; }
  button:disabled {
    background: #752682;
    color: rgba(255, 255, 255, 0.25); }
  @media (min-width: 1024px) {
    button {
      font-size: 18px; } }

mark,
strong {
  background: none;
  color: #fc58c9; }

.wrapper {
  height: 100vh;
  height: var(--full-height);
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
  position: fixed;
  width: 100vw; }
  .wrapper:before {
    background: 62% 40%/525% url("../images/squiggle.svg");
    content: '';
    display: block;
    height: 100%;
    opacity: .25;
    position: fixed;
    width: 100%;
    z-index: -10; }

.coloured-header {
  background: #ba28ba;
  display: block;
  height: calc( 42vw + 50px );
  height: var(--coloured-header-height);
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(calc( -1 * calc( 42vw + 50px )));
      -ms-transform: translateY(calc( -1 * calc( 42vw + 50px )));
          transform: translateY(calc( -1 * calc( 42vw + 50px )));
  -webkit-transform: translateY(calc( -1 * var(--coloured-header-height)));
      -ms-transform: translateY(calc( -1 * var(--coloured-header-height)));
          transform: translateY(calc( -1 * var(--coloured-header-height)));
  width: 100vw;
  z-index: -20; }
  .header--coloured .coloured-header {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: .15s transform, .2s background-color;
    -o-transition: .15s transform, .2s background-color;
    transition: .15s transform, .2s background-color; }
  .coloured-header:before, .coloured-header:after {
    bottom: 0;
    border-radius: 100vw 100vw 0 0;
    content: '';
    height: 100vw;
    left: 50%;
    margin: 0 -100vw;
    position: absolute;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: bottom center;
        -ms-transform-origin: bottom center;
            transform-origin: bottom center;
    -webkit-transition: .2s transform;
    -o-transition: .2s transform;
    transition: .2s transform;
    width: 200vw; }
  .coloured-header:before {
    background: #0dbd66; }
  .coloured-header:after {
    background: #d64000; }
  [data-header-colour=green] .coloured-header:before,
  [data-header-colour=red] .coloured-header:after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition-duration: .5s;
         -o-transition-duration: .5s;
            transition-duration: .5s; }

header {
  padding: 6.25vw;
  padding: var(--padding);
  position: absolute;
  width: 100%;
  z-index: 20; }
  header h1 {
    margin: 0; }
    header h1 svg {
      display: block;
      height: 8.75vw;
      height: var(--header-logo-height);
      margin: auto;
      position: relative;
      z-index: 20; }
    header h1 .text {
      -webkit-transition: .2s fill;
      -o-transition: .2s fill;
      transition: .2s fill; }
      .header--coloured header h1 .text {
        fill: #fff; }
    header h1 .curl {
      -webkit-transition: .2s fill;
      -o-transition: .2s fill;
      transition: .2s fill; }
      .header--coloured[data-header-colour=green] header h1 .curl {
        fill: #72eb79; }
      .header--coloured[data-header-colour=red] header h1 .curl {
        fill: #ff4f02; }
  header .modal .open,
  header .modal .close {
    background: #752682 no-repeat center/80%;
    border-radius: 50%;
    height: calc( 3.5vw + 14px );
    height: var(--header-button-size);
    margin: 6.25vw;
    margin: var(--padding);
    position: absolute;
    top: 0;
    width: calc( 3.5vw + 14px );
    width: var(--header-button-size); }
  header .modal .open {
    -webkit-transition: .15s background-color;
    -o-transition: .15s background-color;
    transition: .15s background-color; }
    .header--coloured header .modal .open {
      background-color: #fc58c9; }
    .header--coloured[data-header-colour=green] header .modal .open {
      background-color: #72eb79; }
    .header--coloured[data-header-colour=red] header .modal .open {
      background-color: #ff4f02; }
  header .modal .content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #752682;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    padding-top: calc( 2*6.25vw + 8.75vw);
    padding-top: calc( 2*var(--padding) + var(--header-logo-height));
    position: absolute;
    overflow: hidden;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: .3s transform;
    -o-transition: .3s transform;
    transition: .3s transform;
    top: -100vh;
    width: 100%;
    z-index: 10; }
    header .modal .content > div {
      overflow: auto;
      padding: 0 6.25vw;
      padding: 0 var(--padding);
      width: 100%; }
      header .modal .content > div:after {
        content: '';
        display: block;
        margin-top: 6.25vw;
        margin-top: var(--padding); }
      header .modal .content > div > :first-child {
        margin-top: 0; }
    header .modal .content p {
      margin: 1em auto; }
  header .modal .close {
    background-color: #fc58c9;
    background-image: url("../images/cross.svg");
    opacity: 0;
    -webkit-transform: translateY(100vh);
        -ms-transform: translateY(100vh);
            transform: translateY(100vh);
    -webkit-transition: .3s opacity, .3s transform;
    -o-transition: .3s opacity, .3s transform;
    transition: .3s opacity, .3s transform; }
  header .modal.is--active .content {
    -webkit-transform: translateY(100vh);
        -ms-transform: translateY(100vh);
            transform: translateY(100vh); }
  header .modal.is--active .close {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  header .modal.more-info .open {
    right: 0;
    background-image: url("../images/question-mark.svg"); }
  header .modal.more-info .content {
    text-align: left; }
    header .modal.more-info .content p {
      max-width: 20em; }
  header .modal.more-info .close {
    right: 0; }
  header .modal.start-over .open {
    left: 0;
    background-image: url("../images/refresh.svg"); }
  header .modal.start-over .content p {
    max-width: 12em; }
  header .modal.start-over .content div button {
    margin: 1em 0;
    max-width: 342px;
    width: 100%; }
  header .modal.start-over .close {
    left: 0; }

.step {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  min-height: var(--full-height);
  padding: 6.25vw;
  padding: var(--padding);
  position: relative; }
  .step[hidden] {
    display: none; }
  .step .next {
    margin: auto auto 0;
    max-width: 342px;
    width: 100%; }

.step--splash,
.step--loading {
  color: #000;
  position: absolute;
  top: 0;
  -webkit-transition: visibility .4s;
  -o-transition: visibility .4s;
  transition: visibility .4s;
  width: 100%;
  z-index: 100; }
  .step--splash .background,
  .step--loading .background {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10; }
    .step--splash .background > *,
    .step--loading .background > * {
      background: center/cover #fc58c9;
      display: block;
      position: absolute;
      -webkit-transition: -webkit-transform .25s;
      transition: -webkit-transform .25s;
      -o-transition: transform .25s;
      transition: transform .25s;
      transition: transform .25s, -webkit-transform .25s;
      width: 50%;
      will-change: transform; }
    .step--splash .background > :nth-child(1),
    .step--loading .background > :nth-child(1) {
      background-image: url("../images/colour-flip-1.gif");
      height: 33.3%;
      left: 0;
      top: 0;
      -webkit-transition-delay: .15s;
           -o-transition-delay: .15s;
              transition-delay: .15s; }
    .step--splash .background > :nth-child(2),
    .step--loading .background > :nth-child(2) {
      background-image: url("../images/colour-flip-4.gif");
      height: 66.7%;
      right: 0;
      top: 0;
      -webkit-transition-delay: .05s;
           -o-transition-delay: .05s;
              transition-delay: .05s; }
    .step--splash .background > :nth-child(3),
    .step--loading .background > :nth-child(3) {
      background-image: url("../images/colour-flip-3.gif");
      bottom: 0;
      height: 66.7%;
      left: 0;
      -webkit-transition-delay: .1s;
           -o-transition-delay: .1s;
              transition-delay: .1s; }
    .step--splash .background > :nth-child(4),
    .step--loading .background > :nth-child(4) {
      background-image: url("../images/colour-flip-2.gif");
      bottom: 0;
      height: 33.3%;
      right: 0; }
  .step--splash .content,
  .step--loading .content {
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    will-change: transform; }
  .step--splash[hidden],
  .step--loading[hidden] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden; }
    .step--splash[hidden] .background > :nth-child(1),
    .step--loading[hidden] .background > :nth-child(1) {
      -webkit-transform: translateY(-100%);
          -ms-transform: translateY(-100%);
              transform: translateY(-100%); }
    .step--splash[hidden] .background > :nth-child(2),
    .step--loading[hidden] .background > :nth-child(2) {
      -webkit-transform: translateX(100%);
          -ms-transform: translateX(100%);
              transform: translateX(100%); }
    .step--splash[hidden] .background > :nth-child(3),
    .step--loading[hidden] .background > :nth-child(3) {
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%); }
    .step--splash[hidden] .background > :nth-child(4),
    .step--loading[hidden] .background > :nth-child(4) {
      -webkit-transform: translateY(100%);
          -ms-transform: translateY(100%);
              transform: translateY(100%); }
    .step--splash[hidden] .content,
    .step--loading[hidden] .content {
      -webkit-transform: translateX(-100vw);
          -ms-transform: translateX(-100vw);
              transform: translateX(-100vw);
      transform-duration: .3s; }
    :not([hidden]) + .step--splash[hidden] .background > :nth-child(1), :not([hidden]) +
    .step--loading[hidden] .background > :nth-child(1) {
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%); }
    :not([hidden]) + .step--splash[hidden] .background > :nth-child(2), :not([hidden]) +
    .step--loading[hidden] .background > :nth-child(2) {
      -webkit-transform: translateY(-100%);
          -ms-transform: translateY(-100%);
              transform: translateY(-100%); }
    :not([hidden]) + .step--splash[hidden] .background > :nth-child(3), :not([hidden]) +
    .step--loading[hidden] .background > :nth-child(3) {
      -webkit-transform: translateY(100%);
          -ms-transform: translateY(100%);
              transform: translateY(100%); }
    :not([hidden]) + .step--splash[hidden] .background > :nth-child(4), :not([hidden]) +
    .step--loading[hidden] .background > :nth-child(4) {
      -webkit-transform: translateX(100%);
          -ms-transform: translateX(100%);
              transform: translateX(100%); }
    :not([hidden]) + .step--splash[hidden] .content, :not([hidden]) +
    .step--loading[hidden] .content {
      -webkit-transform: translateX(100vw);
          -ms-transform: translateX(100vw);
              transform: translateX(100vw); }

.step--splash {
  overflow: hidden;
  padding: 0; }
  .step--splash .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    height: var(--full-height);
    padding: 6.25vw;
    padding: var(--padding); }
  .step--splash svg {
    bottom: calc( 66.7% + 6.25vw);
    bottom: calc( 66.7% + var(--padding));
    fill: black;
    right: calc( 50% + 6.25vw);
    right: calc( 50% + var(--padding));
    max-height: calc( 33.3% - 2 * 6.25vw);
    max-height: calc( 33.3% - 2 * var(--padding));
    position: absolute;
    width: calc( 50% - 2 * 6.25vw);
    width: calc( 50% - 2 * var(--padding)); }
  .step--splash span {
    bottom: 33.3%;
    font-size: 5.625vw;
    padding: 6.25vw;
    padding: var(--padding);
    position: absolute;
    left: 50%;
    text-align: center;
    text-transform: uppercase;
    width: 50%; }
  .step--splash .next {
    background: #000; }
  @media (min-width: 1024px) {
    .step--splash span {
      font-size: 56px; } }

.step--explain,
.step--start {
  padding-top: calc( 6.25vw + 8.75vw);
  padding-top: calc( var(--padding) + var(--header-logo-height)); }
  .step--explain:before,
  .step--start:before {
    content: '';
    margin-bottom: auto; }
  .step--explain p,
  .step--start p {
    margin: 1em auto;
    max-width: 19em; }

.explain--intro p:nth-of-type(2) mark {
  color: #0dbd66; }

.step--start p {
  max-width: 18em; }

.step--start ul {
  list-style: none;
  margin: 0 auto;
  max-width: 22em;
  padding: 0;
  font-size: 15px; }
  .step--start ul li {
    border-radius: 1em;
    display: inline-block;
    margin: .5em;
    overflow: hidden; }
  .step--start ul label {
    display: inline-block; }
  .step--start ul input {
    position: absolute;
    opacity: 0; }
  .step--start ul span {
    background: #303030;
    display: block;
    padding: .9em;
    text-transform: capitalize; }
  .step--start ul :checked + span {
    background: #0a8555; }

@media (min-width: 500px) {
  .step--start ul {
    font-size: .75em; }
    .step--start ul span {
      padding-left: 1.2em;
      padding-right: 1.2em; } }

@media (min-width: 1024px) {
  .step--start ul {
    font-size: 26px; }
    .step--start ul span {
      padding-bottom: .5em;
      padding-top: .5em; } }

.step--loading {
  font-size: 1.2em;
  line-height: 1.17;
  text-transform: uppercase; }
  .step--loading .content {
    background: #ff96a8;
    padding: 6.25vw;
    padding: var(--padding); }
  .step--loading p {
    margin: auto;
    max-width: 12em; }
  @media (min-width: 1024px) {
    .step--loading {
      font-size: 1em; } }

.step--search,
.step--suggest {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 0; }
  .step--search .suggestion,
  .step--suggest .suggestion {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: calc( calc( 42vw + 50px ) + calc( 5vw + 10px )/2);
    height: calc( var(--coloured-header-height) + var(--suggest-icon-size)/2);
    padding-top: 24vw;
    position: relative;
    z-index: 10; }
    .step--search .suggestion .word,
    .step--suggest .suggestion .word {
      display: block;
      font-size: 2em;
      margin-top: 13px;
      text-transform: uppercase; }
    .step--search .suggestion:after,
    .step--suggest .suggestion:after {
      background: no-repeat center #fc58c9;
      background-image: url("../images/down.svg");
      background-size: calc(calc( 5vw + 10px ) * .56);
      background-size: calc(var(--suggest-icon-size) * .56);
      border-radius: 50%;
      bottom: 0;
      content: '';
      display: block;
      height: calc( 5vw + 10px );
      height: var(--suggest-icon-size);
      margin: 0 calc( -.5 * calc( 5vw + 10px ));
      margin: 0 calc( -.5 * var(--suggest-icon-size));
      left: 50%;
      position: absolute;
      -webkit-transition: .2s background-color;
      -o-transition: .2s background-color;
      transition: .2s background-color;
      width: calc( 5vw + 10px );
      width: var(--suggest-icon-size); }
      [data-header-colour=green] .step--search .suggestion:after, [data-header-colour=green]
      .step--suggest .suggestion:after {
        background-color: #72eb79;
        background-image: url("../images/tick.svg"); }
      [data-header-colour=red] .step--search .suggestion:after, [data-header-colour=red]
      .step--suggest .suggestion:after {
        background-color: #ff4f02;
        background-image: url("../images/cross.svg"); }
  @media (min-width: 1024px) {
    .step--search .suggestion,
    .step--suggest .suggestion {
      padding-top: 238px; }
      .step--search .suggestion .word,
      .step--suggest .suggestion .word {
        font-size: 80px; } }

.step--search p {
  margin: 16px auto;
  text-align: left;
  width: 100%; }

.step--search ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: calc( 100vw - 2 * 6.25vw);
  width: calc( var(--full-width) - 2 * var(--padding)); }
  .step--search ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .5em; }
  .step--search ul .word {
    text-transform: capitalize; }
  .step--search ul .result--start .word {
    color: #0dbd66; }
  .step--search ul .result--yes .word {
    color: #0dbd66; }
  .step--search ul .result--no .word {
    color: #d64000; }
  .step--search ul .weight {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s; }
    .step--search ul .weight[hidden] {
      opacity: 0; }
    .step--search ul .weight:before {
      background: #fff;
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
      background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
      background: -o-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
      background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
      content: '';
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      height: 1px;
      margin: 0 1em;
      max-width: calc( 100% - 3.8em); }

.step--search .match {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: .5em auto auto;
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
  width: calc( 100vw - 2 * 6.25vw);
  width: calc( var(--full-width) - 2 * var(--padding)); }
  .step--search .match[hidden] {
    opacity: 0; }
  .step--search .match .score {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: right; }
    .step--search .match .score:before {
      margin-right: 8px; }

.step--search.result--pass .match .score {
  color: #72eb79; }
  .step--search.result--pass .match .score:before {
    content: 'GOOD '; }

.step--search.result--fail .match .score {
  color: #ff4f02; }
  .step--search.result--fail .match .score:before {
    content: 'POOR '; }

.step--search .exclamation {
  display: block;
  font-size: .8em;
  margin: 1em 0;
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s; }
  .step--search .exclamation[hidden] {
    opacity: 0; }

.step--search .next {
  display: inline-block;
  margin-top: 0;
  -webkit-transition: opacity .4s, visibility .4s;
  -o-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s; }
  .step--search .next[hidden] {
    opacity: 0;
    visibility: hidden; }

@media (min-width: 1024px) {
  .step--search p {
    margin: 42px auto 28px;
    text-align: center; }
  .step--search ul li {
    margin-bottom: 16px; } }

.step--suggest {
  height: calc( calc( 42vw + 50px ) + 100px + .6 * 100vw);
  height: calc( var(--coloured-header-height) + 100px + .6 * var(--full-width)); }
  .step--suggest p {
    margin: 1em auto;
    max-width: 9.5em;
    position: relative;
    z-index: 10; }
    .step--suggest p .word {
      text-transform: uppercase; }
  .step--suggest .answer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: calc( 100% - calc( 42vw + 50px ));
    height: calc( 100% - var(--coloured-header-height));
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0; }
    .step--suggest .answer .handle {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background: #ba28ba;
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-size: 0.87em;
      height: calc( .9 * calc( 22vw + 26px ));
      height: calc( .9 * var(--suggest-button-size));
      letter-spacing: 0.38em;
      padding: 1.2em 1em 1em 1.38em;
      text-transform: uppercase;
      /* autoprefixer: ignore next */
      transition-property: background, transform;
      -webkit-transition-duration: .2s, .3s;
           -o-transition-duration: .2s, .3s;
              transition-duration: .2s, .3s;
      width: calc( .9 * calc( 22vw + 26px ));
      width: calc( .9 * var(--suggest-button-size));
      will-change: transform; }
      .step--suggest .answer .handle:before {
        content: 'Drag Me';
        -webkit-transition: opacity .2s;
        -o-transition: opacity .2s;
        transition: opacity .2s; }
      .step--suggest .answer .handle.is--panning {
        -webkit-transition-duration: .2s, 0s;
             -o-transition-duration: .2s, 0s;
                transition-duration: .2s, 0s; }
        .step--suggest .answer .handle.is--panning:before {
          opacity: 0; }
    .step--suggest .answer button {
      background: none;
      border: thin solid;
      height: calc( 2 * calc( 22vw + 26px ));
      height: calc( 2 * var(--suggest-button-size));
      font-size: 1.33em;
      letter-spacing: inherit;
      -webkit-transition: .15s background;
      -o-transition: .15s background;
      transition: .15s background;
      width: calc( 22vw + 26px );
      width: var(--suggest-button-size);
      z-index: 10; }
      .step--suggest .answer button[value=no] {
        border-color: #ff4f02;
        border-left: none;
        border-radius: 0 999em 999em 0;
        left: 0;
        padding-left: calc( .2 * calc( 22vw + 26px ));
        padding-left: calc( .2 * var(--suggest-button-size)); }
      .step--suggest .answer button[value=yes] {
        border-color: #72eb79;
        border-right: none;
        border-radius: 999em 0 0 999em;
        padding-right: calc( .2 * calc( 22vw + 26px ));
        padding-right: calc( .2 * var(--suggest-button-size));
        right: 0; }
    .step--suggest .answer[data-result] .handle:before {
      opacity: 0; }
    .step--suggest .answer[data-result=yes] .handle {
      background: #72eb79;
      -webkit-transform: translateX(calc( 50vw - .49 * calc( 22vw + 26px )));
          -ms-transform: translateX(calc( 50vw - .49 * calc( 22vw + 26px )));
              transform: translateX(calc( 50vw - .49 * calc( 22vw + 26px )));
      -webkit-transform: translateX(calc( 50vw - .49 * var(--suggest-button-size)));
          -ms-transform: translateX(calc( 50vw - .49 * var(--suggest-button-size)));
              transform: translateX(calc( 50vw - .49 * var(--suggest-button-size))); }
    .step--suggest .answer[data-result=no] .handle {
      background: #ff4f02;
      -webkit-transform: translateX(calc( -50vw + .49 * calc( 22vw + 26px )));
          -ms-transform: translateX(calc( -50vw + .49 * calc( 22vw + 26px )));
              transform: translateX(calc( -50vw + .49 * calc( 22vw + 26px )));
      -webkit-transform: translateX(calc( -50vw + .49 * var(--suggest-button-size)));
          -ms-transform: translateX(calc( -50vw + .49 * var(--suggest-button-size)));
              transform: translateX(calc( -50vw + .49 * var(--suggest-button-size))); }

.explain--repeat p {
  max-width: 22em; }

.explain--answers ul {
  list-style: none;
  margin: 0 auto;
  max-width: 26em;
  padding: 0; }
  .explain--answers ul li {
    background: #303030;
    border-radius: 1em;
    display: inline-block;
    margin: .5em;
    padding: .9em;
    text-transform: capitalize; }
    .explain--answers ul li.result--start {
      background: #0a8555; }
    .explain--answers ul li.result--yes {
      background: #0a8555; }
    .explain--answers ul li.result--no {
      background: #d64000; }

@media (min-width: 1024px) {
  .explain--answers ul {
    font-size: 26px; }
    .explain--answers ul li {
      padding: .5em 1.2em; } }

.explain--stats .stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.3em; }

.explain--stats label {
  border-left: 2px solid #752682;
  padding: 0 1em;
  width: 10em; }
  .explain--stats label:first-child {
    border: none; }

.explain--stats output {
  color: #fc58c9;
  display: block;
  font-size: 3.3em; }

.explain--fails p {
  max-width: 18.2em; }
  .explain--fails p i {
    color: #fc58c9;
    font-style: normal;
    text-decoration: underline;
    text-transform: capitalize; }

.explain--graph:before {
  height: 3em; }

.explain--graph p {
  pointer-events: none;
  position: relative;
  text-shadow: 0 0 1px black;
  z-index: 10; }

.explain--graph .graph-wrapper {
  height: 100vh;
  height: var(--full-height);
  left: 0;
  opacity: .5;
  position: absolute;
  top: 0;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
  width: 100vw; }

.explain--graph .graph {
  height: 300%;
  width: 300%;
  will-change: transform; }

.explain--graph svg {
  height: 100%;
  width: 100%; }

.explain--graph rect {
  display: none; }

.explain--graph g {
  display: block; }

.explain--graph path.weight--1 {
  opacity: 0.4; }

.explain--graph path.weight--2 {
  opacity: 0.5; }

.explain--graph path.weight--3 {
  opacity: 0.6; }

.explain--graph path.weight--4 {
  opacity: 0.7; }

.explain--graph path.weight--5 {
  opacity: 0.8; }

.explain--graph path.weight--6 {
  opacity: 0.9; }

.explain--graph path.weight--7 {
  opacity: 1.0; }

.explain--graph path.weight--8 {
  opacity: 1.0; }

.explain--graph path.weight--9 {
  opacity: 1.0; }

.explain--graph path[result] {
  stroke-opacity: 1;
  stroke-width: 4; }

.explain--graph path[result=start] {
  stroke: #0dbd66; }

.explain--graph path[result=yes] {
  stroke: #0dbd66; }

.explain--graph path[result=no] {
  stroke: #ff4f02; }

.explain--graph circle[result] {
  stroke: #000; }

.explain--graph circle[result=start] {
  fill: #0dbd66; }

.explain--graph circle[result=yes] {
  fill: #0dbd66; }

.explain--graph circle[result=no] {
  fill: #ff4f02; }

.explain--graph text {
  opacity: .6;
  text-transform: capitalize; }
  .explain--graph text[result] {
    font-size: 50px;
    opacity: 1;
    stroke-opacity: .6;
    stroke-width: 10; }
  .explain--graph text[result=start] {
    fill: #0dbd66; }
  .explain--graph text[result=yes] {
    fill: #0dbd66; }
  .explain--graph text[result=no] {
    fill: #ff4f02; }

.explain--graph .finish {
  margin-top: auto;
  opacity: 0;
  -webkit-transition-delay: .5s;
       -o-transition-delay: .5s;
          transition-delay: .5s;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-property: opacity, visibility;
  -o-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  visibility: hidden;
  z-index: 10; }

.explain--graph.is--active p {
  opacity: 0;
  visibility: hidden; }

.explain--graph.is--active .graph-wrapper {
  opacity: 1; }

.explain--graph.is--active .finish {
  opacity: 1;
  visibility: visible; }

@media (min-width: 768px) {
  .explain--graph path {
    stroke-width: 2; }
    .explain--graph path[result] {
      stroke-width: 3; } }

/*# sourceMappingURL=main.css.map */
