@font-face {
  font-family: 'SFCompactDisplay';
  src: url('fonts/SFCompactDisplay-Regular.eot');
  src: url('fonts/SFCompactDisplay-Regular.eot?#iefix') format('embedded-opentype'),
     url('fonts/SFCompactDisplay-Regular.woff2') format('woff2'),
     url('fonts/SFCompactDisplay-Regular.woff') format('woff'),
     url('fonts/SFCompactDisplay-Regular.ttf') format('truetype'),
     url('fonts/SFCompactDisplay-Regular.svg#SFCompactDisplay-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url('fonts/SFCompactDisplay-Bold.eot');
  src: url('fonts/SFCompactDisplay-Bold.eot?#iefix') format('embedded-opentype'),
     url('fonts/SFCompactDisplay-Bold.woff2') format('woff2'),
     url('fonts/SFCompactDisplay-Bold.woff') format('woff'),
     url('fonts/SFCompactDisplay-Bold.ttf') format('truetype'),
     url('fonts/SFCompactDisplay-Bold.svg#SFCompactDisplay-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url('fonts/SFCompactDisplay-Black.eot');
  src: url('fonts/SFCompactDisplay-Black.eot?#iefix') format('embedded-opentype'),
     url('fonts/SFCompactDisplay-Black.woff2') format('woff2'),
     url('fonts/SFCompactDisplay-Black.woff') format('woff'),
     url('fonts/SFCompactDisplay-Black.ttf') format('truetype'),
     url('fonts/SFCompactDisplay-Black.svg#SFCompactDisplay-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

.fadeIn {
  animation-name: fadeIn;
}

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

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible;
  animation-name: flipOutY;
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

.flipInY {
  backface-visibility: visible;
  animation-name: flipInY;
}

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

.bounceInUp {
  animation-name: bounceInUp;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active {
  outline: 0;
}

a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  background: #e9ebee;
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "SFCompactDisplay", sans-serif;
  color: #222;
}

a {
  color: #615d88;
  -webkit-transition: color 0.15s ease-out;
  -moz-transition: color 0.15s ease-out;
  -ms-transition: color 0.15s ease-out;
  -o-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
}

a:hover {
  color: #8983c0;
}

hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

img {
  border-style: none;
}

a {
  text-decoration: none;
}

.u-full-width {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

.hidden {
  display: none;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.block-center {
  width: 100%;
  display: block;
  text-align: center;
}

.main-wrapper {
  position: relative;
  top: 90px;
}

.page-title-wrapper {
  text-align: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 55px;
  z-index: 10;
  padding: 2px;
  background-color: #f7f7f7;
}

.page-title-wrapper h1 {
  font-size: 1.9rem;
  line-height: 1.9;
  font-weight: bold;
  margin-bottom: 0;
}

.inline-block {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: -.08rem;
}

h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #615d88;
}

p {
  margin-top: 0;
}

.text-small {
  font-size: 1.4rem;
}

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

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

.container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}

@media (min-width: 550px) {
  .container {
    width: 80%;
  }
  .column,
  .columns {
    margin-left: 4%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
  .one.column,
  .one.columns {
    width: 4.66667%;
  }
  .two.columns {
    width: 13.33333%;
  }
  .three.columns {
    width: 22%;
  }
  .four.columns {
    width: 30.66667%;
  }
  .five.columns {
    width: 39.33333%;
  }
  .six.columns {
    width: 48%;
  }
  .seven.columns {
    width: 56.66667%;
  }
  .eight.columns {
    width: 65.33333%;
  }
  .nine.columns {
    width: 74%;
  }
  .ten.columns {
    width: 82.66667%;
  }
  .eleven.columns {
    width: 91.33333%;
  }
  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }
  .one-third.column {
    width: 30.66667%;
  }
  .two-thirds.column {
    width: 65.33333%;
  }
  .one-half.column {
    width: 48%;
  }
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.66667%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.33333%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.66667%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.33333%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.66667%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.33333%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.66667%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.33333%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.66667%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.33333%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.column {
    margin-left: 52%;
  }
}

.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

.button,
button {
  text-align: center;
  background: #615d88;
  color: white;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 700;
  padding-right: 16px;
  padding-left: 16px;
  line-height: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-width: 180px;
  height: 50px;
  box-sizing: border-box;
  display: inline-block;
  -webkit-transition: all 0.175s ease-out;
  -moz-transition: all 0.175s ease-out;
  -ms-transition: all 0.175s ease-out;
  -o-transition: all 0.175s ease-out;
  transition: all 0.175s ease-out;
  -webkit-touch-callout:none !important;-webkit-user-select:none !important;-khtml-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
  text-align: center;
  background: #615d88;
  color: white;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 700;
  padding-right: 16px;
  padding-left: 16px;
  line-height: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-width: 180px;
  height: 50px;
  box-sizing: border-box;
  display: inline-block;
}

.button:hover,
button:hover {
  background: #f57070;
  color: white;
  cursor: pointer;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.button:active,
button:active {
  -webkit-transform: scale(1.0125);
  -moz-transform: scale(1.0125);
  -ms-transform: scale(1.0125);
  -o-transform: scale(1.0125);
  transform: scale(1.0125);
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  color: white;
  cursor: pointer;
}

.button:focus,
button:focus {
  color: #fff;
  border-color: transparent;
  outline: 0;
}

input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888888;
  outline: 0;
}

.button.button-primary,
button.button-primary {
  color: #fff;
  background-color: #615d88;
  border-color: #615d88;
}

input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #fff;
  background-color: #615d88;
  border-color: #615d88;
}

.button.button-primary:hover,
button.button-primary:hover {
  color: #fff;
  background-color: #615d88;
  border-color: #615d88;
}

input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover {
  color: #fff;
  background-color: #615d88;
  border-color: #615d88;
}

.button.button-primary:focus,
button.button-primary:focus {
  color: #fff;
  background-color: #615d88;
  border-color: #615d88;
}

input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #fff;
  background-color: #615d88;
  border-color: #615d88;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"] {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus {
  border: 1px solid #615d88;
  outline: 0;
}

textarea:focus,
select:focus {
  border: 1px solid #615d88;
  outline: 0;
}

label,
legend {
  display: inline-block;
  margin-bottom: .5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label>.label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}

form.has-error input,
form.has-error input:focus {
  border-color: red;
}

form.has-error label {
  color: red;
}

ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
  padding-left: 0;
  margin-top: 0;
}

ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}

ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}

li {
  margin-bottom: 1rem;
}

button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

nav.navbar {
  background: #615d88;
}

#q0 {
  padding-top: 55px;
}

#q0 .card-img {
  margin-top: 1.5rem;
}

#q0 .card {
  text-align: center;
}

#q0 .privacy-scarcity {
  display: none;
}

#q0 a.btnyes {
  width: 100%;
}

.circle1 {
  color: #fff;
  font-weight: bold;
  background: #615d88;
  border-radius: 3px;
  padding: 3px 10px;
  margin-left: 3px;
}

.circle2 {
  color: #888;
  font-weight: bold;
  background: #ececec;
  border-radius: 3px;
  padding: 3px 10px;
  margin-left: 3px;
}

a.show_hide,
a.btnyes {
  width: 48%;
}

a.btnno {
  width: 48%;
  background: #d1d1d4;
  color: #fff;
}

.toggleDiv {
  width: 100%;
  max-width: 600px;
  display: none;
  margin: 0 auto;
  color: #575757;
}

.toggleDiv .top {
  width: 100%;
  color: #5d636c;
  font-size: 2.6rem;
  line-height: 1.1;
  letter-spacing: -0.25px;
  letter-spacing: -0.025em;
  padding: 0.66em 0 0;
  box-sizing: border-box;
}

.toggleDiv .box {
  margin: 0 auto;
  padding: 10px;
  text-align: center;
}

.toggleDiv .box .card {
  max-width: 480px;
  text-align: left;
}

.toggleDiv .box .button {
  min-width: 100px;
}

.toggleDiv li {
  list-style: none;
}

.toggleDiv .toggleDiv .box .question {
  padding-bottom: 20px;
}

.women-matching-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #333148;
  color: #fff;
  font-weight: bold;
  font-size: 2.6rem;
  letter-spacing: -0.25px;
  letter-spacing: -0.025em;
}

.text-question-image-wrapper {
  text-align: center;
  margin-bottom: 1rem;
}

@media (max-width: 550px) {
  .text-question-image-wrapper {
    width: 80%;
    margin: 0 auto;
  }
}


.question.text-question {
  display: inline-block;
}
.text-question .text-answer {
  line-height: 1.2;
  padding-left: 0.2em;
}
.text-question .text-answer .tr-checkbox {
  display: none;
}
.text-question .text-answer .tr-checkbox + label {
  color: #5d636c;
  font-size: 2.6rem;
  font-weight: normal;
  letter-spacing: -0.1px;
  letter-spacing: -0.01em;
}
.text-question .text-answer .tr-checkbox + label::before {
  background: url('images/icon-check-off.png') no-repeat center center transparent;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  display: inline-block;
  content: '';
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.2em;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}
.text-question .text-answer .tr-checkbox:checked + label::before {
  background-image: url('images/icon-check-on.png');
}

.text-question .text-answer:nth-of-type(0n+2) {
  animation-delay: 0.1s;
}

.text-question .text-answer:nth-of-type(0n+3) {
  animation-delay: 0.2s;
}

.text-question .text-answer:nth-of-type(0n+4) {
  animation-delay: 0.3s;
}

.text-question .text-answer:nth-of-type(0n+5) {
  animation-delay: 0.4s;
}

.yes-no-question {
  padding-top: 50px;
}

.yes-no-question .card {
  width: 100%;
}

.yes-no-question img {
  display: block;
  width: 100%;
}


/* image questions */

.image-question {
  text-align: center;
  flex-wrap: wrap;
  flex-direction: row;
  display: flex;
  justify-content: center;
  font-size: 14px;
}

.image-question .card {
  max-width: 100px;
}

.image-question .card .card-text {
  padding: 6px;
  position: relative;
  bottom: 3px;
}

.image-question .img-select {
  text-align: center;
  margin: 5px 1%;
  display: inline-block;
  max-width: 200px;
  position: relative;
  width: 18%;
}
.img-select--f {
  pointer-events: none;
}

.image-question .img-select.checked>span.img-select-check+.card {
  /* (RADIO CHECKED) IMAGE STYLES */
  border: 2px solid #615d88;
  display: block;
}

.image-question .img-select.checked>span.img-select-check {
  background: url('images/icon-tick.png') no-repeat center center transparent;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  content: '';
  position: absolute;
  display: block;
  visibility: visible;
  top: 5px;
  right: 10px;
  width: 46px;
  height: 46px;
  z-index: 1;
}


/* end image questions */


/* email step */

.signup-form .card-scroller .card {
  width: 100px;
}

.signup-form .card-scroller .card-text {
  padding-top: 0px;
}

#email-errors {
  padding-bottom: 10px;
  font-size: 12px;
}

#email-input {
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  width: 235px;
}

@media (min-width: 550px) {
  #email-input {
    width: 70%;
  }
}

#subscribe-form #continue-button {
  margin-bottom: 3.5rem;
}


/* end email step */

@media (max-width: 320px) {
  .image-question .img-select.xxs-hide {
    display: none;
  }
  .toggleDiv .box .image-question {
    padding-bottom: 0;
  }
  .signup-form .box {
    bottom: 10px;
    position: relative;
  }
  #subscribe-form {
    position: relative;
    bottom: 20px;
  }
}

@keyframes moveSlideshow {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -100%;
  }
}

.navbar {
  background: #615d88;
  height: 35px;
  padding: 5px 20px 5px 20px;
  position: fixed;
  left: 0;
  right: 0;
  width: auto;
  z-index: 10000;
  font-size: 1.6rem;
}

.navbar .logo {
  height: auto;
  max-width: 100%;
  width: 190px;
}

.navbar .button {
  margin: -1.5px;
}

.navbar .main-button.invisible {
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  transform: rotateY(90deg);
}

.navbar .main-button.visible {
  visibility: visible;
  opacity: 100;
  transition: all 0.25s ease-in-out;
  transform: rotateY(0deg);
}

.navbar ul.subnav a {
  text-decoration: none;
}

.navbar a {
  color: #fff;
}

.navbar #expand-button {
  display: none;
}

.navbar ul.subnav {
  float: right;
  margin-top: 5px;
}

.navbar ul.subnav li {
  display: inline;
  padding: 0;
}

#download-button,
#home-button {
  position: absolute;
}
#home-button {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#download-button {
  height: 38px;
  min-width: 78px;
  width: 78px;
  line-height: 14px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding-left: 0.66em;
  padding-right: 0.66em;
}

.processing-answers {
  margin-bottom: 10em;
  padding-top: 100px;
}

.processing-answers .progress {
  height: 50px;
  margin: 0 auto 1em;
  overflow: hidden;
  background-color: #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: 1px 1px 24px 5px #c5c5c5;
  box-shadow: 1px 1px 24px 5px #c5c5c5;
  max-width: 80%;
  width: 430px;
}

.processing-answers .progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background: #615d88;
  background: -moz-linear-gradient(top,  #615d88 0%, #8882c4 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#615d88), color-stop(100%,#8882c4));
  background: -webkit-linear-gradient(top,  #615d88 0%,#8882c4 100%);
  background: -o-linear-gradient(top,  #615d88 0%,#8882c4 100%);
  background: -ms-linear-gradient(top,  #615d88 0%,#8882c4 100%);
  background: linear-gradient(to bottom,  #615d88 0%,#8882c4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#615d88', endColorstr='#8882c4',GradientType=0 );
  -webkit-transition: width .6s ease;
  -moz-transition: width .6s ease;
  -ms-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}


.processing-answers .txt {
  text-align: center;
  line-height: 1;
  font-size: 2.6rem;
  font-weight: normal;
  color: #5d636c;
  letter-spacing: -0.25px;
  letter-spacing: -0.025em;
  margin-bottom: 1em;
}


.captcha-wrapper {
  padding-top: 66px;
  text-align: center;
}

@media (max-width: 340px) {
  .captcha-wrapper {
    font-size: 1.4rem;
  }
}

.captcha-wrapper .title {
  color: white;
  font-size: 1.8rem;
}

.captcha-wrapper .captcha-directions,
.captcha-wrapper strong {
  color: #5d636c;
}

.captcha-wrapper .captcha-directions {
  display: block;
  margin-bottom: 0.5rem;
}

.captcha-wrapper .captcha-subtext {
  color: #5d636c;
}
.captcha-wrapper .captcha-subtext,
.captcha-wrapper .h1 {
  margin-bottom: 1rem;
}

.captcha-wrapper .body {
  height: 100vh;
  background-color: #000;
  padding: 20px;
}

.captcha-wrapper .captcha-options {
  margin-bottom: 2.5rem;
}

.captcha-wrapper .img-select {
  text-align: center;
  display: inline-block;
  max-width: 100px;
  position: relative;
}

.captcha-wrapper .img-select-photo {
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.09804);
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.05882) 0px 2px 4px 0px;
}

@media (max-width: 340px) {
  .captcha-wrapper .img-select-photo {
    width: 80px;
    height: 80px;
  }
}

.captcha-wrapper .img-select.checked>span.img-select-check+.card {
  /* (RADIO CHECKED) IMAGE STYLES */
  border: 2px solid #615d88;
  display: block;
}

.captcha-wrapper .img-select.checked>span.img-select-check {
  background: url('images/icon-tick.png') no-repeat center center transparent;
  position: absolute;
  display: block;
  visibility: visible;
  top: 5px;
  right: 10px;
  width: 46px;
  height: 46px;
  z-index: 1;
}

.captcha-wrapper .button {
  height: initial;
  width: initial;
}

.captcha-wrapper .title-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #615d88;
  color: white;
}

.checkmark__circle {
  stroke-dasharray: 166px;
  stroke-dashoffset: 166px;
  stroke-width: 2px;
  stroke-miterlimit: 10;
  stroke: #615d88;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  display: block;
  margin: auto;
  -webkit-animation: scale .3s ease-in-out .9s both;
  animation: scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48px;
  stroke-dashoffset: 48px;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

.checking-questions .checkmark {
  float: left;
  margin: 0.25em 0.5em 0.25em 0;
}

.checking-questions p {
  float: left;
  margin-top: 0;
  margin-bottom: 0;
}

.checking-questions .finished {
  display: none;
}

.congrats-wrapper {
  background: #615d88;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}
.congrats-wrapper img {
  max-width: 90%;
  width: 554px;
}

.congrats-wrapper .congrats {
  position: absolute;
  top: 140px;
  max-width: 90%;
  width: 554px;
  height: 380px;
  padding: 20px 10px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.congrats-wrapper .h1 {
  transform-origin: 50% 50%;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100;
  text-align: center;
  width: 100%;
  position: absolute;
}
.h1.first-text {
  top: 0;
}
.h1.second-text {
  top: 2em;
}

@media (max-width: 320px) {
  .congrats-wrapper .h1 {
    font-size: 20px;
  }
}

.congrats-wrapper .blob {
  height: 50px;
  width: 50px;
  color: #ffcc00;
  position: absolute;
  top: 45%;
  left: 45%;
  z-index: 1;
  font-size: 30px;
  display: none;
}

.card-scroller {
  white-space: nowrap;
  overflow-x: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.card-scroller .card {
  background: #fff;
  width: 140px;
  transform: translate3d(0, 0, 0);
}

.card-scroller .card-text {
  padding-top: 0;
}

.card-scroller .mover-1,
.card-scroller .mover-2 {
  display: inline-block;
}

.card-scroller .move-cards {
  animation: moveCards 12s linear infinite;
}

.large-card-scroller .card {
  width: 180px;
}

@media (max-width: 321px) {
  .large-card-scroller .card {
    width: 130px;
  }
}

@keyframes moveCards {
  100% {
    transform: translateX(-100%);
  }
}

.card {
  background-color: #fff;
  border: 1px solid #bdc1cd;
  padding: 0;
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.card .card-img {
  margin: 0;
  padding: 0;
}

.card .card-text {
  color: #616770;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0.9em 1em;
  letter-spacing: -0.05px;
  letter-spacing: -0.005em;
  -webkit-touch-callout:none !important;-webkit-user-select:none !important;-khtml-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important;
}
.card-scroller .card .card-text {
  font-size: 1.2rem;
  padding: 0 1em 0.75em;
}

.card .card-heading {
  font-size: 1.13em;
  color: #615d88;
  font-weight: bold;
  display: block;
  margin-bottom: 0.25em;
  line-height: 1.2;
  letter-spacing: initial;
}
.card-scroller .card .card-heading {
  font-size: 1.42em;
  font-weight: 900;
  margin-bottom: 0;
}
.card .card-body {
  color: #5d636c;
  display: block;
  letter-spacing: -0.1px;
  letter-spacing: -0.01em;
}
.card-scroller .card .card-body {
  color: #000;
}
  .card .card-body p:last-child {
    margin-bottom: 0;
  }




.card {
  background-color: white;
}



.footer {
  color: #5d636c;
  font-size: 1.7rem;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
}

.footer .row {
  margin-bottom: 1rem;
}

.footer .links a {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.1px;
  letter-spacing: -0.01em;
  padding: 0 5px;
  height: 1.35em;
  line-height: 1.35;
}

.footer .disclaimer a,
.footer a.link-brand {
  color: #5d636c;
}
.footer .disclaimer a:hover,
.footer a.link-brand:hover {
  text-decoration: underline;
}
.footer .row.text-small {
  line-height: 1;
}

.footer .copyright {
  display: inline-block;
}
.card-body--sm {
  color: #5d636c;
  font-size: 0.88em;
  line-height: 1.57;
  letter-spacing: -0.1px;
  letter-spacing: -0.01em;
}
.card--steps {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.toggleDiv .box .card,
.card--steps {
  text-align: center;
}
.card--steps .card-img {
  padding: 1em 0;
}
.card--steps .card-text {
  font-size: 1.9rem;
  padding: 0.9em 0.5em;
}
.toggleDiv .box .card .buttons,
.buttons {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.5em;
  text-align: center;
}
.toggleDiv .box .card .buttons .button,
.buttons .button {
  letter-spacing: -0.25px;
  letter-spacing: -0.025em;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 15px;
  margin-bottom: 0;
}
.toggleDiv .box .card .buttons .button.btnyes,
.buttons .button.btnyes {
  margin-left: 1%;
}
@media (min-width:1024px){
  .toggleDiv.toggleDiv--lg {
    max-width: 1000px;
  }
}
.checking-questions {
  padding-top: 50px;
}
.toggleDiv .checking-questions .top + .block-center {
  padding-top: 1em;
}
.checkmarks {
  display: inline-block;
  font-size: 2.7rem;
  font-weight: normal;
  color: #5d636c;
  letter-spacing: -0.1px;
  letter-spacing: -0.01em;
}
.checkmarks > .row {
  display: block;
}
.checkmarks > .row {
}