@keyframes bg {
  to {
    background-size: 100% 3px;
  }
}
@keyframes moveIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.q-btn, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single {
  max-width: 100%;
  display: block;
  width: 420px;
  margin: 0 auto;
  padding: 15px 10px;
  border-radius: 35px;
  color: #F4F2F6;
  background-color: #68C184;
  text-align: center;
  cursor: pointer;
}
.q-btn:hover, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single:hover {
  color: #F4F2F6;
}

.sanofi-wrapper {
  position: relative;
  width: 100%;
  font-family: Sanofi;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.45;
  color: #191919;
  background-color: #f1f1f1;
  overflow: hidden;
}
.sanofi-wrapper section {
  width: 100%;
  max-width: 480px;
  height: 940px;
  margin: 0 auto;
}
.sanofi-wrapper .section-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.sanofi-wrapper .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sanofi-wrapper .footer img {
  width: 94px;
}
.sanofi-wrapper #scroll-to-container {
  position: relative;
  width: 100%;
  height: 220px;
  margin-top: -220px;
}
.sanofi-wrapper #start {
  display: flex;
  flex-direction: column;
}
.sanofi-wrapper #start .section-container {
  background-image: url("../img/background-main.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  overflow: hidden;
}
.sanofi-wrapper #start .section-container .start-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  margin-bottom: 50px;
}
.sanofi-wrapper #start .section-container .start-content > * {
  opacity: 0;
  transform: translateY(30px);
}
.sanofi-wrapper #start .section-container .start-content > *:nth-child(1) {
  animation: moveIn 0.6s linear forwards 0.3s;
}
.sanofi-wrapper #start .section-container .start-content > *:nth-child(2) {
  animation: moveIn 0.6s linear forwards 0.6s;
}
.sanofi-wrapper #start .section-container .start-content > *:nth-child(3) {
  animation: moveIn 0.6s linear forwards 0.9s;
}
.sanofi-wrapper #start .section-container .start-content img {
  width: 274px;
}
.sanofi-wrapper #quiz {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/background-main.jpg");
}
.sanofi-wrapper #quiz:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(50px) brightness(115%);
  -webkit-backdrop-filter: blur(50px) brightness(115%);
}
.sanofi-wrapper #quiz .section-container {
  padding-left: 15px;
  padding-right: 15px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper {
  width: 100%;
  overflow: hidden;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-questions {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  margin-bottom: 20px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-questions .slider-question {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex-shrink: 0;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-questions .slider-question .h2 {
  margin-bottom: 10px;
  text-align: center;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-questions .slider-question p {
  line-height: 1.12;
  margin-bottom: 0;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-questions .slider-question > * {
  opacity: 0;
  transform: translateY(30px);
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-questions .slider-question > *:nth-child(1) {
  animation: moveIn 0.6s linear forwards 0.3s;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-questions .slider-question > *:nth-child(2) {
  animation: moveIn 0.6s linear forwards 0.6s;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-questions .slider-question > *:nth-child(3) {
  animation: moveIn 0.6s linear forwards 0.9s;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex-shrink: 0;
}
@media (max-width: 390px) {
  .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer {
    font-size: 20px;
  }
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: calc(100% - 30px);
  left: 15px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single {
  width: 100%;
  margin-top: 0;
  margin-bottom: 30px;
  background-color: #68C184;
  color: white;
  border: 2px solid transparent;
  transition: 0.5s ease;
  line-height: 1.1;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single:last-child {
  margin-bottom: 0;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single span {
  position: relative;
  background: linear-gradient(white, white) 0 55%/0 3px no-repeat;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single.correct, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single.incorrect {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  border-color: #68C184;
  font-weight: 700;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single.correct {
  background-color: #68C184;
  color: white;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single.incorrect {
  transition: all 0.5s ease, box-shadow 0.5s ease 1.5s;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answers-inner-wrapper .answer-single.incorrect span {
  animation: bg 1s linear forwards 0.5s;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answer-detail {
  position: relative;
  display: flex;
  height: 480px;
  padding: 120px 20px 20px 20px;
  border-radius: 40px;
  border: 2px solid #68C184;
  background-color: #fff;
  color: #191919;
  opacity: 0;
  transition: opacity 0.8s ease 2s;
  z-index: 1;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answer-detail .answer-detail-content {
  max-height: 340px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answer-detail .answer-detail-content .answer-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 20px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answer-detail .answer-detail-content p {
  font-size: 20px;
  margin: 0;
  margin-bottom: 15px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answer-detail .answer-detail-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answer-detail .answer-detail-content p {
    font-size: 18px;
  }
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .answer-detail.false {
  position: absolute;
  width: calc(100% - 30px);
  top: 0;
  left: 15px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer #q3-false-content {
  position: relative;
  overflow: hidden;
  height: 230px;
  margin-right: -12px;
  padding-right: 30px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer #q3-false-content .iScrollVerticalScrollbar {
  width: 7px !important;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer #q3-false-content .iScrollVerticalScrollbar .iScrollIndicator {
  background-color: #68C184 !important;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .btn-slider-next, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer .btn-result {
  width: 100%;
  margin-top: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease 2.4s;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.incorrect .answers-inner-wrapper, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.correct .answers-inner-wrapper {
  pointer-events: none;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.incorrect .answers-inner-wrapper .answer-single, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.correct .answers-inner-wrapper .answer-single {
  pointer-events: none;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.incorrect .answers-inner-wrapper .answer-single:not(.correct, .incorrect), .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.correct .answers-inner-wrapper .answer-single:not(.correct, .incorrect) {
  opacity: 50%;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.incorrect .btn-slider-next, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.incorrect .btn-result, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.correct .btn-slider-next, .sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.correct .btn-result {
  opacity: 1;
  pointer-events: all;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.incorrect .false {
  opacity: 1;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper .slider-answers .slider-answer.correct .right {
  opacity: 1;
  z-index: 2;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper[data-current-quiz="2"] .slider-questions, .sanofi-wrapper #quiz .slider-quiz-wrapper[data-current-quiz="2"] .slider-answers {
  transform: translateX(-100%);
}
.sanofi-wrapper #quiz .slider-quiz-wrapper[data-current-quiz="2"] .slider-answers .slider-answer .answer-detail {
  padding-top: 145px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper[data-current-quiz="3"] .slider-questions, .sanofi-wrapper #quiz .slider-quiz-wrapper[data-current-quiz="3"] .slider-answers {
  transform: translateX(-200%);
}
.sanofi-wrapper #quiz .slider-quiz-wrapper[data-current-quiz="3"] .slider-answers .slider-answer .answer-detail.right {
  padding-top: 160px;
}
.sanofi-wrapper #quiz .slider-quiz-wrapper[data-current-quiz="4"] .slider-questions, .sanofi-wrapper #quiz .slider-quiz-wrapper[data-current-quiz="4"] .slider-answers {
  transform: translateX(-300%);
}
.sanofi-wrapper #quiz .footer {
  padding-right: 15px;
  padding-left: 15px;
}
.sanofi-wrapper #result {
  background-image: url("../img/background-main.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sanofi-wrapper #result .section-container {
  background: linear-gradient(180deg, #c8d2dc 0%, rgba(200, 210, 220, 0.6) 27%, rgba(255, 255, 255, 0) 40%);
}
.sanofi-wrapper #result .end-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  text-align: center;
  padding-bottom: 45px;
}
.sanofi-wrapper #result .end-content > * {
  opacity: 0;
  transform: translateY(30px);
}
.sanofi-wrapper #result .end-content > *:nth-child(1) {
  animation: moveIn 0.6s linear forwards 0.3s;
}
.sanofi-wrapper #result .end-content > *:nth-child(2) {
  animation: moveIn 0.6s linear forwards 0.6s;
}
.sanofi-wrapper #result .end-content > *:nth-child(3) {
  animation: moveIn 0.6s linear forwards 0.9s;
}
@media (max-width: 480px) {
  .sanofi-wrapper {
    font-size: 22px;
  }
  .sanofi-wrapper section {
    height: 890px;
  }
}

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