@font-face {
  font-family: SemplicitaPro-Semibold;
  src: url(fonts/SemplicitaPro-Semibold.ttf) format("truetype"),
       url(fonts/SemplicitaPro-Semibold.otf) format("otf"),
       url(fonts/SemplicitaPro-Semibold.woff) format("woff"),
       url(fonts/SemplicitaPro-Semibold.eot) format("eot");
  font-style: normal;
  font-display: swap;
}

body, main, * {
  line-height: 1.2;
  font-family: SemplicitaPro-Semibold;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 16px;
  color: #4c4c4c;
}

.preloader {
    position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff9f3;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;

  -webkit-perspective: 100%;
  -moz-perspective: 100%;
  -ms-perspective: 100%;
  perspective: 100%;
  transition: .4s all ease-out;
}

.preloader.loaded {
  background-color: rgba(255, 255, 255, 0);
}

.preloader.loaded svg {
  transition: .1s opacity ease-out;
  opacity: 1;
}

.preloader.loaded svg {
  opacity: 0;
}

.preloader.loaded.hidden {
  display: none;
}

.preloader #animateLeaf {
  -webkit-animation-name: spinner;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 1.2s;

  animation-name: spinner;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 1.2s;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.preloader.loaded {
  animation-play-state: paused;
  animation-timing-function: step-end;
}

main {
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
}

body {
  margin: 0;
  padding: 0;
}

.container, .steps__container, .step {
  width: 100%;
  height: 100%;
}

.step {
  display: flex;
  flex-direction: row;
  align-items: center;
  opacity: 0;
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: background-color .3s ease-in-out, opacity .3s ease-in-out;
}

.step__selector:checked + .step {
  opacity: 1;
  z-index: 1;
}

.step__option {
  background-color: #fff;
  border-radius: 50%;
}

/* .step-0 {
  background-color: red;
}

.step-1 {
  background-color: green;
}

.step-2 {
  background-color: yellow;
}

.step-3 {
  background-color: blue;
}

.step-4 {
  background-color: aqua;
} */

.steps__header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  height: 40px;
  gap: 20px;
  font-size: 30px;
  color: #ff8397;
}

.steps__header label {
  pointer-events: none;
}

.step__title {
  display: none;
}

.step__title:not(:checked) + label {
  --fa-secondary-color: #FFD0E4;
}

.step__title:checked + label {
  --fa-secondary-color: #ff8397;
}

.answers {
  background: rgb(255, 255, 255);
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 50%;
}

.answers--forms {
  flex-flow: column;
}

.answers.answers--afterLoad .text,
.answers.answers--beforeLoad .button__group {
  display: none;
}

.video {
  background: rgb(200, 200, 200);
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 50%;
}

.button {
  background: rgba(17, 17, 17, 0.1);
  border: none;
  border-radius: 30px;
  color: rgb(17, 17, 17);
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  height: auto;
  line-height: 20px;
  margin-bottom: 16px;
  outline: none;
  padding: 0px 24px 0px 16px;
  position: relative;
  transition: background-color 0.4s ease 0s, box-shadow 0.4s ease 0s;
  width: 336px;
  pointer-events: initial;
  
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.button:hover {
  box-shadow: #ff8397 0px 0px 0px 1px;
}

.button__option {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 100px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  background: rgb(255, 131, 151);
  font-weight: 500;
  height: 28px;
  margin-right: 10px;
  width: 28px;
}

.button__label {
  cursor: pointer;
  -webkit-box-flex: 1;
  flex-grow: 1;
  padding: 18px 0px;
  text-align: left;
}

.video__container {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.video__seekbarContainer {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 10;
}

.video__seekbar {
  -webkit-appearance: none;
  appearance: none; 
  width: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 0;
  height: 12px;
}

.video__seekbar::-webkit-slider-runnable-track {
  height: 12px;
  background: #FFD0E4;
  border-radius: 0;
}

.video__seekbar::-moz-range-track {
  height: 12px;
  background: #FFD0E4;
  border-radius: 0;
}

.video__seekbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none; 
  height: 12px;
  width: 12px;
  background-color: #F2768A;
  border-radius: 0;
  border: 0;
  box-shadow: -4007px 0 0 4000px #ff8397;
}

.video__seekbar::-moz-range-thumb {
  height: 12px;
  width: 12px;
  background-color: #F2768A;
  border-radius: 0;
  border: 0;
  box-shadow: -4007px 0 0 4000px #ff8397;
}

.video__player {
  cursor: pointer;
  height: 100%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition-delay: 1s;
  opacity: 1;
  background: transparent;
  margin: 0;
  padding: 0;
}

.video__containerBigButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}

.video__containerBigButton:not(.video__containerBigButton--playing) {
  background-color: #00000054;
}

.video__containerBigButton--playing .play-button,
.video__containerBigButton .restart-button {
  display: none;
}

.video__containerBigButton--reload .play-button {
  display: none;
}

.video__containerBigButton--reload .restart-button {
  display: block;
}

.video__containerBigButton button {
  background: transparent;
  opacity: 1;
  cursor: pointer;
  border: 1px solid transparent;
  border: 0;
  margin: 0;
  padding: 0;
  z-index: 10;
  height: 80px;
  width: 80px;
  --fa-primary-color: #ffffff;
  --fa-secondary-color: #ff8397;
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 1;
}

.video__containerBigButton button:hover {
  --fa-secondary-opacity: 0.7;
}

.play-button,
.restart-button {
  pointer-events: all;
}

.restart-button {
  background-color: #ff8397 !important;
  border-radius: 50%;
}

.restart-button:hover {
  background-color: #ff8397b3 !important;
}

.restart-button svg {
  height: 42px !important;
}

.restart-button,
.restart-button svg {
  --fa-primary-color: #fff;
  --fa-secondary-color: #fff;
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 1;
}

.video__containerBigButton svg {
  height: 80px;
}

.answers__formInput {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #c7c7c7;
  height: 60px;
}

.answers__formInput:focus {
  border-color: #ff8397;
  outline: 0;
  box-shadow: none!important;
}

.answers__form {
  width: 100%;
  max-width: 320px;
}

.answers__formGroup {
  width: 100%;
  margin-bottom: 20px;
}

/*
FONT AWESOME
*/

:root, :host {
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular";
  --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light";
  --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin";
  --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
  --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";
  --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";
  --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
  --fa-primary-color: #ffffff;
  --fa-secondary-color: #ff8397;
}

svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
  overflow: visible;
  box-sizing: content-box;
}

.svg-inline--fa {
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}
.svg-inline--fa.fa-2xs {
  vertical-align: 0.1em;
}
.svg-inline--fa.fa-xs {
  vertical-align: 0em;
}
.svg-inline--fa.fa-sm {
  vertical-align: -0.0714285705em;
}
.svg-inline--fa.fa-lg {
  vertical-align: -0.2em;
}
.svg-inline--fa.fa-xl {
  vertical-align: -0.25em;
}
.svg-inline--fa.fa-2xl {
  vertical-align: -0.3125em;
}
.svg-inline--fa.fa-pull-left {
  margin-right: var(--fa-pull-margin, 0.3em);
  width: auto;
}
.svg-inline--fa.fa-pull-right {
  margin-left: var(--fa-pull-margin, 0.3em);
  width: auto;
}
.svg-inline--fa.fa-li {
  width: var(--fa-li-width, 2em);
  top: 0.25em;
}
.svg-inline--fa.fa-fw {
  width: var(--fa-fw-width, 1.25em);
}

.fa-layers svg.svg-inline--fa {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.fa-layers-counter, .fa-layers-text {
  display: inline-block;
  position: absolute;
  text-align: center;
}

.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: 1em;
}
.fa-layers svg.svg-inline--fa {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.fa-layers-text {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.fa-layers-counter {
  background-color: var(--fa-counter-background-color, #ff253a);
  border-radius: var(--fa-counter-border-radius, 1em);
  box-sizing: border-box;
  color: var(--fa-inverse, #fff);
  line-height: var(--fa-counter-line-height, 1);
  max-width: var(--fa-counter-max-width, 5em);
  min-width: var(--fa-counter-min-width, 1.5em);
  overflow: hidden;
  padding: var(--fa-counter-padding, 0.25em 0.5em);
  right: var(--fa-right, 0);
  text-overflow: ellipsis;
  top: var(--fa-top, 0);
  -webkit-transform: scale(var(--fa-counter-scale, 0.25));
          transform: scale(var(--fa-counter-scale, 0.25));
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.fa-layers-bottom-right {
  bottom: var(--fa-bottom, 0);
  right: var(--fa-right, 0);
  top: auto;
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.fa-layers-bottom-left {
  bottom: var(--fa-bottom, 0);
  left: var(--fa-left, 0);
  right: auto;
  top: auto;
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.fa-layers-top-right {
  top: var(--fa-top, 0);
  right: var(--fa-right, 0);
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.fa-layers-top-left {
  left: var(--fa-left, 0);
  right: auto;
  top: var(--fa-top, 0);
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
  opacity: var(--fa-secondary-opacity, 1);
}

.svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: var(--fa-primary-opacity, 1);
}