@font-face {
  font-family: "Museo";
  src: url("../fonts/HB_Museo-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/HB_Figtree-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Brandon";
  src: url("../fonts/HB BrandonGrotesque-Medium.otf") format("opentype");
}
.back {
  display: none;
  position: absolute;
  z-index: 9;
  top: 48px;
  left: 32px;
  width: 32px;
  height: 32px;
  padding: 4px 0 0 2px;
  border-radius: 10px;
  background-color: white;
}

button, .button {
  padding: 12px 12px 10px;
  font-family: "Brandon", serif;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 10px;
  border: none;
}
button.button, .button.button {
  display: inline-block;
}
button.green, .button.green {
  color: white;
  background-color: #00564A;
}
button.white, .button.white {
  color: #00564A;
  background-color: white;
}
button.bottom, .button.bottom {
  position: absolute;
  bottom: 32px;
  left: 32px;
}

.link {
  cursor: pointer;
  margin-left: 32px;
  text-decoration: underline;
}
.link.bottom {
  position: absolute;
  bottom: 32px;
  left: 0;
}
.link.block {
  display: block;
  margin-top: 20px;
  margin-left: 0;
}

.answers {
  display: flex;
  column-gap: 10px;
  margin: 20px 32px 0;
  width: calc(100% - 64px);
}
.answers button, .answers > div {
  flex-grow: 1;
  width: 50%;
  text-align: center;
}
.answers button svg, .answers > div svg {
  margin: auto;
}
.answers.grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.answers.grid .face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-grow: unset;
  width: calc(50% - 27px);
  padding: 10px;
  border: 1px solid #00564A;
  border-radius: 10px;
  background-color: white;
}
.answers.grid .face.selected {
  background-color: #EEF8EF;
}
.answers.grid .face img {
  margin-bottom: 10px;
  height: 58px;
  width: 46px;
  object-fit: contain;
  object-position: center bottom;
}

section {
  position: relative;
  visibility: hidden;
  height: 0 !important;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s;
  color: #00564A;
}
section.active {
  visibility: visible;
  height: calc(100svh - 20px) !important;
  overflow: auto;
  opacity: 1;
}
section.green {
  color: #EEF8EF;
  background: linear-gradient(65deg, #00564A 0%, #093032 100%);
}
section.green h2 {
  color: #EEF8EF;
}
section.green button {
  color: #00564A;
  background-color: white;
}
section h2 {
  font-family: "Museo", serif;
  font-size: 24px;
  margin: 20px 32px 0;
  color: #00564A;
}
section h3 {
  font-family: "Museo", serif;
  font-size: 16px;
  margin: 0 32px -20px;
  color: #00564A;
}
section p {
  margin: 0;
  padding: 10px 32px 20px 32px;
}
section ul {
  margin: 0 32px;
  list-style-type: none;
  padding-inline-start: 0;
}
section ul > li {
  padding-left: 10px;
}
section ul > li:before {
  content: "- ";
  margin-left: -10px;
}

section.image-text > img {
  width: 100%;
  height: 50svh;
  object-fit: cover;
  object-position: center;
}
section.image-text .multiple-buttons {
  padding: 20px 32px;
}
section.image-text .multiple-buttons a.button {
  position: relative;
  width: fit-content;
  margin-top: 10px;
}

section.cutout-text img {
  display: block;
  margin: 28px auto 0;
  width: 180px;
  height: 190px;
  mask-image: url("../../images/mask.svg");
  mask-repeat: no-repeat;
  mask-size: 180px;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}
section.cutout-text h2 {
  text-align: center;
  padding-right: 32px;
}
section.cutout-text button {
  display: block;
  margin: 40px auto 0;
}

section.question-image > div, section.question > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
section.question-image > img, section.question-image > svg, section.question > img, section.question > svg {
  display: none;
}

section.step > div img {
  margin: 0 auto 30px;
  width: calc(100% - 64px);
  height: auto;
}

section.face-type button {
  margin-left: 32px;
}

section[class^=result] > img {
  height: 40svh;
  object-position: center top;
}

/* Responsive */
@media (min-width: 560px) {
  section {
    max-height: 500px;
  }

  section.image-text {
    display: flex;
    flex-direction: row;
  }
  section.image-text > img {
    width: 50%;
    height: 100%;
  }
  section.image-text > div {
    position: relative;
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  section.image-text button.bottom {
    left: 32px;
    bottom: 0;
  }

  section.cutout-text > div {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
  }
  section.cutout-text > div img {
    margin-top: 0;
    width: 300px;
    height: 310px;
    mask-size: 300px;
    object-fit: cover;
  }
  section.cutout-text > div div {
    width: 45%;
    text-align: left;
  }
  section.cutout-text > div div h2 {
    margin: 0;
    text-align: left;
  }
  section.cutout-text > div div button {
    margin: 30px 0 0 0;
  }

  section.question-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: initial;
  }
  section.question-image > div {
    width: 50%;
  }
  section.question-image > img {
    display: block;
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  section.question-image > svg {
    display: block;
    width: 50%;
    height: 100%;
    background-color: #00564A;
  }
  section.question-image .answers .female, section.question-image .answers .male {
    position: relative;
    border-radius: 10px;
    height: 36px;
    width: 130px;
    flex-grow: 0;
    background-color: #00564A;
  }
  section.question-image .answers .female:before, section.question-image .answers .male:before {
    content: "Vrouw";
    display: block;
    position: absolute;
    left: 50%;
    top: calc(50% - 5px);
    transform: translateX(-50%);
    font-family: "Brandon", serif;
    font-size: 14px;
    line-height: 14px;
    color: white;
  }
  section.question-image .answers .female.male:before, section.question-image .answers .male.male:before {
    content: "Man";
  }
  section.question-image .answers .female svg, section.question-image .answers .male svg {
    display: none;
  }
  section.question-image#step-10 .link.bottom {
    margin-top: 20px;
    position: relative;
    bottom: unset;
  }

  section.question > div {
    max-width: 470px;
    margin: 0 auto;
    text-align: center;
  }
  section.question > div .answers {
    margin: 0 auto;
    width: initial;
  }
  section.question > div .answers button {
    width: 120px;
    flex-grow: initial;
  }

  section.step > div {
    width: initial;
    flex-direction: row-reverse;
    align-items: center;
  }

  section#step-9 button.bottom {
    position: initial;
    margin: 30px auto 0;
  }

  section.face-type > div {
    width: 100%;
    max-width: unset;
  }
  section.face-type > div .grid {
    margin: 20px 32px 0;
  }
  section.face-type > div .grid .face {
    flex-direction: row;
    width: calc(50% - 47px);
    text-align: left;
    padding: 20px;
    font-size: 16px;
  }
  section.face-type > div .grid .face img {
    margin: 0 20px 0 0;
    height: 74px;
    width: 68px;
    object-position: center;
  }

  section#step-12 .answers button {
    flex-grow: unset;
    width: 130px;
  }
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Figtree", serif;
  font-size: 14px;
  background-color: #EEF8EF;
}
html.step-3 .back, html.step-5 .back, html.step-6 .back, html.step-7 .back, html.step-8 .back, html.step-10 .back, html.step-11 .back, body.step-3 .back, body.step-5 .back, body.step-6 .back, body.step-7 .back, body.step-8 .back, body.step-10 .back, body.step-11 .back {
  background-color: #00564A;
}
html.step-3 .back svg path, html.step-5 .back svg path, html.step-6 .back svg path, html.step-7 .back svg path, html.step-8 .back svg path, html.step-10 .back svg path, html.step-11 .back svg path, body.step-3 .back svg path, body.step-5 .back svg path, body.step-6 .back svg path, body.step-7 .back svg path, body.step-8 .back svg path, body.step-10 .back svg path, body.step-11 .back svg path {
  fill: white;
}

#questioner-container {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 800px;
}

#progress-bar {
  display: none;
  height: 20px;
  overflow: hidden;
  background-color: #E8F7C8;
}
#progress-bar span {
  display: inline-block;
  height: 20px;
  padding: 0 4px;
  color: white;
  line-height: 22px;
  background-color: #0DA88B;
}

input[type=text] {
  margin: 0 32px 20px;
  padding: 12px 16px;
  width: calc(100% - 96px);
  font-family: "Figtree", serif;
  font-size: 14px;
  color: #00564A;
  border: none;
  border-bottom: 1px solid #F5895E;
  border-radius: 10px;
  background: #FFF;
}
input[type=text]:focus {
  outline: none;
  box-shadow: none;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

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