@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,500,700,900);/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: local("Lato Hairline"), local("Lato-Hairline"), url(/fonts/Lato/Lato-Hairline.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }

/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local("Lato Light"), local("Lato-Light"), url(/fonts/Lato/Lato-Light.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }

/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local("Lato Regular"), local("Lato-Regular"), url(/fonts/Lato/Lato-Regular.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }

/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local("Lato Bold"), local("Lato-Bold"), url(/fonts/Lato/Lato-Bold.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }

/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: local("Lato Black"), local("Lato-Black"), url(/fonts/Lato/Lato-Black.ttf) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; }

/**
 * Tooltip Styles
 */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer; }
  [data-tooltip]:before, [data-tooltip]:after {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: 10000000; }
  [data-tooltip]:after {
    transform: translateX(-50%);
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid rgba(51, 51, 51, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0; }
  [data-tooltip]:before {
    transform: translateX(-50%) translateY(-5px);
    padding: 7px;
    max-width: 160px;
    border-radius: 3px;
    background-color: #000;
    background-color: rgba(51, 51, 51, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    white-space: normal;
    text-align: center;
    font-size: 14px;
    line-height: 1.2; }
  [data-tooltip]:hover {
    z-index: 100000; }
    [data-tooltip]:hover:before, [data-tooltip]:hover:after {
      visibility: visible;
      opacity: 1; }
  [data-tooltip][data-tooltip-position=bottom]:before, [data-tooltip][data-tooltip-position=bottom]:after {
    top: 100%;
    bottom: auto; }
  [data-tooltip][data-tooltip-position=bottom]:before {
    transform: translateX(-50%) translateY(5px); }
  [data-tooltip][data-tooltip-position=bottom]:after {
    border-top: none;
    border-bottom: 5px solid #000;
    border-bottom: 5px solid rgba(51, 51, 51, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent; }
  [data-tooltip][data-tooltip-position=right]:before, [data-tooltip][data-tooltip-position=right]:after {
    top: 50%;
    bottom: auto;
    left: 100%;
    right: auto; }
  [data-tooltip][data-tooltip-position=right]:before {
    transform: translateX(5px) translateY(-50%); }
  [data-tooltip][data-tooltip-position=right]:after {
    border-left: none;
    border-right: 5px solid #000;
    border-right: 5px solid rgba(51, 51, 51, 0.9);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: translateX(0) translateY(-50%); }
  [data-tooltip][data-tooltip-position=left]:before, [data-tooltip][data-tooltip-position=left]:after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 100%; }
  [data-tooltip][data-tooltip-position=left]:before {
    transform: translateX(-5px) translateY(-50%); }
  [data-tooltip][data-tooltip-position=left]:after {
    border-right: none;
    border-left: 5px solid #000;
    border-left: 5px solid rgba(51, 51, 51, 0.9);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: translateX(0) translateY(-50%); }

.alert-modal {
  display: flex;
  align-items: center;
  justify-content: center; }
  .alert-modal .alert-modal-inner {
    display: inline-block;
    background: #4cc0b3;
    color: #fff;
    padding: 1em;
    border-radius: .5em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    transition: transform .25s ease-in-out; }
  .alert-modal.active .alert-modal-inner {
    transform: translateX(0); }
  .alert-modal .alert-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1em; }

* {
  box-sizing: border-box; }

@media (max-width: 300px) {
  html,
  body {
    font-size: 6.55vw; } }

html,
body {
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  color: #595959;
  line-height: 1.5;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-size: 16px; }

body {
  height: 100vh; }

#mount {
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  transition: filter 0.25s ease-in-out;
  display: flex;
  flex-direction: column; }
  #mount img,
  #mount canvas {
    display: block;
    width: 100%;
    height: auto; }
  #mount.with-modal {
    /* Need to find a more efficient way of doing this */ }

button, .button {
  display: inline-block;
  padding: 1em 2em;
  -webkit-appearance: none;
  text-decoration: none;
  border: 2px solid #27a027;
  border-radius: .25em;
  background: #27a027;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  outline: none;
  cursor: pointer;
  font-size: .7em;
  font-family: Lato; }
  button:not(:disabled):hover, .button:not(:disabled):hover {
    background: #1d771d;
    border-color: #1d771d; }
  button.button-flex, .button.button-flex {
    flex: 1;
    justify-content: center; }
  button.or-press-enter, .button.or-press-enter {
    position: relative; }
    button.or-press-enter:after, .button.or-press-enter:after {
      content: 'or press enter';
      position: absolute;
      left: 100%;
      display: block;
      white-space: nowrap;
      top: 50%;
      transform: translateY(-50%);
      margin-left: 1em;
      color: #797979;
      text-transform: lowercase; }
      @media (max-width: 767px) {
        button.or-press-enter:after, .button.or-press-enter:after {
          display: none; } }
  button.button-auxilary-1, .button.button-auxilary-1 {
    border-color: #d94caa;
    background: #d94caa;
    color: #ffffff; }
    button.button-auxilary-1:not(:disabled):hover, .button.button-auxilary-1:not(:disabled):hover {
      background: #c82a93;
      border-color: #c82a93; }
  button.button-outline-auxilary-1, .button.button-outline-auxilary-1 {
    border: 2px solid;
    border-color: #d94caa;
    color: #d94caa;
    background: transparent;
    font-weight: 600; }
    button.button-outline-auxilary-1:not(:disabled):hover, .button.button-outline-auxilary-1:not(:disabled):hover {
      background: #d94caa;
      border-color: #d94caa;
      color: #ffffff; }
  button.button-noborder-auxilary-1, .button.button-noborder-auxilary-1 {
    border: none;
    color: #d94caa;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-auxilary-1:not(:disabled):hover, .button.button-noborder-auxilary-1:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #c82a93; }
  button.button-auxilary-2, .button.button-auxilary-2 {
    border-color: #66cc66;
    background: #66cc66;
    color: #ffffff; }
    button.button-auxilary-2:not(:disabled):hover, .button.button-auxilary-2:not(:disabled):hover {
      background: #40bf40;
      border-color: #40bf40; }
  button.button-outline-auxilary-2, .button.button-outline-auxilary-2 {
    border: 2px solid;
    border-color: #66cc66;
    color: #66cc66;
    background: transparent;
    font-weight: 600; }
    button.button-outline-auxilary-2:not(:disabled):hover, .button.button-outline-auxilary-2:not(:disabled):hover {
      background: #66cc66;
      border-color: #66cc66;
      color: #ffffff; }
  button.button-noborder-auxilary-2, .button.button-noborder-auxilary-2 {
    border: none;
    color: #66cc66;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-auxilary-2:not(:disabled):hover, .button.button-noborder-auxilary-2:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #40bf40; }
  button.button-auxilary-3, .button.button-auxilary-3 {
    border-color: #4cc0b3;
    background: #4cc0b3;
    color: #ffffff; }
    button.button-auxilary-3:not(:disabled):hover, .button.button-auxilary-3:not(:disabled):hover {
      background: #38a195;
      border-color: #38a195; }
  button.button-outline-auxilary-3, .button.button-outline-auxilary-3 {
    border: 2px solid;
    border-color: #4cc0b3;
    color: #4cc0b3;
    background: transparent;
    font-weight: 600; }
    button.button-outline-auxilary-3:not(:disabled):hover, .button.button-outline-auxilary-3:not(:disabled):hover {
      background: #4cc0b3;
      border-color: #4cc0b3;
      color: #ffffff; }
  button.button-noborder-auxilary-3, .button.button-noborder-auxilary-3 {
    border: none;
    color: #4cc0b3;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-auxilary-3:not(:disabled):hover, .button.button-noborder-auxilary-3:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #38a195; }
  button.button-auxilary-4, .button.button-auxilary-4 {
    border-color: #9966cc;
    background: #9966cc;
    color: #ffffff; }
    button.button-auxilary-4:not(:disabled):hover, .button.button-auxilary-4:not(:disabled):hover {
      background: #8040bf;
      border-color: #8040bf; }
  button.button-outline-auxilary-4, .button.button-outline-auxilary-4 {
    border: 2px solid;
    border-color: #9966cc;
    color: #9966cc;
    background: transparent;
    font-weight: 600; }
    button.button-outline-auxilary-4:not(:disabled):hover, .button.button-outline-auxilary-4:not(:disabled):hover {
      background: #9966cc;
      border-color: #9966cc;
      color: #ffffff; }
  button.button-noborder-auxilary-4, .button.button-noborder-auxilary-4 {
    border: none;
    color: #9966cc;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-auxilary-4:not(:disabled):hover, .button.button-noborder-auxilary-4:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #8040bf; }
  button.button-auxilary-5, .button.button-auxilary-5 {
    border-color: #ac0817;
    background: #ac0817;
    color: #ffffff; }
    button.button-auxilary-5:not(:disabled):hover, .button.button-auxilary-5:not(:disabled):hover {
      background: #7b0610;
      border-color: #7b0610; }
  button.button-outline-auxilary-5, .button.button-outline-auxilary-5 {
    border: 2px solid;
    border-color: #ac0817;
    color: #ac0817;
    background: transparent;
    font-weight: 600; }
    button.button-outline-auxilary-5:not(:disabled):hover, .button.button-outline-auxilary-5:not(:disabled):hover {
      background: #ac0817;
      border-color: #ac0817;
      color: #ffffff; }
  button.button-noborder-auxilary-5, .button.button-noborder-auxilary-5 {
    border: none;
    color: #ac0817;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-auxilary-5:not(:disabled):hover, .button.button-noborder-auxilary-5:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #7b0610; }
  button.button-auxilary-6, .button.button-auxilary-6 {
    border-color: #faa08e;
    background: #faa08e;
    color: #333333; }
    button.button-auxilary-6:not(:disabled):hover, .button.button-auxilary-6:not(:disabled):hover {
      background: #f8775d;
      border-color: #f8775d; }
  button.button-outline-auxilary-6, .button.button-outline-auxilary-6 {
    border: 2px solid;
    border-color: #faa08e;
    color: #faa08e;
    background: transparent;
    font-weight: 600; }
    button.button-outline-auxilary-6:not(:disabled):hover, .button.button-outline-auxilary-6:not(:disabled):hover {
      background: #faa08e;
      border-color: #faa08e;
      color: #333333; }
  button.button-noborder-auxilary-6, .button.button-noborder-auxilary-6 {
    border: none;
    color: #faa08e;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-auxilary-6:not(:disabled):hover, .button.button-noborder-auxilary-6:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #f8775d; }
  button.button-auxilary-7, .button.button-auxilary-7 {
    border-color: #ef767a;
    background: #ef767a;
    color: #ffffff; }
    button.button-auxilary-7:not(:disabled):hover, .button.button-auxilary-7:not(:disabled):hover {
      background: #ea484e;
      border-color: #ea484e; }
  button.button-outline-auxilary-7, .button.button-outline-auxilary-7 {
    border: 2px solid;
    border-color: #ef767a;
    color: #ef767a;
    background: transparent;
    font-weight: 600; }
    button.button-outline-auxilary-7:not(:disabled):hover, .button.button-outline-auxilary-7:not(:disabled):hover {
      background: #ef767a;
      border-color: #ef767a;
      color: #ffffff; }
  button.button-noborder-auxilary-7, .button.button-noborder-auxilary-7 {
    border: none;
    color: #ef767a;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-auxilary-7:not(:disabled):hover, .button.button-noborder-auxilary-7:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #ea484e; }
  button.button-auxilary-8, .button.button-auxilary-8 {
    border-color: #b32d59;
    background: #b32d59;
    color: #ffffff; }
    button.button-auxilary-8:not(:disabled):hover, .button.button-auxilary-8:not(:disabled):hover {
      background: #8a2345;
      border-color: #8a2345; }
  button.button-outline-auxilary-8, .button.button-outline-auxilary-8 {
    border: 2px solid;
    border-color: #b32d59;
    color: #b32d59;
    background: transparent;
    font-weight: 600; }
    button.button-outline-auxilary-8:not(:disabled):hover, .button.button-outline-auxilary-8:not(:disabled):hover {
      background: #b32d59;
      border-color: #b32d59;
      color: #ffffff; }
  button.button-noborder-auxilary-8, .button.button-noborder-auxilary-8 {
    border: none;
    color: #b32d59;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-auxilary-8:not(:disabled):hover, .button.button-noborder-auxilary-8:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #8a2345; }
  button.button-primary, .button.button-primary {
    border-color: #27a027;
    background: #27a027;
    color: #ffffff; }
    button.button-primary:not(:disabled):hover, .button.button-primary:not(:disabled):hover {
      background: #1d771d;
      border-color: #1d771d; }
  button.button-outline-primary, .button.button-outline-primary {
    border: 2px solid;
    border-color: #27a027;
    color: #27a027;
    background: transparent;
    font-weight: 600; }
    button.button-outline-primary:not(:disabled):hover, .button.button-outline-primary:not(:disabled):hover {
      background: #27a027;
      border-color: #27a027;
      color: #ffffff; }
  button.button-noborder-primary, .button.button-noborder-primary {
    border: none;
    color: #27a027;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-primary:not(:disabled):hover, .button.button-noborder-primary:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #1d771d; }
  button.button-secondary, .button.button-secondary {
    border-color: #bd9cbd;
    background: #bd9cbd;
    color: #ffffff; }
    button.button-secondary:not(:disabled):hover, .button.button-secondary:not(:disabled):hover {
      background: #a97da9;
      border-color: #a97da9; }
  button.button-outline-secondary, .button.button-outline-secondary {
    border: 2px solid;
    border-color: #bd9cbd;
    color: #bd9cbd;
    background: transparent;
    font-weight: 600; }
    button.button-outline-secondary:not(:disabled):hover, .button.button-outline-secondary:not(:disabled):hover {
      background: #bd9cbd;
      border-color: #bd9cbd;
      color: #ffffff; }
  button.button-noborder-secondary, .button.button-noborder-secondary {
    border: none;
    color: #bd9cbd;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-secondary:not(:disabled):hover, .button.button-noborder-secondary:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #a97da9; }
  button.button-tertiary, .button.button-tertiary {
    border-color: #221f39;
    background: #221f39;
    color: #ffffff; }
    button.button-tertiary:not(:disabled):hover, .button.button-tertiary:not(:disabled):hover {
      background: #0e0d18;
      border-color: #0e0d18; }
  button.button-outline-tertiary, .button.button-outline-tertiary {
    border: 2px solid;
    border-color: #221f39;
    color: #221f39;
    background: transparent;
    font-weight: 600; }
    button.button-outline-tertiary:not(:disabled):hover, .button.button-outline-tertiary:not(:disabled):hover {
      background: #221f39;
      border-color: #221f39;
      color: #ffffff; }
  button.button-noborder-tertiary, .button.button-noborder-tertiary {
    border: none;
    color: #221f39;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-tertiary:not(:disabled):hover, .button.button-noborder-tertiary:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #0e0d18; }
  button.button-white, .button.button-white {
    border-color: #fff;
    background: #fff;
    color: #333333; }
    button.button-white:not(:disabled):hover, .button.button-white:not(:disabled):hover {
      background: #e6e6e6;
      border-color: #e6e6e6; }
  button.button-outline-white, .button.button-outline-white {
    border: 2px solid;
    border-color: #fff;
    color: #fff;
    background: transparent;
    font-weight: 600; }
    button.button-outline-white:not(:disabled):hover, .button.button-outline-white:not(:disabled):hover {
      background: #fff;
      border-color: #fff;
      color: #333333; }
  button.button-noborder-white, .button.button-noborder-white {
    border: none;
    color: #fff;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-white:not(:disabled):hover, .button.button-noborder-white:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #e6e6e6; }
  button.button-grey-1, .button.button-grey-1 {
    border-color: #595959;
    background: #595959;
    color: #ffffff; }
    button.button-grey-1:not(:disabled):hover, .button.button-grey-1:not(:disabled):hover {
      background: #404040;
      border-color: #404040; }
  button.button-outline-grey-1, .button.button-outline-grey-1 {
    border: 2px solid;
    border-color: #595959;
    color: #595959;
    background: transparent;
    font-weight: 600; }
    button.button-outline-grey-1:not(:disabled):hover, .button.button-outline-grey-1:not(:disabled):hover {
      background: #595959;
      border-color: #595959;
      color: #ffffff; }
  button.button-noborder-grey-1, .button.button-noborder-grey-1 {
    border: none;
    color: #595959;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-grey-1:not(:disabled):hover, .button.button-noborder-grey-1:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #404040; }
  button.button-grey-2, .button.button-grey-2 {
    border-color: #797979;
    background: #797979;
    color: #ffffff; }
    button.button-grey-2:not(:disabled):hover, .button.button-grey-2:not(:disabled):hover {
      background: #606060;
      border-color: #606060; }
  button.button-outline-grey-2, .button.button-outline-grey-2 {
    border: 2px solid;
    border-color: #797979;
    color: #797979;
    background: transparent;
    font-weight: 600; }
    button.button-outline-grey-2:not(:disabled):hover, .button.button-outline-grey-2:not(:disabled):hover {
      background: #797979;
      border-color: #797979;
      color: #ffffff; }
  button.button-noborder-grey-2, .button.button-noborder-grey-2 {
    border: none;
    color: #797979;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-grey-2:not(:disabled):hover, .button.button-noborder-grey-2:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #606060; }
  button.button-inherit, .button.button-inherit {
    border-color: inherit;
    background: inherit; }
    button.button-inherit:not(:disabled):hover, .button.button-inherit:not(:disabled):hover {
      opacity: 0.6; }
  button.button-outline-inherit, .button.button-outline-inherit {
    border: 2px solid;
    border-color: inherit;
    color: inherit;
    background: transparent;
    font-weight: 600; }
    button.button-outline-inherit:not(:disabled):hover, .button.button-outline-inherit:not(:disabled):hover {
      background: inherit;
      border-color: inherit;
      opacity: 0.6; }
  button.button-noborder-inherit, .button.button-noborder-inherit {
    border: none;
    color: inherit;
    background: transparent;
    font-weight: 600; }
    button.button-noborder-inherit:not(:disabled):hover, .button.button-noborder-inherit:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      opacity: 0.6; }
  button.button-theme, .button.button-theme {
    border-color: #221f39;
    border-color: var(--theme-background, #221f39);
    background: #221f39;
    background: var(--theme-background, #221f39);
    color: #fff; }
    button.button-theme:not(:disabled):hover, .button.button-theme:not(:disabled):hover {
      background: #0e0d18;
      background: var(--theme-darkened, #0e0d18);
      border-color: #0e0d18;
      border-color: var(--theme-darkened, #0e0d18); }
  button.button-noborder-theme, .button.button-noborder-theme {
    border: none;
    color: #221f39;
    color: var(--theme-background, #221f39);
    background: transparent;
    font-weight: 600; }
    button.button-noborder-theme:not(:disabled):hover, .button.button-noborder-theme:not(:disabled):hover {
      background: transparent;
      text-decoration: underline;
      color: #0e0d18;
      color: var(--theme-darkened, #0e0d18); }
  button.button-outline-theme, .button.button-outline-theme {
    border: 2px solid;
    border-color: #221f39;
    border-color: var(--theme-background, #221f39);
    color: #221f39;
    color: var(--theme-background, #221f39);
    background: transparent;
    font-weight: 600; }
    button.button-outline-theme:not(:disabled):hover, .button.button-outline-theme:not(:disabled):hover {
      background: #221f39;
      background: var(--theme-background, #221f39);
      border-color: #221f39;
      border-color: var(--theme-background, #221f39);
      color: #fff; }
  button + button, button + .button, .button + button, .button + .button {
    margin-left: 1em; }
  @media (max-width: 480px) {
    button, .button {
      font-size: 1em; } }

[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none; }

input,
select,
.select,
.input,
textarea,
.multi-select {
  color: #595959;
  padding: 0.6em 1em;
  font-size: 1em;
  font-weight: 300;
  border: 1px solid #e5e9eb;
  outline: none;
  border-radius: 4px;
  background: #fff; }
  input:focus,
  select:focus,
  .select:focus,
  .input:focus,
  textarea:focus,
  .multi-select:focus {
    border-color: #4cc0b3; }
  input[readOnly],
  select[readOnly],
  .select[readOnly],
  .input[readOnly],
  textarea[readOnly],
  .multi-select[readOnly] {
    color: #797979;
    -webkit-user-select: none;
            user-select: none; }
  input:disabled,
  select:disabled,
  .select:disabled,
  .input:disabled,
  textarea:disabled,
  .multi-select:disabled {
    pointer-events: none; }
  input:not(:placeholder-shown):invalid,
  select:not(:placeholder-shown):invalid,
  .select:not(:placeholder-shown):invalid,
  .input:not(:placeholder-shown):invalid,
  textarea:not(:placeholder-shown):invalid,
  .multi-select:not(:placeholder-shown):invalid {
    border-color: #ac0817; }

input:not([type='checkbox']):not([type='radio']):not([type='file']),
.input:not([type='checkbox']):not([type='radio']):not([type='file']),
textarea:not([type='checkbox']):not([type='radio']):not([type='file']),
.textarea:not([type='checkbox']):not([type='radio']):not([type='file']) {
  display: block;
  width: 100%;
  margin-bottom: 1em; }

form.form-inline {
  display: flex;
  align-items: center;
  justify-content: center; }
  form.form-inline input:not([type='checkbox']):not([type='radio']):not([type='file']) {
    margin-bottom: 0; }
  form.form-inline *:not(:last-child) {
    margin-right: 1em; }

.multi-select {
  height: 300px;
  overflow: auto; }
  .multi-select .multi-select-row {
    display: flex;
    padding: 0.25em;
    align-items: center;
    -webkit-user-select: none;
            user-select: none;
    cursor: pointer; }
    .multi-select .multi-select-row.checked {
      background: #221f39;
      color: #fff; }
    .multi-select .multi-select-row:hover:not(.checked) {
      background: rgba(34, 31, 57, 0.25); }
    .multi-select .multi-select-row > input[type='checkbox'] {
      margin-right: 1em; }

.flex-spacer {
  flex: 1; }

select,
.select {
  display: block;
  width: 100%;
  margin-bottom: 1em;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  background-image: url(https://assets.iris.coach/icons/caret.png);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.5em);
  image-rendering: crisp-edges;
  image-rendering: optimizeQuality;
  padding-right: 2em; }
  select[multiple],
  .select[multiple] {
    -webkit-appearance: none;
    background: #fff;
    padding: 0.5em; }
    select[multiple] option,
    .select[multiple] option {
      -webkit-appearance: none;
      padding: 0.5em;
      background-color: #fff; }
  select:focus,
  .select:focus {
    border-color: #4cc0b3; }
  select[readOnly],
  .select[readOnly] {
    color: #797979;
    -webkit-user-select: none;
            user-select: none; }
  select:disabled,
  .select:disabled {
    pointer-events: none; }
  select > span,
  .select > span {
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block; }

.select-inner {
  position: fixed;
  top: 1em;
  left: 1em;
  max-width: 100vw;
  max-height: 100vh;
  z-index: 10000;
  background: #f5f5f2;
  padding: 0.5em 0;
  border-radius: 0.25em;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
  overflow-x: hidden;
  overflow-y: auto;
  min-width: 200px; }
  .select-inner > div {
    padding: 0 1em;
    cursor: pointer;
    background: transparent; }
    .select-inner > div[active] {
      background: rgba(0, 0, 0, 0.1);
      position: relative; }
      .select-inner > div[active]:before {
        content: '-';
        position: absolute;
        left: 0.25em;
        font-weight: bold; }
    .select-inner > div:hover {
      color: #fff;
      background: #bd9cbd; }
    .select-inner > div > span {
      white-space: nowrap;
      text-overflow: ellipsis;
      max-width: 100%;
      display: block;
      overflow: hidden; }

h1 > small,
h2 > small,
h3 > small,
h4 > small,
h5 > small,
h6 > small {
  display: block; }

.select-inner > span {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis; }

.select-group {
  display: flex;
  align-items: center;
  justify-content: center; }
  .select-group > * {
    margin: 0 !important; }
    .select-group > *:not(:last-child) {
      margin-right: 0.5em !important; }
  @media (max-width: 631px) {
    .select-group {
      flex-wrap: wrap; }
      .select-group > .select-group {
        flex: 0 0 100%;
        margin-bottom: 0.5em !important; }
        .select-group > .select-group + span {
          margin-bottom: 0.5em !important; }
        .select-group > .select-group > select,
        .select-group > .select-group > input {
          margin: 0 !important;
          margin-bottom: 0.5em !important; } }

small {
  font-size: 0.5em; }

label > input,
label > select,
label > .input,
label > textarea,
label > span {
  margin-top: 0.5em; }

label .label-highlight {
  font-size: 0.85em;
  line-height: 1.7666666;
  opacity: 0.75; }

label + .form-error {
  margin-top: -1em;
  margin-bottom: 1em; }

label > small {
  transform: translateY(-0.25em);
  display: inline-block; }

label > .select-group {
  margin-top: 0.5em;
  margin-bottom: 1em; }

label[required]:before, label[required='true']:before, label[required='required']:before {
  content: '*';
  color: red;
  padding-right: 0.5em; }

a,
.a {
  color: #4cc0b3;
  text-decoration: underline;
  cursor: pointer; }
  a:hover,
  .a:hover {
    text-decoration: none; }
  a:active,
  .a:active {
    color: #9966cc; }
  a:focus,
  .a:focus {
    outline: none; }
  a:disabled, a[disabled],
  .a:disabled,
  .a[disabled] {
    opacity: 0.5;
    cursor: not-allowed; }
    a:disabled:active, a[disabled]:active,
    .a:disabled:active,
    .a[disabled]:active {
      color: #4cc0b3; }

blockquote {
  margin: 0;
  padding: 1em 1em 1em 40px;
  border-left: 0.7em solid #ccc;
  background: #eee;
  color: #797979; }
  blockquote.blockquote-primary {
    border-color: #134e13;
    background: #27a027;
    color: #fff; }
  blockquote.blockquote-secondary {
    border-color: #926192;
    background: #bd9cbd;
    color: #fff; }
  blockquote.blockquote-tertiary {
    border-color: black;
    background: #221f39;
    color: #fff; }
  blockquote.blockquote-auxilary-6 {
    border-color: #f64e2c;
    background: #faa08e;
    color: #fff; }
  blockquote.blockquote-auxilary-7 {
    border-color: #e41b21;
    background: #ef767a;
    color: #fff; }
  blockquote.blockquote-auxilary-5 {
    border-color: #4b030a;
    background: #ac0817;
    color: #fff; }
  blockquote.blockquote-auxilary-4 {
    border-color: rebeccapurple;
    background: #9966cc;
    color: #fff; }
  blockquote.blockquote-auxilary-3 {
    border-color: #2b7b72;
    background: #4cc0b3;
    color: #fff; }
  blockquote.blockquote-auxilary-2 {
    border-color: #339933;
    background: #66cc66;
    color: #fff; }
  blockquote.blockquote-auxilary-1 {
    border-color: #9e2174;
    background: #d94caa;
    color: #fff; }

.disable-overlay {
  position: fixed;
  z-index: 10000000;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 242, 0.75);
  top: 0;
  left: 0; }

.form-error {
  padding: 0.5em;
  margin-top: 0.5em;
  background: #ac0817;
  color: #fff; }

.blur {
  filter: blur(5px); }

.sticky-header {
  position: sticky;
  top: 0; }

.animate-spin {
  animation: spin 1s infinite linear; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

svg.icon {
  height: 1.5em;
  width: 1.5em;
  padding: 0.25em;
  display: inline-block;
  vertical-align: top; }

/*
   Animation example, for spinners
*/
.animate-spin {
  animation: spin 2s infinite linear;
  display: inline-block; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }

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

.icon-share::before {
  content: "\E800"; }

.icon-loader::before {
  content: "\E807"; }

.icon-wrench::before {
  content: "\E801"; }

.icon-move::before {
  content: "\F047"; }

.icon-eye-off::before {
  content: "\E802"; }

.icon-eye::before {
  content: "\E803"; }

.icon-level-up::before {
  content: "\F148"; }

.icon-menu::before {
  content: "\F0C9"; }

.icon-cog::before {
  content: "\E804"; }

.icon-angle-down::before {
  content: "\F107"; }

.icon-angle-up::before {
  content: "\F106"; }

.icon-angle-right::before {
  content: "\F105"; }

.icon-angle-left::before {
  content: "\F104"; }

.icon-ok::before {
  content: "\E806"; }

.icon-doc-text::before {
  content: "\F0F6"; }

.icon-description::before {
  content: "\E808"; }

.icon-audio::before {
  content: "\E805"; }

.icon-x-badge::before {
  content: "\E809"; }

.icon-check-badge::before {
  content: "\E80A"; }

.icon-download::before {
  content: "\E8A1"; }

.icon-speaker::before {
  content: "\E8A4"; }

.icon-paintbucket::before {
  content: "\E8A5"; }

@font-face {
  font-family: 'pairin';
  src: url("/fonts/fontello/pairin.eot");
  src: url("/fonts/fontello/pairin.eot#iefix") format("embedded-opentype"), url("/fonts/fontello/pairin.woff2") format("woff2"), url("/fonts/fontello/pairin.woff") format("woff"), url("/fonts/fontello/pairin.ttf") format("truetype"), url("/fonts/fontello/pairin.svg#pairin") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0)  and (-webkit-min-device-pixel-ration: 2) {
  @font-face {
    font-family: 'pairin';
    src: url('../src/fonts/fontello/pairin.svg#pairin') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "pairin";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.icon-move {
  cursor: move; }

header {
  padding: 2em 1.5em;
  width: 1200px;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  color: #fff; }

.disable-overlay {
  position: fixed;
  z-index: 10000000;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 242, 0.75);
  top: 0;
  left: 0; }

.form-error {
  padding: .5em;
  margin-top: .5em;
  background: #ac0817;
  color: #fff; }

.tooltip-icon {
  display: inline-block; }
  .tooltip-icon > .tooltip-icon-inner {
    width: 1.25em;
    height: 1.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bd9cbd;
    border-radius: 50%;
    color: #fff; }
.error-page {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #ac0817;
  color: #fff;
  text-align: center;
  font-size: 2em; }
  .error-page h1 {
    margin: 0; }
.version-message {
  position: fixed;
  bottom: 0;
  display: inline-block;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #9966cc;
  color: #fff;
  z-index: 1000;
  border-radius: .25em .25em 0 0; }

.version-message a {
  color: inherit;
  text-decoration: none;
  padding: 1.5em;
  display: block; }
.file-upload {
  color: #595959;
  display: block;
  width: 100%;
  margin-bottom: 1em;
  font-size: 1em;
  border: none;
  font-weight: 400;
  border: 1px solid #ccc;
  position: relative;
  cursor: pointer; }
  .file-upload:hover > span:after {
    background: #dedede; }
  .file-upload > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: .5em;
    cursor: pointer;
    z-index: 0; }
    .file-upload > span:after {
      content: "Choose File";
      height: 1.5em;
      border: 1px solid #ccc;
      display: inline-block;
      border-radius: 4px;
      float: right;
      margin-top: -.15em;
      padding: 0 1em;
      text-align: center;
      background: #efefef;
      color: #797979; }
  .file-upload > input[type=file] {
    opacity: 0;
    margin: 0;
    border: none;
    position: relative;
    z-index: 1;
    cursor: inherit;
    width: 100%; }
  .file-upload.hover {
    border: 1px dashed #bd9cbd; }
  .file-upload[readOnly] {
    color: #797979;
    -webkit-user-select: none;
    user-select: none; }

.file-upload-placeholder {
  font-weight: 400;
  opacity: .5; }
.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  height: 1em; }

.loading-dots-dot {
  display: inline-block;
  width: .5em;
  height: .5em;
  background: #fff;
  border-radius: 50%;
  margin: 0 5px;
  opacity: 0;
  transition: all .125s ease-in-out; }
  .loading-dots-dot.active {
    opacity: 1; }
.logo {
  display: flex;
  align-items: center; }
  .logo > svg > g > g > path, .logo > svg > g > g > ellipse {
    fill: #27a027; }

.pairin-light .logo-icon.logo-icon-whitelabel {
  background-image: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; }

.pairin-dark .logo-icon.logo-icon-whitelabel {
  background-image: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; }

.logo-icon {
  height: 70px;
  width: 70px;
  flex: 0 0 70px; }
  .logo-icon + .logo-text {
    padding-left: .35em; }
  .logo-icon.logo-icon-whitelabel {
    background-image: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; }

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: inherit;
  height: 2em;
  font-weight: 600;
  line-height: 2.5rem;
  font-size: 2.5em;
  margin: 0;
  flex: 1;
  text-transform: uppercase; }
  @media (max-width: 496px) {
    .logo-text {
      font-size: 8vw; } }
  .logo-text > small {
    display: block;
    font-size: .5em;
    padding-left: .125em;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1; }
  .logo-text > span {
    line-height: 1; }
  @media (max-width: 392px) {
    .logo-text {
      font-size: 1.5em;
      line-height: .5rem;
      height: 2.5em; } }
  .logo-text.beta > span {
    position: relative; }
    .logo-text.beta > span:after {
      content: "Beta";
      position: absolute;
      font-size: 1rem;
      bottom: 0;
      right: -1em;
      z-index: 1000;
      color: #EF767A;
      background: #fff;
      padding: .125em .25em;
      border-radius: 4px;
      transform: rotate(-45deg);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
      font-weight: 400; }
.notification-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1000000; }
  .notification-container .notification {
    pointer-events: all;
    position: absolute;
    display: inline-block;
    transition: transform .2s ease-in-out, top .25s ease-in-out, bottom .25s ease-in-out;
    will-change: transform, top, bottom; }
    .notification-container .notification.top-left {
      top: 1em;
      left: 1em;
      transform: translateX(-50px) scale(0.9); }
    .notification-container .notification.top-right {
      top: 1em;
      right: 1em;
      transform: translateX(50px) scale(0.9); }
    .notification-container .notification.bottom-right {
      bottom: 1em;
      right: 1em;
      transform: translateX(50px) scale(0.9); }
    .notification-container .notification.bottom-left {
      bottom: 1em;
      left: 1em;
      transform: translateX(-50px) scale(0.9); }
    .notification-container .notification:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.25);
      border-radius: 8px;
      opacity: 0;
      transition: opacity .2s ease-in-out;
      will-change: opacity;
      z-index: 0;
      pointer-events: none; }
    .notification-container .notification.visible {
      transform: translateX(0) scale(1); }
      .notification-container .notification.visible .notification-inner-body {
        opacity: 1;
        transform: scale(1, 1); }
      .notification-container .notification.visible .notification-inner.success {
        background-color: #66CC66; }
      .notification-container .notification.visible .notification-inner.error {
        background-color: #AC0817; }
      .notification-container .notification.visible .notification-inner.info {
        background-color: #207C9D; }
      .notification-container .notification.visible:after {
        opacity: 1; }
  .notification-container.no-pointer-events {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    display: inline-block; }
    .notification-container.no-pointer-events .notification {
      position: relative;
      top: auto;
      right: auto; }

.notification-inner {
  display: flex;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
  transition: background-color .2s ease-in-out;
  will-change: background-color; }
  .notification-inner.success {
    background-color: rgba(102, 204, 102, 0);
    color: #f5f5f2; }
  .notification-inner.error {
    background-color: rgba(172, 8, 23, 0);
    color: #f5f5f2; }
  .notification-inner.info {
    background-color: rgba(32, 124, 157, 0);
    color: #f5f5f2; }

.notification-inner-body {
  flex: 1;
  padding: 1em 1em 1em 0;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  min-height: 100;
  opacity: 0;
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
  will-change: opacity, transform;
  transform: scale(0.5, 1);
  transform-origin: right center; }
  .notification-inner-body h3 {
    margin: 0;
    font-weight: 600; }
  .notification-inner-body p {
    flex: 1;
    margin: 0; }

.notification-inner-controls {
  text-align: right; }
  .notification-inner-controls > a {
    color: rgba(0, 0, 0, 0.25);
    text-decoration: none; }
    .notification-inner-controls > a:hover {
      text-decoration: underline; }
.progress {
  height: 5px;
  width: 100%;
  background: #ccc;
  margin: 0; }

.progress-inner {
  height: 100%;
  background: #4cc0b3;
  transition: width 0.25s ease-in-out;
  will-change: width; }

.progress-primary .progress-inner {
  background: #27a027; }
.fixed-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: width .25s ease-in-out; }
.not-found {
  background: #4cc0b3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; }
  .not-found footer {
    flex: 0 0 134px; }

.not-found-body {
  flex: 1;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 2em;
  color: #fff;
  text-align: center; }
  .not-found-body h1 {
    font-size: 360px;
    text-align: center;
    margin: 0;
    line-height: 1;
    display: block;
    font-family: Lato; }
    @media (max-width: 767px) {
      .not-found-body h1 {
        font-size: 144px; } }
  @media (max-width: 767px) {
    .not-found-body .not-found-body-inner {
      font-size: 1rem;
      padding: 1em; } }
.quality-quilt-wrapper {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: auto; }

.quality-quilt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden; }

.grid-square-title {
  margin: 0;
  white-space: nowrap;
  font-size: 16px;
  padding-bottom: .5em; }

.grid-square-description {
  font-size: 14px;
  text-align: center;
  word-break: normal;
  text-rendering: geometricPrecision;
  -webkit-text-size-adjust: auto;
          text-size-adjust: auto; }

.grid-square {
  width: 200px;
  height: 200px;
  position: relative;
  perspective: 1000px;
  perspective-origin: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25em;
  text-align: center; }
  .grid-square img, .grid-square canvas {
    width: 160px;
    opacity: 0.2;
    filter: brightness(1.5) saturate(0%); }
  .grid-square:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    top: -1px;
    left: 0px;
    box-shadow: 0 16px 0 rgba(255, 255, 255, 0.2), 190px 16px 0 rgba(255, 255, 255, 0.2), 0 21px 0 rgba(255, 255, 255, 0.2), 190px 21px 0 rgba(255, 255, 255, 0.2), 0 26px 0 rgba(255, 255, 255, 0.2), 190px 26px 0 rgba(255, 255, 255, 0.2), 0 31px 0 rgba(255, 255, 255, 0.2), 190px 31px 0 rgba(255, 255, 255, 0.2), 0 36px 0 rgba(255, 255, 255, 0.2), 190px 36px 0 rgba(255, 255, 255, 0.2), 0 41px 0 rgba(255, 255, 255, 0.2), 190px 41px 0 rgba(255, 255, 255, 0.2), 0 46px 0 rgba(255, 255, 255, 0.2), 190px 46px 0 rgba(255, 255, 255, 0.2), 0 51px 0 rgba(255, 255, 255, 0.2), 190px 51px 0 rgba(255, 255, 255, 0.2), 0 56px 0 rgba(255, 255, 255, 0.2), 190px 56px 0 rgba(255, 255, 255, 0.2), 0 61px 0 rgba(255, 255, 255, 0.2), 190px 61px 0 rgba(255, 255, 255, 0.2), 0 66px 0 rgba(255, 255, 255, 0.2), 190px 66px 0 rgba(255, 255, 255, 0.2), 0 71px 0 rgba(255, 255, 255, 0.2), 190px 71px 0 rgba(255, 255, 255, 0.2), 0 76px 0 rgba(255, 255, 255, 0.2), 190px 76px 0 rgba(255, 255, 255, 0.2), 0 81px 0 rgba(255, 255, 255, 0.2), 190px 81px 0 rgba(255, 255, 255, 0.2), 0 86px 0 rgba(255, 255, 255, 0.2), 190px 86px 0 rgba(255, 255, 255, 0.2), 0 91px 0 rgba(255, 255, 255, 0.2), 190px 91px 0 rgba(255, 255, 255, 0.2), 0 96px 0 rgba(255, 255, 255, 0.2), 190px 96px 0 rgba(255, 255, 255, 0.2), 0 101px 0 rgba(255, 255, 255, 0.2), 190px 101px 0 rgba(255, 255, 255, 0.2), 0 106px 0 rgba(255, 255, 255, 0.2), 190px 106px 0 rgba(255, 255, 255, 0.2), 0 111px 0 rgba(255, 255, 255, 0.2), 190px 111px 0 rgba(255, 255, 255, 0.2), 0 116px 0 rgba(255, 255, 255, 0.2), 190px 116px 0 rgba(255, 255, 255, 0.2), 0 121px 0 rgba(255, 255, 255, 0.2), 190px 121px 0 rgba(255, 255, 255, 0.2), 0 126px 0 rgba(255, 255, 255, 0.2), 190px 126px 0 rgba(255, 255, 255, 0.2), 0 131px 0 rgba(255, 255, 255, 0.2), 190px 131px 0 rgba(255, 255, 255, 0.2), 0 136px 0 rgba(255, 255, 255, 0.2), 190px 136px 0 rgba(255, 255, 255, 0.2), 0 141px 0 rgba(255, 255, 255, 0.2), 190px 141px 0 rgba(255, 255, 255, 0.2), 0 146px 0 rgba(255, 255, 255, 0.2), 190px 146px 0 rgba(255, 255, 255, 0.2), 0 151px 0 rgba(255, 255, 255, 0.2), 190px 151px 0 rgba(255, 255, 255, 0.2), 0 156px 0 rgba(255, 255, 255, 0.2), 190px 156px 0 rgba(255, 255, 255, 0.2), 0 161px 0 rgba(255, 255, 255, 0.2), 190px 161px 0 rgba(255, 255, 255, 0.2), 0 166px 0 rgba(255, 255, 255, 0.2), 190px 166px 0 rgba(255, 255, 255, 0.2), 0 171px 0 rgba(255, 255, 255, 0.2), 190px 171px 0 rgba(255, 255, 255, 0.2), 0 176px 0 rgba(255, 255, 255, 0.2), 190px 176px 0 rgba(255, 255, 255, 0.2), 0 181px 0 rgba(255, 255, 255, 0.2), 190px 181px 0 rgba(255, 255, 255, 0.2), 0 186px 0 rgba(255, 255, 255, 0.2), 190px 186px 0 rgba(255, 255, 255, 0.2);
    z-index: 1000; }
  .grid-square:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 10px;
    top: 0px;
    left: -1px;
    box-shadow: 16px 0 0 rgba(255, 255, 255, 0.2), 16px 190px 0 rgba(255, 255, 255, 0.2), 21px 0 0 rgba(255, 255, 255, 0.2), 21px 190px 0 rgba(255, 255, 255, 0.2), 26px 0 0 rgba(255, 255, 255, 0.2), 26px 190px 0 rgba(255, 255, 255, 0.2), 31px 0 0 rgba(255, 255, 255, 0.2), 31px 190px 0 rgba(255, 255, 255, 0.2), 36px 0 0 rgba(255, 255, 255, 0.2), 36px 190px 0 rgba(255, 255, 255, 0.2), 41px 0 0 rgba(255, 255, 255, 0.2), 41px 190px 0 rgba(255, 255, 255, 0.2), 46px 0 0 rgba(255, 255, 255, 0.2), 46px 190px 0 rgba(255, 255, 255, 0.2), 51px 0 0 rgba(255, 255, 255, 0.2), 51px 190px 0 rgba(255, 255, 255, 0.2), 56px 0 0 rgba(255, 255, 255, 0.2), 56px 190px 0 rgba(255, 255, 255, 0.2), 61px 0 0 rgba(255, 255, 255, 0.2), 61px 190px 0 rgba(255, 255, 255, 0.2), 66px 0 0 rgba(255, 255, 255, 0.2), 66px 190px 0 rgba(255, 255, 255, 0.2), 71px 0 0 rgba(255, 255, 255, 0.2), 71px 190px 0 rgba(255, 255, 255, 0.2), 76px 0 0 rgba(255, 255, 255, 0.2), 76px 190px 0 rgba(255, 255, 255, 0.2), 81px 0 0 rgba(255, 255, 255, 0.2), 81px 190px 0 rgba(255, 255, 255, 0.2), 86px 0 0 rgba(255, 255, 255, 0.2), 86px 190px 0 rgba(255, 255, 255, 0.2), 91px 0 0 rgba(255, 255, 255, 0.2), 91px 190px 0 rgba(255, 255, 255, 0.2), 96px 0 0 rgba(255, 255, 255, 0.2), 96px 190px 0 rgba(255, 255, 255, 0.2), 101px 0 0 rgba(255, 255, 255, 0.2), 101px 190px 0 rgba(255, 255, 255, 0.2), 106px 0 0 rgba(255, 255, 255, 0.2), 106px 190px 0 rgba(255, 255, 255, 0.2), 111px 0 0 rgba(255, 255, 255, 0.2), 111px 190px 0 rgba(255, 255, 255, 0.2), 116px 0 0 rgba(255, 255, 255, 0.2), 116px 190px 0 rgba(255, 255, 255, 0.2), 121px 0 0 rgba(255, 255, 255, 0.2), 121px 190px 0 rgba(255, 255, 255, 0.2), 126px 0 0 rgba(255, 255, 255, 0.2), 126px 190px 0 rgba(255, 255, 255, 0.2), 131px 0 0 rgba(255, 255, 255, 0.2), 131px 190px 0 rgba(255, 255, 255, 0.2), 136px 0 0 rgba(255, 255, 255, 0.2), 136px 190px 0 rgba(255, 255, 255, 0.2), 141px 0 0 rgba(255, 255, 255, 0.2), 141px 190px 0 rgba(255, 255, 255, 0.2), 146px 0 0 rgba(255, 255, 255, 0.2), 146px 190px 0 rgba(255, 255, 255, 0.2), 151px 0 0 rgba(255, 255, 255, 0.2), 151px 190px 0 rgba(255, 255, 255, 0.2), 156px 0 0 rgba(255, 255, 255, 0.2), 156px 190px 0 rgba(255, 255, 255, 0.2), 161px 0 0 rgba(255, 255, 255, 0.2), 161px 190px 0 rgba(255, 255, 255, 0.2), 166px 0 0 rgba(255, 255, 255, 0.2), 166px 190px 0 rgba(255, 255, 255, 0.2), 171px 0 0 rgba(255, 255, 255, 0.2), 171px 190px 0 rgba(255, 255, 255, 0.2), 176px 0 0 rgba(255, 255, 255, 0.2), 176px 190px 0 rgba(255, 255, 255, 0.2), 181px 0 0 rgba(255, 255, 255, 0.2), 181px 190px 0 rgba(255, 255, 255, 0.2), 186px 0 0 rgba(255, 255, 255, 0.2), 186px 190px 0 rgba(255, 255, 255, 0.2);
    z-index: 1000; }

.grid-square-double {
  width: 400px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; }
  .grid-square-double:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 10px;
    top: 0px;
    left: -1px;
    box-shadow: 16px 0 0 rgba(255, 255, 255, 0.2), 16px 190px 0 rgba(255, 255, 255, 0.2), 21px 0 0 rgba(255, 255, 255, 0.2), 21px 190px 0 rgba(255, 255, 255, 0.2), 26px 0 0 rgba(255, 255, 255, 0.2), 26px 190px 0 rgba(255, 255, 255, 0.2), 31px 0 0 rgba(255, 255, 255, 0.2), 31px 190px 0 rgba(255, 255, 255, 0.2), 36px 0 0 rgba(255, 255, 255, 0.2), 36px 190px 0 rgba(255, 255, 255, 0.2), 41px 0 0 rgba(255, 255, 255, 0.2), 41px 190px 0 rgba(255, 255, 255, 0.2), 46px 0 0 rgba(255, 255, 255, 0.2), 46px 190px 0 rgba(255, 255, 255, 0.2), 51px 0 0 rgba(255, 255, 255, 0.2), 51px 190px 0 rgba(255, 255, 255, 0.2), 56px 0 0 rgba(255, 255, 255, 0.2), 56px 190px 0 rgba(255, 255, 255, 0.2), 61px 0 0 rgba(255, 255, 255, 0.2), 61px 190px 0 rgba(255, 255, 255, 0.2), 66px 0 0 rgba(255, 255, 255, 0.2), 66px 190px 0 rgba(255, 255, 255, 0.2), 71px 0 0 rgba(255, 255, 255, 0.2), 71px 190px 0 rgba(255, 255, 255, 0.2), 76px 0 0 rgba(255, 255, 255, 0.2), 76px 190px 0 rgba(255, 255, 255, 0.2), 81px 0 0 rgba(255, 255, 255, 0.2), 81px 190px 0 rgba(255, 255, 255, 0.2), 86px 0 0 rgba(255, 255, 255, 0.2), 86px 190px 0 rgba(255, 255, 255, 0.2), 91px 0 0 rgba(255, 255, 255, 0.2), 91px 190px 0 rgba(255, 255, 255, 0.2), 96px 0 0 rgba(255, 255, 255, 0.2), 96px 190px 0 rgba(255, 255, 255, 0.2), 101px 0 0 rgba(255, 255, 255, 0.2), 101px 190px 0 rgba(255, 255, 255, 0.2), 106px 0 0 rgba(255, 255, 255, 0.2), 106px 190px 0 rgba(255, 255, 255, 0.2), 111px 0 0 rgba(255, 255, 255, 0.2), 111px 190px 0 rgba(255, 255, 255, 0.2), 116px 0 0 rgba(255, 255, 255, 0.2), 116px 190px 0 rgba(255, 255, 255, 0.2), 121px 0 0 rgba(255, 255, 255, 0.2), 121px 190px 0 rgba(255, 255, 255, 0.2), 126px 0 0 rgba(255, 255, 255, 0.2), 126px 190px 0 rgba(255, 255, 255, 0.2), 131px 0 0 rgba(255, 255, 255, 0.2), 131px 190px 0 rgba(255, 255, 255, 0.2), 136px 0 0 rgba(255, 255, 255, 0.2), 136px 190px 0 rgba(255, 255, 255, 0.2), 141px 0 0 rgba(255, 255, 255, 0.2), 141px 190px 0 rgba(255, 255, 255, 0.2), 146px 0 0 rgba(255, 255, 255, 0.2), 146px 190px 0 rgba(255, 255, 255, 0.2), 151px 0 0 rgba(255, 255, 255, 0.2), 151px 190px 0 rgba(255, 255, 255, 0.2), 156px 0 0 rgba(255, 255, 255, 0.2), 156px 190px 0 rgba(255, 255, 255, 0.2), 161px 0 0 rgba(255, 255, 255, 0.2), 161px 190px 0 rgba(255, 255, 255, 0.2), 166px 0 0 rgba(255, 255, 255, 0.2), 166px 190px 0 rgba(255, 255, 255, 0.2), 171px 0 0 rgba(255, 255, 255, 0.2), 171px 190px 0 rgba(255, 255, 255, 0.2), 176px 0 0 rgba(255, 255, 255, 0.2), 176px 190px 0 rgba(255, 255, 255, 0.2), 181px 0 0 rgba(255, 255, 255, 0.2), 181px 190px 0 rgba(255, 255, 255, 0.2), 186px 0 0 rgba(255, 255, 255, 0.2), 186px 190px 0 rgba(255, 255, 255, 0.2), 216px 0 0 rgba(255, 255, 255, 0.2), 216px 190px 0 rgba(255, 255, 255, 0.2), 221px 0 0 rgba(255, 255, 255, 0.2), 221px 190px 0 rgba(255, 255, 255, 0.2), 226px 0 0 rgba(255, 255, 255, 0.2), 226px 190px 0 rgba(255, 255, 255, 0.2), 231px 0 0 rgba(255, 255, 255, 0.2), 231px 190px 0 rgba(255, 255, 255, 0.2), 236px 0 0 rgba(255, 255, 255, 0.2), 236px 190px 0 rgba(255, 255, 255, 0.2), 241px 0 0 rgba(255, 255, 255, 0.2), 241px 190px 0 rgba(255, 255, 255, 0.2), 246px 0 0 rgba(255, 255, 255, 0.2), 246px 190px 0 rgba(255, 255, 255, 0.2), 251px 0 0 rgba(255, 255, 255, 0.2), 251px 190px 0 rgba(255, 255, 255, 0.2), 256px 0 0 rgba(255, 255, 255, 0.2), 256px 190px 0 rgba(255, 255, 255, 0.2), 261px 0 0 rgba(255, 255, 255, 0.2), 261px 190px 0 rgba(255, 255, 255, 0.2), 266px 0 0 rgba(255, 255, 255, 0.2), 266px 190px 0 rgba(255, 255, 255, 0.2), 271px 0 0 rgba(255, 255, 255, 0.2), 271px 190px 0 rgba(255, 255, 255, 0.2), 276px 0 0 rgba(255, 255, 255, 0.2), 276px 190px 0 rgba(255, 255, 255, 0.2), 281px 0 0 rgba(255, 255, 255, 0.2), 281px 190px 0 rgba(255, 255, 255, 0.2), 286px 0 0 rgba(255, 255, 255, 0.2), 286px 190px 0 rgba(255, 255, 255, 0.2), 291px 0 0 rgba(255, 255, 255, 0.2), 291px 190px 0 rgba(255, 255, 255, 0.2), 296px 0 0 rgba(255, 255, 255, 0.2), 296px 190px 0 rgba(255, 255, 255, 0.2), 301px 0 0 rgba(255, 255, 255, 0.2), 301px 190px 0 rgba(255, 255, 255, 0.2), 306px 0 0 rgba(255, 255, 255, 0.2), 306px 190px 0 rgba(255, 255, 255, 0.2), 311px 0 0 rgba(255, 255, 255, 0.2), 311px 190px 0 rgba(255, 255, 255, 0.2), 316px 0 0 rgba(255, 255, 255, 0.2), 316px 190px 0 rgba(255, 255, 255, 0.2), 321px 0 0 rgba(255, 255, 255, 0.2), 321px 190px 0 rgba(255, 255, 255, 0.2), 326px 0 0 rgba(255, 255, 255, 0.2), 326px 190px 0 rgba(255, 255, 255, 0.2), 331px 0 0 rgba(255, 255, 255, 0.2), 331px 190px 0 rgba(255, 255, 255, 0.2), 336px 0 0 rgba(255, 255, 255, 0.2), 336px 190px 0 rgba(255, 255, 255, 0.2), 341px 0 0 rgba(255, 255, 255, 0.2), 341px 190px 0 rgba(255, 255, 255, 0.2), 346px 0 0 rgba(255, 255, 255, 0.2), 346px 190px 0 rgba(255, 255, 255, 0.2), 351px 0 0 rgba(255, 255, 255, 0.2), 351px 190px 0 rgba(255, 255, 255, 0.2), 356px 0 0 rgba(255, 255, 255, 0.2), 356px 190px 0 rgba(255, 255, 255, 0.2), 361px 0 0 rgba(255, 255, 255, 0.2), 361px 190px 0 rgba(255, 255, 255, 0.2), 366px 0 0 rgba(255, 255, 255, 0.2), 366px 190px 0 rgba(255, 255, 255, 0.2), 371px 0 0 rgba(255, 255, 255, 0.2), 371px 190px 0 rgba(255, 255, 255, 0.2), 376px 0 0 rgba(255, 255, 255, 0.2), 376px 190px 0 rgba(255, 255, 255, 0.2), 381px 0 0 rgba(255, 255, 255, 0.2), 381px 190px 0 rgba(255, 255, 255, 0.2), 386px 0 0 rgba(255, 255, 255, 0.2), 386px 190px 0 rgba(255, 255, 255, 0.2); }
  .grid-square-double:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    top: -1px;
    left: 0px;
    box-shadow: 0 16px 0 rgba(255, 255, 255, 0.2), 390px 16px 0 rgba(255, 255, 255, 0.2), 0 21px 0 rgba(255, 255, 255, 0.2), 390px 21px 0 rgba(255, 255, 255, 0.2), 0 26px 0 rgba(255, 255, 255, 0.2), 390px 26px 0 rgba(255, 255, 255, 0.2), 0 31px 0 rgba(255, 255, 255, 0.2), 390px 31px 0 rgba(255, 255, 255, 0.2), 0 36px 0 rgba(255, 255, 255, 0.2), 390px 36px 0 rgba(255, 255, 255, 0.2), 0 41px 0 rgba(255, 255, 255, 0.2), 390px 41px 0 rgba(255, 255, 255, 0.2), 0 46px 0 rgba(255, 255, 255, 0.2), 390px 46px 0 rgba(255, 255, 255, 0.2), 0 51px 0 rgba(255, 255, 255, 0.2), 390px 51px 0 rgba(255, 255, 255, 0.2), 0 56px 0 rgba(255, 255, 255, 0.2), 390px 56px 0 rgba(255, 255, 255, 0.2), 0 61px 0 rgba(255, 255, 255, 0.2), 390px 61px 0 rgba(255, 255, 255, 0.2), 0 66px 0 rgba(255, 255, 255, 0.2), 390px 66px 0 rgba(255, 255, 255, 0.2), 0 71px 0 rgba(255, 255, 255, 0.2), 390px 71px 0 rgba(255, 255, 255, 0.2), 0 76px 0 rgba(255, 255, 255, 0.2), 390px 76px 0 rgba(255, 255, 255, 0.2), 0 81px 0 rgba(255, 255, 255, 0.2), 390px 81px 0 rgba(255, 255, 255, 0.2), 0 86px 0 rgba(255, 255, 255, 0.2), 390px 86px 0 rgba(255, 255, 255, 0.2), 0 91px 0 rgba(255, 255, 255, 0.2), 390px 91px 0 rgba(255, 255, 255, 0.2), 0 96px 0 rgba(255, 255, 255, 0.2), 390px 96px 0 rgba(255, 255, 255, 0.2), 0 101px 0 rgba(255, 255, 255, 0.2), 390px 101px 0 rgba(255, 255, 255, 0.2), 0 106px 0 rgba(255, 255, 255, 0.2), 390px 106px 0 rgba(255, 255, 255, 0.2), 0 111px 0 rgba(255, 255, 255, 0.2), 390px 111px 0 rgba(255, 255, 255, 0.2), 0 116px 0 rgba(255, 255, 255, 0.2), 390px 116px 0 rgba(255, 255, 255, 0.2), 0 121px 0 rgba(255, 255, 255, 0.2), 390px 121px 0 rgba(255, 255, 255, 0.2), 0 126px 0 rgba(255, 255, 255, 0.2), 390px 126px 0 rgba(255, 255, 255, 0.2), 0 131px 0 rgba(255, 255, 255, 0.2), 390px 131px 0 rgba(255, 255, 255, 0.2), 0 136px 0 rgba(255, 255, 255, 0.2), 390px 136px 0 rgba(255, 255, 255, 0.2), 0 141px 0 rgba(255, 255, 255, 0.2), 390px 141px 0 rgba(255, 255, 255, 0.2), 0 146px 0 rgba(255, 255, 255, 0.2), 390px 146px 0 rgba(255, 255, 255, 0.2), 0 151px 0 rgba(255, 255, 255, 0.2), 390px 151px 0 rgba(255, 255, 255, 0.2), 0 156px 0 rgba(255, 255, 255, 0.2), 390px 156px 0 rgba(255, 255, 255, 0.2), 0 161px 0 rgba(255, 255, 255, 0.2), 390px 161px 0 rgba(255, 255, 255, 0.2), 0 166px 0 rgba(255, 255, 255, 0.2), 390px 166px 0 rgba(255, 255, 255, 0.2), 0 171px 0 rgba(255, 255, 255, 0.2), 390px 171px 0 rgba(255, 255, 255, 0.2), 0 176px 0 rgba(255, 255, 255, 0.2), 390px 176px 0 rgba(255, 255, 255, 0.2), 0 181px 0 rgba(255, 255, 255, 0.2), 390px 181px 0 rgba(255, 255, 255, 0.2), 0 186px 0 rgba(255, 255, 255, 0.2), 390px 186px 0 rgba(255, 255, 255, 0.2); }
  .grid-square-double svg > g > path {
    fill: #fff; }
  .grid-square-double svg > g > g {
    fill: #27a027; }
  .grid-square-double .logo-text {
    color: #fff; }
  .grid-square-double .button {
    font-size: 1.5em;
    padding: .5em 1em;
    margin-top: .5em; }

.quality-grid {
  display: flex;
  flex-direction: column; }

.grid-row {
  display: flex; }

.grid-square-placeholder {
  width: 200px;
  height: 200px;
  background: #f5f5f2; }

.grid-square-quad {
  width: 400px;
  height: 200px;
  position: relative; }

.grid-square-quad-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  will-change: box-shadow, width, height;
  transition: all .25s ease-in-out; }
  .grid-square-quad-inner > h3 {
    font-size: 2.5em;
    margin: 0;
    color: #fff;
    font-weight: 300;
    margin-top: .25em;
    line-height: 1; }
  .grid-square-quad-inner:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 10px;
    top: 0px;
    left: -1px;
    box-shadow: 16px 0 0 rgba(255, 255, 255, 0.2), 16px 390px 0 rgba(255, 255, 255, 0.2), 21px 0 0 rgba(255, 255, 255, 0.2), 21px 390px 0 rgba(255, 255, 255, 0.2), 26px 0 0 rgba(255, 255, 255, 0.2), 26px 390px 0 rgba(255, 255, 255, 0.2), 31px 0 0 rgba(255, 255, 255, 0.2), 31px 390px 0 rgba(255, 255, 255, 0.2), 36px 0 0 rgba(255, 255, 255, 0.2), 36px 390px 0 rgba(255, 255, 255, 0.2), 41px 0 0 rgba(255, 255, 255, 0.2), 41px 390px 0 rgba(255, 255, 255, 0.2), 46px 0 0 rgba(255, 255, 255, 0.2), 46px 390px 0 rgba(255, 255, 255, 0.2), 51px 0 0 rgba(255, 255, 255, 0.2), 51px 390px 0 rgba(255, 255, 255, 0.2), 56px 0 0 rgba(255, 255, 255, 0.2), 56px 390px 0 rgba(255, 255, 255, 0.2), 61px 0 0 rgba(255, 255, 255, 0.2), 61px 390px 0 rgba(255, 255, 255, 0.2), 66px 0 0 rgba(255, 255, 255, 0.2), 66px 390px 0 rgba(255, 255, 255, 0.2), 71px 0 0 rgba(255, 255, 255, 0.2), 71px 390px 0 rgba(255, 255, 255, 0.2), 76px 0 0 rgba(255, 255, 255, 0.2), 76px 390px 0 rgba(255, 255, 255, 0.2), 81px 0 0 rgba(255, 255, 255, 0.2), 81px 390px 0 rgba(255, 255, 255, 0.2), 86px 0 0 rgba(255, 255, 255, 0.2), 86px 390px 0 rgba(255, 255, 255, 0.2), 91px 0 0 rgba(255, 255, 255, 0.2), 91px 390px 0 rgba(255, 255, 255, 0.2), 96px 0 0 rgba(255, 255, 255, 0.2), 96px 390px 0 rgba(255, 255, 255, 0.2), 101px 0 0 rgba(255, 255, 255, 0.2), 101px 390px 0 rgba(255, 255, 255, 0.2), 106px 0 0 rgba(255, 255, 255, 0.2), 106px 390px 0 rgba(255, 255, 255, 0.2), 111px 0 0 rgba(255, 255, 255, 0.2), 111px 390px 0 rgba(255, 255, 255, 0.2), 116px 0 0 rgba(255, 255, 255, 0.2), 116px 390px 0 rgba(255, 255, 255, 0.2), 121px 0 0 rgba(255, 255, 255, 0.2), 121px 390px 0 rgba(255, 255, 255, 0.2), 126px 0 0 rgba(255, 255, 255, 0.2), 126px 390px 0 rgba(255, 255, 255, 0.2), 131px 0 0 rgba(255, 255, 255, 0.2), 131px 390px 0 rgba(255, 255, 255, 0.2), 136px 0 0 rgba(255, 255, 255, 0.2), 136px 390px 0 rgba(255, 255, 255, 0.2), 141px 0 0 rgba(255, 255, 255, 0.2), 141px 390px 0 rgba(255, 255, 255, 0.2), 146px 0 0 rgba(255, 255, 255, 0.2), 146px 390px 0 rgba(255, 255, 255, 0.2), 151px 0 0 rgba(255, 255, 255, 0.2), 151px 390px 0 rgba(255, 255, 255, 0.2), 156px 0 0 rgba(255, 255, 255, 0.2), 156px 390px 0 rgba(255, 255, 255, 0.2), 161px 0 0 rgba(255, 255, 255, 0.2), 161px 390px 0 rgba(255, 255, 255, 0.2), 166px 0 0 rgba(255, 255, 255, 0.2), 166px 390px 0 rgba(255, 255, 255, 0.2), 171px 0 0 rgba(255, 255, 255, 0.2), 171px 390px 0 rgba(255, 255, 255, 0.2), 176px 0 0 rgba(255, 255, 255, 0.2), 176px 390px 0 rgba(255, 255, 255, 0.2), 181px 0 0 rgba(255, 255, 255, 0.2), 181px 390px 0 rgba(255, 255, 255, 0.2), 186px 0 0 rgba(255, 255, 255, 0.2), 186px 390px 0 rgba(255, 255, 255, 0.2), 216px 0 0 rgba(255, 255, 255, 0.2), 216px 390px 0 rgba(255, 255, 255, 0.2), 221px 0 0 rgba(255, 255, 255, 0.2), 221px 390px 0 rgba(255, 255, 255, 0.2), 226px 0 0 rgba(255, 255, 255, 0.2), 226px 390px 0 rgba(255, 255, 255, 0.2), 231px 0 0 rgba(255, 255, 255, 0.2), 231px 390px 0 rgba(255, 255, 255, 0.2), 236px 0 0 rgba(255, 255, 255, 0.2), 236px 390px 0 rgba(255, 255, 255, 0.2), 241px 0 0 rgba(255, 255, 255, 0.2), 241px 390px 0 rgba(255, 255, 255, 0.2), 246px 0 0 rgba(255, 255, 255, 0.2), 246px 390px 0 rgba(255, 255, 255, 0.2), 251px 0 0 rgba(255, 255, 255, 0.2), 251px 390px 0 rgba(255, 255, 255, 0.2), 256px 0 0 rgba(255, 255, 255, 0.2), 256px 390px 0 rgba(255, 255, 255, 0.2), 261px 0 0 rgba(255, 255, 255, 0.2), 261px 390px 0 rgba(255, 255, 255, 0.2), 266px 0 0 rgba(255, 255, 255, 0.2), 266px 390px 0 rgba(255, 255, 255, 0.2), 271px 0 0 rgba(255, 255, 255, 0.2), 271px 390px 0 rgba(255, 255, 255, 0.2), 276px 0 0 rgba(255, 255, 255, 0.2), 276px 390px 0 rgba(255, 255, 255, 0.2), 281px 0 0 rgba(255, 255, 255, 0.2), 281px 390px 0 rgba(255, 255, 255, 0.2), 286px 0 0 rgba(255, 255, 255, 0.2), 286px 390px 0 rgba(255, 255, 255, 0.2), 291px 0 0 rgba(255, 255, 255, 0.2), 291px 390px 0 rgba(255, 255, 255, 0.2), 296px 0 0 rgba(255, 255, 255, 0.2), 296px 390px 0 rgba(255, 255, 255, 0.2), 301px 0 0 rgba(255, 255, 255, 0.2), 301px 390px 0 rgba(255, 255, 255, 0.2), 306px 0 0 rgba(255, 255, 255, 0.2), 306px 390px 0 rgba(255, 255, 255, 0.2), 311px 0 0 rgba(255, 255, 255, 0.2), 311px 390px 0 rgba(255, 255, 255, 0.2), 316px 0 0 rgba(255, 255, 255, 0.2), 316px 390px 0 rgba(255, 255, 255, 0.2), 321px 0 0 rgba(255, 255, 255, 0.2), 321px 390px 0 rgba(255, 255, 255, 0.2), 326px 0 0 rgba(255, 255, 255, 0.2), 326px 390px 0 rgba(255, 255, 255, 0.2), 331px 0 0 rgba(255, 255, 255, 0.2), 331px 390px 0 rgba(255, 255, 255, 0.2), 336px 0 0 rgba(255, 255, 255, 0.2), 336px 390px 0 rgba(255, 255, 255, 0.2), 341px 0 0 rgba(255, 255, 255, 0.2), 341px 390px 0 rgba(255, 255, 255, 0.2), 346px 0 0 rgba(255, 255, 255, 0.2), 346px 390px 0 rgba(255, 255, 255, 0.2), 351px 0 0 rgba(255, 255, 255, 0.2), 351px 390px 0 rgba(255, 255, 255, 0.2), 356px 0 0 rgba(255, 255, 255, 0.2), 356px 390px 0 rgba(255, 255, 255, 0.2), 361px 0 0 rgba(255, 255, 255, 0.2), 361px 390px 0 rgba(255, 255, 255, 0.2), 366px 0 0 rgba(255, 255, 255, 0.2), 366px 390px 0 rgba(255, 255, 255, 0.2), 371px 0 0 rgba(255, 255, 255, 0.2), 371px 390px 0 rgba(255, 255, 255, 0.2), 376px 0 0 rgba(255, 255, 255, 0.2), 376px 390px 0 rgba(255, 255, 255, 0.2), 381px 0 0 rgba(255, 255, 255, 0.2), 381px 390px 0 rgba(255, 255, 255, 0.2), 386px 0 0 rgba(255, 255, 255, 0.2), 386px 390px 0 rgba(255, 255, 255, 0.2);
    transition: box-shadow .25s ease-in-out;
    will-change: box-shadow; }
  .grid-square-quad-inner:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    top: -1px;
    left: 0px;
    box-shadow: 0 16px 0 rgba(255, 255, 255, 0.2), 390px 16px 0 rgba(255, 255, 255, 0.2), 0 21px 0 rgba(255, 255, 255, 0.2), 390px 21px 0 rgba(255, 255, 255, 0.2), 0 26px 0 rgba(255, 255, 255, 0.2), 390px 26px 0 rgba(255, 255, 255, 0.2), 0 31px 0 rgba(255, 255, 255, 0.2), 390px 31px 0 rgba(255, 255, 255, 0.2), 0 36px 0 rgba(255, 255, 255, 0.2), 390px 36px 0 rgba(255, 255, 255, 0.2), 0 41px 0 rgba(255, 255, 255, 0.2), 390px 41px 0 rgba(255, 255, 255, 0.2), 0 46px 0 rgba(255, 255, 255, 0.2), 390px 46px 0 rgba(255, 255, 255, 0.2), 0 51px 0 rgba(255, 255, 255, 0.2), 390px 51px 0 rgba(255, 255, 255, 0.2), 0 56px 0 rgba(255, 255, 255, 0.2), 390px 56px 0 rgba(255, 255, 255, 0.2), 0 61px 0 rgba(255, 255, 255, 0.2), 390px 61px 0 rgba(255, 255, 255, 0.2), 0 66px 0 rgba(255, 255, 255, 0.2), 390px 66px 0 rgba(255, 255, 255, 0.2), 0 71px 0 rgba(255, 255, 255, 0.2), 390px 71px 0 rgba(255, 255, 255, 0.2), 0 76px 0 rgba(255, 255, 255, 0.2), 390px 76px 0 rgba(255, 255, 255, 0.2), 0 81px 0 rgba(255, 255, 255, 0.2), 390px 81px 0 rgba(255, 255, 255, 0.2), 0 86px 0 rgba(255, 255, 255, 0.2), 390px 86px 0 rgba(255, 255, 255, 0.2), 0 91px 0 rgba(255, 255, 255, 0.2), 390px 91px 0 rgba(255, 255, 255, 0.2), 0 96px 0 rgba(255, 255, 255, 0.2), 390px 96px 0 rgba(255, 255, 255, 0.2), 0 101px 0 rgba(255, 255, 255, 0.2), 390px 101px 0 rgba(255, 255, 255, 0.2), 0 106px 0 rgba(255, 255, 255, 0.2), 390px 106px 0 rgba(255, 255, 255, 0.2), 0 111px 0 rgba(255, 255, 255, 0.2), 390px 111px 0 rgba(255, 255, 255, 0.2), 0 116px 0 rgba(255, 255, 255, 0.2), 390px 116px 0 rgba(255, 255, 255, 0.2), 0 121px 0 rgba(255, 255, 255, 0.2), 390px 121px 0 rgba(255, 255, 255, 0.2), 0 126px 0 rgba(255, 255, 255, 0.2), 390px 126px 0 rgba(255, 255, 255, 0.2), 0 131px 0 rgba(255, 255, 255, 0.2), 390px 131px 0 rgba(255, 255, 255, 0.2), 0 136px 0 rgba(255, 255, 255, 0.2), 390px 136px 0 rgba(255, 255, 255, 0.2), 0 141px 0 rgba(255, 255, 255, 0.2), 390px 141px 0 rgba(255, 255, 255, 0.2), 0 146px 0 rgba(255, 255, 255, 0.2), 390px 146px 0 rgba(255, 255, 255, 0.2), 0 151px 0 rgba(255, 255, 255, 0.2), 390px 151px 0 rgba(255, 255, 255, 0.2), 0 156px 0 rgba(255, 255, 255, 0.2), 390px 156px 0 rgba(255, 255, 255, 0.2), 0 161px 0 rgba(255, 255, 255, 0.2), 390px 161px 0 rgba(255, 255, 255, 0.2), 0 166px 0 rgba(255, 255, 255, 0.2), 390px 166px 0 rgba(255, 255, 255, 0.2), 0 171px 0 rgba(255, 255, 255, 0.2), 390px 171px 0 rgba(255, 255, 255, 0.2), 0 176px 0 rgba(255, 255, 255, 0.2), 390px 176px 0 rgba(255, 255, 255, 0.2), 0 181px 0 rgba(255, 255, 255, 0.2), 390px 181px 0 rgba(255, 255, 255, 0.2), 0 186px 0 rgba(255, 255, 255, 0.2), 390px 186px 0 rgba(255, 255, 255, 0.2), 0 216px 0 rgba(255, 255, 255, 0.2), 390px 216px 0 rgba(255, 255, 255, 0.2), 0 221px 0 rgba(255, 255, 255, 0.2), 390px 221px 0 rgba(255, 255, 255, 0.2), 0 226px 0 rgba(255, 255, 255, 0.2), 390px 226px 0 rgba(255, 255, 255, 0.2), 0 231px 0 rgba(255, 255, 255, 0.2), 390px 231px 0 rgba(255, 255, 255, 0.2), 0 236px 0 rgba(255, 255, 255, 0.2), 390px 236px 0 rgba(255, 255, 255, 0.2), 0 241px 0 rgba(255, 255, 255, 0.2), 390px 241px 0 rgba(255, 255, 255, 0.2), 0 246px 0 rgba(255, 255, 255, 0.2), 390px 246px 0 rgba(255, 255, 255, 0.2), 0 251px 0 rgba(255, 255, 255, 0.2), 390px 251px 0 rgba(255, 255, 255, 0.2), 0 256px 0 rgba(255, 255, 255, 0.2), 390px 256px 0 rgba(255, 255, 255, 0.2), 0 261px 0 rgba(255, 255, 255, 0.2), 390px 261px 0 rgba(255, 255, 255, 0.2), 0 266px 0 rgba(255, 255, 255, 0.2), 390px 266px 0 rgba(255, 255, 255, 0.2), 0 271px 0 rgba(255, 255, 255, 0.2), 390px 271px 0 rgba(255, 255, 255, 0.2), 0 276px 0 rgba(255, 255, 255, 0.2), 390px 276px 0 rgba(255, 255, 255, 0.2), 0 281px 0 rgba(255, 255, 255, 0.2), 390px 281px 0 rgba(255, 255, 255, 0.2), 0 286px 0 rgba(255, 255, 255, 0.2), 390px 286px 0 rgba(255, 255, 255, 0.2), 0 291px 0 rgba(255, 255, 255, 0.2), 390px 291px 0 rgba(255, 255, 255, 0.2), 0 296px 0 rgba(255, 255, 255, 0.2), 390px 296px 0 rgba(255, 255, 255, 0.2), 0 301px 0 rgba(255, 255, 255, 0.2), 390px 301px 0 rgba(255, 255, 255, 0.2), 0 306px 0 rgba(255, 255, 255, 0.2), 390px 306px 0 rgba(255, 255, 255, 0.2), 0 311px 0 rgba(255, 255, 255, 0.2), 390px 311px 0 rgba(255, 255, 255, 0.2), 0 316px 0 rgba(255, 255, 255, 0.2), 390px 316px 0 rgba(255, 255, 255, 0.2), 0 321px 0 rgba(255, 255, 255, 0.2), 390px 321px 0 rgba(255, 255, 255, 0.2), 0 326px 0 rgba(255, 255, 255, 0.2), 390px 326px 0 rgba(255, 255, 255, 0.2), 0 331px 0 rgba(255, 255, 255, 0.2), 390px 331px 0 rgba(255, 255, 255, 0.2), 0 336px 0 rgba(255, 255, 255, 0.2), 390px 336px 0 rgba(255, 255, 255, 0.2), 0 341px 0 rgba(255, 255, 255, 0.2), 390px 341px 0 rgba(255, 255, 255, 0.2), 0 346px 0 rgba(255, 255, 255, 0.2), 390px 346px 0 rgba(255, 255, 255, 0.2), 0 351px 0 rgba(255, 255, 255, 0.2), 390px 351px 0 rgba(255, 255, 255, 0.2), 0 356px 0 rgba(255, 255, 255, 0.2), 390px 356px 0 rgba(255, 255, 255, 0.2), 0 361px 0 rgba(255, 255, 255, 0.2), 390px 361px 0 rgba(255, 255, 255, 0.2), 0 366px 0 rgba(255, 255, 255, 0.2), 390px 366px 0 rgba(255, 255, 255, 0.2), 0 371px 0 rgba(255, 255, 255, 0.2), 390px 371px 0 rgba(255, 255, 255, 0.2), 0 376px 0 rgba(255, 255, 255, 0.2), 390px 376px 0 rgba(255, 255, 255, 0.2), 0 381px 0 rgba(255, 255, 255, 0.2), 390px 381px 0 rgba(255, 255, 255, 0.2), 0 386px 0 rgba(255, 255, 255, 0.2), 390px 386px 0 rgba(255, 255, 255, 0.2);
    transition: box-shadow .25s ease-in-out;
    will-change: box-shadow; }

@media (max-width: 400px) {
  .grid-square-quad {
    width: 100%; }
  .grid-row {
    max-width: 100%; }
  .quality-grid {
    width: 100%; }
  .grid-row > *:first-child {
    display: none; }
  .grid-square-double {
    width: 100%; }
  .grid-square-double:before, .grid-square-double:after, .grid-square:before, .grid-square:after, .grid-square-quad-inner:before, .grid-square-quad-inner:after {
    display: none; } }
@media (max-width: 448px) {
  .pairin-survey-apply {
    background: #4cc0b3; }
    .pairin-survey-apply header .logo-text {
      color: #fff; }
    .pairin-survey-apply header svg > g > path {
      fill: #fff; } }

.pairin-survey-apply-form-wrapper {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: 400px;
  margin: 1em; }
  @media (max-width: 448px) {
    .pairin-survey-apply-form-wrapper {
      margin: 0;
      border-radius: 0;
      box-shadow: none;
      width: 100%;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      max-height: none;
      overflow: visible; } }
  .pairin-survey-apply-form-wrapper.step-form-review {
    cursor: pointer;
    margin-top: 1em; }

.pairin-survey-apply-form {
  text-align: center; }

.pairin-survey-apply-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%; }
  .pairin-survey-apply-body h2 {
    text-align: center;
    font-size: 2em;
    font-weight: 300;
    margin: 0;
    padding: .5em;
    background: #4cc0b3;
    color: #fff; }
    @media (max-width: 448px) {
      .pairin-survey-apply-body h2 {
        padding-top: 0; } }
  .pairin-survey-apply-body h3 {
    margin: 0;
    padding: .5rem 1rem;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 300;
    color: #4cc0b3; }
  @media (max-height: 448px) and (-webkit-min-device-pixel-ration: 2) {
    .pairin-survey-apply-body {
      display: block; } }

.pairin-survey-apply-form-error {
  line-height: 1.5;
  padding: .5em;
  margin-top: -1em;
  margin-bottom: 1em;
  color: #fff;
  background: #ac0817; }
  .pairin-survey-apply-form-error ul {
    list-style: none;
    margin: 0;
    padding: 0; }

.pairin-survey-apply-form-section {
  padding: 1em; }
  .pairin-survey-apply-form-section > label {
    line-height: 1.5; }
    .pairin-survey-apply-form-section > label > input, .pairin-survey-apply-form-section > label select, .pairin-survey-apply-form-section > label .file-upload {
      margin-top: .5em; }
    .pairin-survey-apply-form-section > label > small {
      margin-bottom: 1rem;
      display: block;
      font-size: .75em; }
  .pairin-survey-apply-form-section + .pairin-survey-apply-form-section {
    padding-top: 0; }
  @media (max-width: 448px) {
    .pairin-survey-apply-form-section {
      flex: 1; } }

.pairin-survey-apply-form-footer {
  padding: 0 1em 1em 1em; }
.survey-list-instructions {
  flex: 1;
  width: 100%; }
  .survey-list-instructions h1 {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    padding: 1.25rem;
    color: #221f39;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 3em; }
    @media (max-width: 480px) {
      .survey-list-instructions h1 {
        font-size: 2em;
        padding: .75rem .75em;
        padding-top: 0; } }

.survey-list-instructions-inner {
  width: 1200px;
  margin: auto;
  max-width: 100%;
  padding: 1.25em;
  display: flex; }
  @media (max-width: 768px) {
    .survey-list-instructions-inner {
      display: block; } }
  @media (max-width: 480px) {
    .survey-list-instructions-inner {
      padding: 0 1.5em;
      padding-bottom: 3em; } }

@media (max-width: 768px) {
  .survey-list-instructions-image {
    display: none; } }

.survey-list-instructions-text {
  font-size: 1.125em; }
  .survey-list-instructions-text p {
    margin: 0;
    margin-bottom: 1em; }
    @media (max-width: 480px) {
      .survey-list-instructions-text p {
        font-size: .85em; } }
  .survey-list-instructions-text blockquote {
    margin-bottom: 1em; }
    @media (max-width: 480px) {
      .survey-list-instructions-text blockquote {
        padding: .25em .25em .25em 1em;
        font-size: .75em; } }
  @media (max-width: 340px) {
    .survey-list-instructions-text > button {
      font-size: .9em; } }
.survey-loading {
  flex: 1;
  width: 1200px;
  max-width: 100%;
  margin: auto;
  justify-content: center;
  align-items: center;
  display: flex; }

#Survey-Loading-Body {
  fill: #27a027; }

#Survey-Loading-Circle-Body {
  fill: #221f39; }

#Survey-Loading-Circle-Arm {
  fill: #27a027; }

#Survey-Loading-Circle {
  transform-origin: center;
  transform: rotate(0deg);
  will-change: transform;
  animation: survey-loading-spinner .5s linear infinite; }

@keyframes survey-loading-spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.survey-login {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #4cc0b3; }
  .survey-login footer {
    flex: 0 0 134px; }
.survey-login-auto {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
  font-size: 3em;
  font-family: Lato;
  width: 1200px;
  max-width: 100%;
  margin: auto; }
  .survey-login-auto p {
    margin: 0;
    font-weight: 300;
    margin-bottom: .25em;
    text-align: center; }
    @media (max-width: 767px) {
      .survey-login-auto p {
        font-size: .5em;
        padding: 0 1em; } }
  .survey-login-auto .loading-dots-dot {
    background: #bd9cbd; }
.survey-login-body {
  padding: 1em;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden; }
  .survey-login-body > h2 {
    font-weight: 300;
    font-size: 2em;
    margin: .5em; }
  @media (max-width: 480px) {
    .survey-login-body {
      background: transparent;
      box-shadow: none;
      overflow: auto; }
      .survey-login-body > h2 {
        margin: 1em 0;
        font-size: 1.25em; } }
body {
  overflow-x: hidden; }

.pairin-survey {
  background: #f5f5f2;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start; }
  .pairin-survey header {
    color: #221f39; }
    @media (max-width: 480px) {
      .pairin-survey header {
        padding: 1em 1.5em; } }
    .pairin-survey header svg g {
      fill: #27a027; }
    .pairin-survey header svg > g > path {
      fill: #221f39; }
    .pairin-survey header .language-picker {
      text-transform: lowercase;
      margin-left: 84px;
      font-size: 12px;
      color: #595959;
      font-weight: 600;
      line-height: 1.5;
      display: flex; }
      .pairin-survey header .language-picker > select {
        -webkit-appearance: none;
        padding: 0 2em 0 1em;
        line-height: 1.5;
        border: none;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAAXNSR0IArs4c6QAAAk9JREFUeAHt3Oltg0AURWGQ+6GG1EEzcZqhjvRAQSTXUlazz/becJ5kyQvMMOf776ZhKEABClCAAhSgAAUoQAEKUIACFKAABShAAQpQgAIUoAAFKEABClCAAhSgAAUoQAEKUIACFRdo+76/T9P0WvEZ3Rytbdu32ziO713XtZ9P/eLmySt8UGEMw3C/6WyglBX+wtBTPED0BhRVyD+/MbT7N4g+gKIK+eY/hnb+A6IvQFGF9DOHoV2fQPQlKKqQbpYwtOMsiH4ARRXizxqGdlsE0Y+gqEK82cLQTqsgugAUVQifPRjaZRNEF4GiCudnL4Z22AWiC0FRheNzBEOr7wbRxaCowv45iqGVD4HoBlBUYXvOYGjVwyC6CRRVWJ6zGFrxFIhuBEUVnicEQ6udBtHNoKjCz4RiaKUgEC0Aiio0TQwMrRMMokWujhILIxrIlVFiYkQFuSJKbIzoIFdCSYGRBOQKKKkwkoHUjJISIylIjSipMZKD1ISSAyMLSA0ouTCygXhGyYmRFcQjSm6M7CCeUEpgFAHxgFIKoxiIZZSSGEVBLKKUxigOYgnFAoYJEAsoVjDMgJREsYRhCqQEijUMcyA5USximATJgWIVwyxIShTLGKZBUqBYxzAPEhPFA4YLkBgoXjDcgISgeMJwBXIGxRuGO5AjKB4xXILsQfGK4RZkDcUzhmuQORTvGDpTFaM/YdOrisNwCApQgAIUoAAFKEABClCAAhSgAAUoQAEKUIACFKAABShAAQpQgAIUoAAFKEABClCAAhSgQM0FPgA1Glgru/yNoQAAAABJRU5ErkJggg==);
        background-size: 1em;
        background-repeat: no-repeat;
        background-position: calc(100% - 0.5em) calc(100% - 50%);
        font-size: inherit;
        color: inherit;
        outline: none;
        cursor: pointer; }
    .pairin-survey header .header-progress {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 1em; }
      @media (max-width: 768px) {
        .pairin-survey header .header-progress {
          position: fixed;
          z-index: 10000;
          transform: translateZ(0);
          top: 0;
          left: 0;
          right: 0;
          padding: 0; }
          .pairin-survey header .header-progress .fixed-wrapper {
            margin-top: 0 !important; }
          .pairin-survey header .header-progress > div:not(.fixed-wrapper) {
            display: none; } }
      .pairin-survey header .header-progress .fixed-wrapper {
        margin-top: 0.25em; }
        .pairin-survey header .header-progress .fixed-wrapper.fixed {
          margin: 0; }
          .pairin-survey header .header-progress .fixed-wrapper.fixed .progress {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            transform: translateZ(0); }

.pairin-survey-footer {
  padding: 2em;
  width: 768px;
  max-width: 100%;
  margin: auto; }
  @media (max-width: 767px) {
    .pairin-survey-footer {
      padding: 0 1.5em;
      padding-bottom: 2em; }
      .pairin-survey-footer > button {
        font-size: 1em;
        width: 100%; } }

.pairin-survey-body {
  flex: 1;
  width: 100%; }
  .pairin-survey-body.pairin-survey-body-loading {
    display: flex;
    width: 1200px;
    max-width: 100%;
    margin: auto;
    align-items: flex-start;
    justify-content: center;
    font-size: 2em; }
  .pairin-survey-body.pairin-survey-state-real .pairin-survey-adjective-header-right {
    display: none; }
  @media (max-width: 767px) {
    .pairin-survey-body.pairin-survey-state-ideal .pairin-survey-adjective-header-left {
      display: none; } }

.adjective {
  display: flex; }

.adjective-body-main {
  display: flex;
  flex: 1; }

.adjective-name {
  flex: 1; }

.pairin-survey-adjective-checklist {
  width: 100%;
  max-width: 768px;
  margin: auto;
  padding: 1.5em; }

.adjective-checkbox {
  width: 50px;
  height: 50px;
  padding: 5px; }
  @media (min-width: 768px) {
    .adjective-checkbox {
      margin-right: 2em; }
      .adjective-checkbox:last-child {
        margin-right: 0;
        margin-left: 2em; } }

.adjective-checkbox-checkbox {
  display: flex;
  width: 40px;
  height: 40px;
  border: 2px solid #221f39;
  border-radius: 50%;
  outline: none;
  margin: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #fff;
  background: transparent;
  transition: all 0.125s ease-in-out;
  will-change: background, border-color; }
  .adjective-checkbox-checkbox > i {
    transform: translateX(1px) translateY(1px); }
  .adjective-checkbox-checkbox.disabled {
    border-color: grey; }
  .adjective-checkbox-checkbox.checked {
    background: #66cc66;
    border-color: #66cc66; }
  .adjective-checkbox-checkbox.disabled-checked {
    background: grey;
    border-color: grey; }

.pairin-survey-adjective-checklist
> .adjective:nth-child(2n-1)
.adjective-body:not(.checked),
.pairin-survey-adjective-checklist
> .adjective:nth-child(2n-1)
.adjective-checkbox:not(.checked) {
  background: #fff; }

.adjective-name {
  padding: 0.25em 0.65em;
  font-size: 1.5em;
  font-weight: 300;
  display: flex;
  align-items: center; }

.adjective-audio {
  flex: 0 0 50px; }
  .adjective-audio > span {
    border: none;
    width: 2em;
    height: 2em;
    background: transparent;
    border-radius: 50%;
    margin: 0.25em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.25em;
    padding: 0;
    cursor: pointer; }
    .adjective-audio > span:hover {
      background: #4cc0b3;
      color: #fff; }

.adjective-body {
  flex: 1;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none; }
  .adjective-body.active .adjective-definition {
    height: 3.5em;
    opacity: 1;
    padding: 0.25em 1.25em; }

@media (max-width: 767px) {
  .adjective-body .adjective-definition {
    height: auto;
    opacity: 1;
    padding: 1em; }
  .adjective-body.checked {
    background: #66cc66 !important; }
    .adjective-body.checked .adjective-audio span:hover {
      background: #fff;
      color: #4cc0b3; } }

.adjective-definition {
  opacity: 0;
  overflow: hidden;
  height: 0;
  padding: 0 1.25em;
  line-height: 1.5em;
  font-weight: 300;
  will-change: height, opacity;
  transition: all 0.25s ease-in-out; }

.adjective-toggle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em; }
  @media (max-width: 767px) {
    .adjective-toggle {
      display: none; } }

.pairin-survey-adjective-header {
  max-width: 768px;
  width: 100%;
  margin: auto;
  position: relative;
  height: 100px; }

.pairin-survey-adjective-header-left {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  transform: translateX(calc(-50% + 25px + 1.5em));
  margin-bottom: 1em; }

.pairin-survey-adjective-header-right {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  transform: translateX(calc(50% - 25px - 1.5em));
  margin-bottom: 1em; }

@media (min-width: 869px) {
  .pairin-survey-adjective-header-left:after,
  .pairin-survey-adjective-header-right:after {
    content: '';
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    transform-origin: 0 0;
    bottom: -50%;
    left: 50%;
    border-right: 3px solid #27a027;
    border-bottom: 3px solid #27a027;
    transform: rotateZ(45deg); } }

@media (max-width: 767px) {
  .adjective-toggle {
    display: none; }
  .adjective {
    position: relative;
    margin-bottom: 1em;
    border-radius: 4px;
    overflow: hidden; }
    .adjective.adjective-real .adjective-checkbox-real {
      display: block; }
    .adjective.adjective-ideal .adjective-checkbox-ideal {
      display: block; }
  .adjective-checkbox {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0) !important;
    padding: 0;
    display: none; }
  .adjective-checkbox-checkbox {
    margin: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    background: #fff; }
  .adjective-body {
    pointer-events: none;
    background: rgba(0, 0, 0, 0) !important;
    position: relative;
    z-index: 1;
    padding: 0.5em; }
    .adjective-body .adjective-audio > span {
      margin: 0 0.5em; }
    .adjective-body.checked {
      color: #fff; }
      .adjective-body.checked .adjective-audio > span {
        color: #fff;
        opacity: 0.5; }
  .adjective-body-main {
    pointer-events: none; }
  .adjective-audio {
    pointer-events: all; }
  .adjective-checkbox-checkbox > i {
    display: none; }
  .pairin-survey-adjective-header {
    height: auto; }
  .pairin-survey-adjective-header-left,
  .pairin-survey-adjective-header-right {
    position: relative;
    text-align: center;
    width: 100%;
    transform: none;
    font-size: 1em;
    margin: 0; }
    .pairin-survey-adjective-header-left > strong,
    .pairin-survey-adjective-header-right > strong {
      font-size: 2em;
      text-transform: uppercase;
      font-weight: 400;
      color: #221f39; }
  .pairin-survey-complete .pairin-survey-center-body h1 {
    font-size: 1.5em;
    padding: 0 1em; }
    .pairin-survey-complete .pairin-survey-center-body h1.pairin-survey-complete-count {
      font-size: 10em;
      padding: 0;
      margin: 0; }
  .pairin-survey-complete .pairin-survey-center-body p {
    padding: 0 1em;
    font-size: 0.75em; } }

@media (max-width: 375px) {
  .pairin-survey-adjective-header-left,
  .pairin-survey-adjective-header-right {
    padding: 0 1.5em;
    line-height: 1.5; }
    .pairin-survey-adjective-header-left > strong,
    .pairin-survey-adjective-header-right > strong {
      font-size: 1.35em; } }

@media (max-width: 868px) and (min-width: 767px) {
  .pairin-survey-adjective-header {
    width: 100%;
    padding: 0 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
  .pairin-survey-adjective-header-right,
  .pairin-survey-adjective-header-left {
    position: relative;
    transform: translateX(0); }
  .pairin-survey-adjective-header-right {
    text-align: right; }
  .pairin-survey-adjective-header-left {
    text-align: left; } }

.pairin-survey-center-body {
  flex: 1 0 auto;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (max-width: 448px) {
    .pairin-survey-center-body {
      display: block;
      height: 300px;
      min-height: calc(100% - 134px);
      padding-bottom: 0; } }

.pairin-survey-cards-card {
  display: flex;
  flex-direction: column;
  background: #fff; }

.pairin-survey-body.pairin-survey-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 500px; }

.pairin-survey-cards-card-footer {
  display: flex;
  align-items: center; }

.pairin-survey-cards-card-body {
  padding: 1em; }

.pairin-survey-cards-card-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em; }

.pairin-survey-cards-card-footer > div {
  font-size: 1.5em;
  padding: 0 0.5em;
  padding: 1em;
  flex: 1;
  text-align: center;
  background: #ebebeb;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center; }

.pairin-survey-cards-card-footer > button {
  display: block;
  height: 100px;
  margin: 0;
  border-radius: 0;
  font-size: 2em;
  padding: 0;
  flex: 1; }

.pairin-survey-cards-card-body {
  width: 600px;
  max-width: 100%;
  text-align: center; }

.pairin-survey-cards-card-body > h2 {
  font-size: 3em;
  margin: 0;
  margin-top: 0.5em;
  text-transform: lowercase; }

.pairin-survey-cards-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1; }

.pairin-survey-cards-card-description {
  height: 0;
  overflow: hidden;
  transition: height 0.25s ease-in-out;
  will-change: height;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  line-height: 1.5;
  max-width: 600px;
  padding: 0 1em; }

.pairin-survey-cards-card-description.active {
  height: 5.5em; }

.pairin-survey-cards-card-controls button {
  display: flex;
  align-items: center;
  background: transparent;
  color: inherit;
  font-size: 2em;
  padding: 0.5em;
  border: none; }
  .pairin-survey-cards-card-controls button:hover {
    background: #ebebeb; }

.pairin-survey-cards-controls {
  padding: 2em; }

.pairin-survey-cards-card.exit-yes,
.pairin-survey-cards-card.exit-no {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0);
  z-index: 100000; }

.pairin-survey-cards-card.exit-no.active {
  transform: translateX(-100%) translateY(-100%) rotate(-45deg);
  opacity: 0; }

.pairin-survey-cards-card.exit-yes.active {
  transform: translateX(100%) translateY(-100%) rotate(45deg);
  opacity: 0; }

.pairin-survey-cards-card.exit, .pairin-survey-cards-card.enter {
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.5s ease-in-out;
  will-change: transform; }

.pairin-survey-cards-card.exit {
  position: absolute;
  transform: translateY(0);
  opacity: 1; }
  .pairin-survey-cards-card.exit.active {
    transform: translateY(100px);
    opacity: 0; }

.pairin-survey-cards-card.enter {
  position: relative;
  transform: translateY(100px);
  opacity: 0; }
  .pairin-survey-cards-card.enter.active {
    transform: translateY(0);
    opacity: 1; }

.pairin-survey-cards-card.enter-yes {
  transform: translateX(100%) translateY(-100%) rotate(45deg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  will-change: transform, opacity; }

.pairin-survey-cards-card.enter-no {
  transform: translateX(-100%) translateY(-100%) rotate(-45deg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  will-change: transform, opacity; }

.pairin-survey-cards-card.enter-yes.active,
.pairin-survey-cards-card.enter-no.active {
  transform: translateX(0) translateY(0) rotate(0);
  opacity: 1; }

.pairin-survey-cards-container {
  position: relative; }

@media (max-width: 600px) {
  .pairin-survey-body.pairin-survey-cards {
    display: block;
    height: calc(100% - 174px);
    min-height: 300px; }
  .pairin-survey-cards-container {
    width: 100%;
    height: 100%; }
  .pairin-survey-cards-card {
    height: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none; }
  .pairin-survey-cards-card-footer > div {
    display: none; }
  .pairin-survey-cards-card-body > h2 {
    font-size: 2em; }
  .pairin-survey-cards-controls {
    justify-content: center;
    display: flex; }
  .pairin-survey-cards-card-controls button > small {
    display: none; } }
.pairin-survey-multiple {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1200px;
  max-width: 100%;
  margin: auto; }

.pairin-survey-multiple-select {
  padding: 1em; }
  .pairin-survey-multiple-select > p {
    font-size: 2em;
    font-weight: 300;
    text-align: center; }

.pairin-survey-multiple-select-options {
  display: flex;
  flex-direction: column; }

.pairin-survey-multiple-select-option {
  display: block;
  line-height: 3em;
  cursor: pointer;
  padding: .5em; }
  .pairin-survey-multiple-select-option > input[type=checkbox] {
    appearance: none;
    display: block;
    width: 4em;
    height: 4em;
    margin: 2px;
    margin-right: 1em;
    border: 1px solid #ccc;
    float: left;
    border-radius: 50%;
    background: #fff;
    transition: all .125s ease-in-out;
    outline: none;
    cursor: pointer; }
    .pairin-survey-multiple-select-option > input[type=checkbox]:checked {
      background: #66cc66;
      border-color: #66cc66; }
  .pairin-survey-multiple-select-option:not(:last-child) {
    border-bottom: 1px solid #ccc; }

.pairin-survey-multiple-select-controls {
  margin: 3em 0; }
.pairin-survey-recent {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1200px;
  max-width: 100%;
  margin: auto;
  margin-bottom: 136px; }
  .pairin-survey-recent p {
    font-size: 2em;
    text-align: center; }
    @media (max-width: 480px) {
      .pairin-survey-recent p {
        font-size: 1.5em;
        padding: .5em; } }

.pairin-survey-recent-options {
  display: flex;
  padding: 1em; }
  .pairin-survey-recent-options > label {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center; }
    .pairin-survey-recent-options > label input[type=radio] {
      display: block;
      -webkit-appearance: none;
      width: 3em;
      height: 3em;
      border: 1px solid #ccc;
      border-radius: 50%;
      outline: none;
      cursor: pointer;
      background: transparent;
      transition: all .125s ease-in-out;
      will-change: background, border-color; }
      .pairin-survey-recent-options > label input[type=radio]:checked {
        background: #66cc66;
        border-color: #66cc66; }
    .pairin-survey-recent-options > label > div {
      display: flex;
      align-items: flex-end;
      flex: 1 0 calc(50px + 2em);
      padding: 1em;
      justify-content: center; }

.pairin-survey-recent-controls {
  margin-top: 2em;
  text-align: center; }
