.qloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.qloader--show {
  pointer-events: auto;
  animation: loader-fade-in 240ms ease forwards;
}
.qloader--hide {
  pointer-events: none;
  animation: loader-fade-out 240ms ease forwards;
}
.qloader__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
}
.qloader__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.qloader__loading span {
  width: 44px;
  height: 7px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  display: inline-block;
  animation: loader-bar-pulse 900ms ease-in-out infinite;
  transform-origin: center;
  will-change: background-color, transform, opacity;
}
.qloader__loading span:nth-child(1) {
  animation-delay: 0ms;
}
.qloader__loading span:nth-child(2) {
  animation-delay: 150ms;
}
.qloader__loading span:nth-child(3) {
  animation-delay: 300ms;
}

@keyframes loader-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes loader-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
  }
}
@keyframes loader-bar-pulse {
  0% {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scaleY(1);
  }
  30% {
    background-color: rgba(116, 0, 204, 0.8);
    transform: scaleY(1.08);
  }
  60% {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scaleY(1);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scaleY(1);
  }
}
body, html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.quiz-page__header {
  position: relative;
  z-index: 2;
}
.quiz-page__header__logo {
  position: absolute;
  width: 140px;
  left: calc(50% - 70px);
  top: 20px;
}
.quiz-page__header__logo img {
  display: block;
  width: 100%;
}
.quiz-page__single {
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
  background: rgb(250, 250, 248);
  margin: 0 auto;
}
.quiz-page__single__wrapper {
  padding: 130px 80px 80px;
  position: relative;
}
@media (max-width: 1440px) {
  .quiz-page__single__wrapper {
    padding: 130px 50px 80px;
  }
}
@media (max-width: 768px) {
  .quiz-page__single__wrapper {
    padding: 75px 30px 30px;
  }
}

.quiz-btn {
  width: 335px;
  height: 53px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgb(87, 1, 153);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.quiz-btn:hover, .quiz-btn:focus {
  transition: all 0.3s;
  background: #1D0033;
}
.quiz-btn.quiz-disagree {
  margin-top: 15px;
  border: 2px solid rgb(148, 152, 157);
  background: rgb(235, 237, 240);
  color: rgb(148, 152, 157);
}
.quiz-btn.quiz-btn-border {
  border: 2px solid rgb(116, 0, 204);
  background: none;
  color: rgb(116, 0, 204);
}
.quiz-btn-link {
  width: 335px;
  height: 53px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: rgb(87, 1, 153);
  text-decoration: none;
  border: 0;
}

.quiz-container {
  padding: 130px 80px 80px;
  position: relative;
  display: flex;
  align-self: center;
  width: 100%;
  box-sizing: border-box;
  justify-self: center;
  max-width: 1440px;
  background: rgb(250, 250, 248);
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
  font-size: 26px;
}
@media (max-width: 1440px) {
  .quiz-container {
    padding: 130px 50px 80px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .quiz-container {
    padding: 75px 30px 84px;
  }
}
.quiz-container input, .quiz-container select, .quiz-container textarea, .quiz-container button {
  outline: none !important;
}
.quiz-container h1, .quiz-container h2, .quiz-container h3, .quiz-container h4, .quiz-container h5 {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.3;
  font-style: normal;
}
.quiz-container h2 {
  font-size: 48px;
  margin: 0 0 50px;
  padding: 0;
  text-align: inherit;
}
@media (max-width: 1440px) {
  .quiz-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .quiz-container h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
  }
  .quiz-container h2.mob-center {
    text-align: center;
  }
}
.quiz-container h3 {
  font-size: 36px;
  margin: 0 0 50px;
  padding: 0;
  text-align: inherit;
}
@media (max-width: 768px) {
  .quiz-container h3 {
    text-align: left;
  }
}
.quiz-container .quiz-bottom-block {
  position: absolute;
  bottom: -64px;
  padding-top: 20px;
  border-top: 1px solid rgb(226, 226, 226);
  display: flex;
  justify-content: center;
  text-align: center;
  align-self: center;
  align-items: center;
  left: -80px;
  width: calc(100% + 160px);
}
@media (max-width: 1440px) {
  .quiz-container .quiz-bottom-block {
    left: -50px;
    width: calc(100% + 100px);
  }
}
@media (max-width: 768px) {
  .quiz-container .quiz-bottom-block {
    position: fixed;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 12px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.7);
    width: unset;
  }
  .quiz-container .quiz-bottom-block.quiz-buttons-dialog {
    left: -30px;
    width: calc(100% + 60px);
    font-size: 12px;
    padding: 30px 30px 0;
    min-height: 114px;
    height: auto;
    background: rgb(250, 250, 248);
  }
}
.quiz-container .quiz-bottom-block p {
  font-family: Onest, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(47, 47, 47);
}
@media (max-width: 768px) {
  .quiz-container .quiz-bottom-block p {
    font-size: 12px;
    text-align: left;
  }
}
.quiz-container .quiz-bottom-block p a {
  font-weight: 600;
  color: rgb(255, 92, 78);
  text-decoration: underline;
}
.quiz-container__form:not(.act) {
  display: none;
  width: 0;
  overflow: hidden;
}
.quiz-container__form.act {
  width: 100%;
}
.quiz-container__form .gf_progressbar_title,
.quiz-container__form .gform_wrapper > .gform_validation_errors,
.quiz-container__form .gform_heading {
  display: none !important;
}
.quiz-container__form .gform-theme--foundation .gform_fields {
  display: block !important;
}
.quiz-container__form .gform-theme--framework .gform-loader {
  display: none !important;
}
.quiz-container .gform-field-label,
.quiz-container .quiz-select-wrapper .label {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
}
@media (max-width: 1440px) {
  .quiz-container .gform-field-label,
  .quiz-container .quiz-select-wrapper .label {
    font-size: 16px;
  }
}
.quiz-container .gform-field-label .gfield_required,
.quiz-container .quiz-select-wrapper .label .gfield_required {
  display: none !important;
}
.quiz-container .ginput_container_more_info {
  margin: 20px 0;
}
.quiz-container .ginput_container_more_info .quiz-hint {
  display: block;
  background: rgb(255, 236, 213);
  padding: 15px 16px;
  font-family: Onest, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(47, 47, 47);
  border-radius: 8px;
  width: 100%;
}
@media (max-width: 768px) {
  .quiz-container .ginput_container_more_info .quiz-hint {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.quiz-container .ginput_container_more_info .quiz-hint a {
  font-weight: 600;
  color: rgb(255, 92, 78);
  text-decoration: underline;
}
.quiz-container .ginput_container_more_info.without-bg .quiz-hint {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  text-align: center;
}
.quiz-container .gform_page_footer {
  position: absolute;
  bottom: 0;
  border-top: 1px solid rgb(226, 226, 226);
  display: flex;
  justify-content: center;
  text-align: center;
  align-self: center;
  align-items: center;
  left: -80px;
  width: calc(100% + 160px);
  padding-top: 20px;
}
@media (max-width: 1440px) {
  .quiz-container .gform_page_footer {
    left: -50px;
    width: calc(100% + 100px);
  }
}
@media (max-width: 768px) {
  .quiz-container .gform_page_footer {
    position: fixed;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 12px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.7);
    width: unset;
  }
  .quiz-container .gform_page_footer.quiz-buttons-dialog {
    left: -30px;
    width: calc(100% + 60px);
    font-size: 12px;
    padding: 30px 30px 0;
    min-height: 114px;
    height: auto;
    background: rgb(250, 250, 248);
  }
}
.quiz-container .gform_page_footer.hidden-next {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.quiz-container .gform_page_footer.hidden-next .gform_next_button {
  opacity: 0 !important;
  visibility: hidden !important;
}
.quiz-container .gform_page_footer p {
  font-family: Onest, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(47, 47, 47);
}
@media (max-width: 768px) {
  .quiz-container .gform_page_footer p {
    font-size: 12px;
    text-align: left;
  }
}
.quiz-container .gform_page_footer p a {
  font-weight: 600;
  color: rgb(255, 92, 78);
  text-decoration: underline;
}
.quiz-container .gform_page_footer button {
  cursor: pointer;
}
.quiz-container .quiz-back-btn {
  position: fixed;
  left: calc(50% - 640px);
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: 1px solid rgb(148, 152, 157);
  background: url(../images/go-back.svg) center center no-repeat;
  background-color: rgba(148, 152, 157, 0.3);
  display: block;
  text-decoration: none;
}
.quiz-container .quiz-back-btn span {
  display: none !important;
}
@media (max-width: 1440px) {
  .quiz-container .quiz-back-btn {
    left: 50px;
    width: 30px;
    height: 30px;
    border: 0;
    background-size: 70% 70%;
  }
}
@media (max-width: 768px) {
  .quiz-container .quiz-back-btn {
    left: 30px;
  }
}
.quiz-container .quiz-progress {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  justify-content: space-between;
  gap: 7px;
  height: 7px;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .quiz-container .quiz-progress {
    gap: 4px;
  }
}
.quiz-container .quiz-progress .quiz-progress-step {
  height: 7px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
}
.quiz-container .quiz-progress .quiz-progress-step.act {
  background: rgba(116, 0, 204, 0.4);
}
.quiz-container .gchoice {
  outline: none;
  background: none;
}
.quiz-container .gchoice:hover, .quiz-container .gchoice:focus, .quiz-container .gchoice:active {
  outline: none;
  background: none;
}
.quiz-container .gchoice__radio {
  width: 100%;
  position: relative;
  cursor: pointer;
  display: block !important;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgb(221, 225, 230);
  outline: 0 !important;
  outline-style: none !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.quiz-container .gchoice__radio label {
  font-family: Onest, sans-serif;
  font-size: 18px;
  color: rgb(47, 47, 47);
  font-weight: 400;
  min-height: 72px;
  padding: 0 16px 0 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
}
.quiz-container .gchoice__radio label:has(> input[type=radio]:checked) {
  background: rgb(255, 236, 213);
}
@media (max-width: 1440px) {
  .quiz-container .gchoice__radio label {
    font-size: 16px;
    min-height: 68px;
  }
}
@media (max-width: 768px) {
  .quiz-container .gchoice__radio label {
    font-size: 16px;
    min-height: 68px;
    padding: 15px 45px 15px 15px;
  }
}
.quiz-container .gchoice__radio.with-icon {
  padding-left: 53px;
}
@media (max-width: 768px) {
  .quiz-container .gchoice__radio.with-icon {
    padding-left: 50px;
  }
}
.quiz-container .gchoice__radio input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #94989D;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  right: 15px;
  top: calc(50% - 10px);
  outline: none;
}
.quiz-container .gchoice__radio input[type=radio]:checked {
  border-color: rgb(87, 1, 153);
}
.quiz-container .gchoice__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: rgb(87, 1, 153);
  border-radius: 50%;
}
.quiz-container .gchoice__radio.with-choice-description .choice-description {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 15px 0;
  margin: 0 15px;
  border-top: 1px solid #DDE1E6;
}
.quiz-container .gchoice__radio.with-choice-description .choice-description div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #2F2F2F;
}
.quiz-container .gchoice__radio.with-choice-description .choice-description div span.plus, .quiz-container .gchoice__radio.with-choice-description .choice-description div span.minus {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EFF0F0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #000;
  font-size: 24px;
  line-height: 1;
}
.quiz-container .gchoice__radio.with-choice-description .choice-description div span.plus {
  background: #E3FAE5;
}
.quiz-container .gchoice__checkbox {
  width: 100%;
  position: relative;
  cursor: pointer;
  display: block !important;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgb(221, 225, 230);
  outline: 0 !important;
  outline-style: none !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.quiz-container .gchoice__checkbox label {
  font-family: Onest, sans-serif;
  font-size: 18px;
  color: rgb(47, 47, 47);
  font-weight: 400;
  min-height: 72px;
  padding: 0 16px 0 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
}
.quiz-container .gchoice__checkbox label:has(> input[type=checkbox]:checked) {
  background: rgb(255, 236, 213);
}
@media (max-width: 1440px) {
  .quiz-container .gchoice__checkbox label {
    font-size: 16px;
    min-height: 68px;
  }
}
@media (max-width: 768px) {
  .quiz-container .gchoice__checkbox label {
    font-size: 16px;
    min-height: 68px;
    padding: 15px 45px 15px 15px;
  }
}
.quiz-container .gchoice__checkbox.with-icon {
  padding-left: 53px;
}
@media (max-width: 768px) {
  .quiz-container .gchoice__checkbox.with-icon {
    padding-left: 50px;
  }
}
.quiz-container .gchoice__checkbox input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #94989D;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  right: 15px;
  top: calc(50% - 10px);
  outline: none;
  border-radius: 4px;
}
.quiz-container .gchoice__checkbox input[type=checkbox]:checked {
  border-color: rgb(87, 1, 153);
}
.quiz-container .gchoice__checkbox input[type=checkbox]:checked::after, .quiz-container .gchoice__checkbox input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  background-color: rgb(87, 1, 153);
  border-radius: 2px;
}
.quiz-container .gchoice__checkbox input[type=checkbox]:checked::before {
  width: 6px;
  height: 2px;
  left: 3px;
  top: 7px;
  transform: rotate(45deg);
  transform-origin: left center;
}
.quiz-container .gchoice__checkbox input[type=checkbox]:checked::after {
  width: 10px;
  height: 2px;
  left: 7px;
  top: 10px;
  transform: rotate(-45deg);
  transform-origin: left center;
}
.quiz-container .gchoice__is-checked {
  background: rgb(255, 236, 213);
}
.quiz-container .gfield_description.validation_message {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #FF5C4E;
}
.quiz-container .gform-body .gform_page_fields {
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .quiz-container .gform-body .gform_page_fields {
    padding-bottom: 0;
  }
}
.quiz-container .gform-body .gfield .gfield_label.gform-field-label {
  display: none !important;
}
.quiz-container .gform-body .gfield input[type=text],
.quiz-container .gform-body .gfield input[type=email],
.quiz-container .gform-body .gfield input[type=tel],
.quiz-container .gform-body .gfield input[type=number] {
  width: 100%;
  height: 72px;
  border-radius: 8px;
  border: 1px solid rgb(221, 225, 230);
  display: flex;
  background: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
  position: relative;
  font-family: Onest, sans-serif;
  font-size: 18px;
  color: rgb(47, 47, 47);
  margin-bottom: 15px;
}
.quiz-container .gform-body .gfield input[type=text]::placeholder,
.quiz-container .gform-body .gfield input[type=email]::placeholder,
.quiz-container .gform-body .gfield input[type=tel]::placeholder,
.quiz-container .gform-body .gfield input[type=number]::placeholder {
  color: #94989D !important;
  opacity: 1 !important;
}
.quiz-container .gform-body .gfield.gfield--type-choice .gfield_label.gform-field-label {
  display: none !important;
}
.quiz-container .gform-body .gfield.gfield--type-html {
  font-family: Onest, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(47, 47, 47);
  margin: 20px 0;
}
@media (max-width: 768px) {
  .quiz-container .gform-body .gfield.gfield--type-html {
    font-size: 12px;
    text-align: left;
  }
}
.quiz-container .gform-body .gfield.gfield--type-html a {
  font-weight: 600;
  color: rgb(255, 92, 78);
  text-decoration: underline;
}
.quiz-container .gform-body .gfield.gfield--type-html img, .quiz-container .gform-body .gfield.gfield--type-html svg {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
}
.quiz-container .gform-body .gfield.gfield--type-html p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #2F2F2F;
  margin-bottom: 30px;
}
.quiz-container .gform-body .gfield.gfield--type-html b, .quiz-container .gform-body .gfield.gfield--type-html strong {
  font-weight: 700;
}
.quiz-container .gform-body .gfield.gfield--type-textarea textarea {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgb(221, 225, 230);
  border-radius: 8px;
  height: 160px;
  width: 100%;
  font-family: Onest, sans-serif;
  color: rgb(148, 152, 157);
  font-size: 16px;
}
.quiz-container .gform-body .gfield.gfield--type-textarea .ginput_container .gfield_description {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
  color: #94989D;
}

.quiz-block {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
  font-size: 26px;
}

.quiz-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.quiz-carousel {
  display: none;
}

.quiz-carousel.act {
  display: flex;
  width: 100%;
  justify-content: center;
}

.quiz-home-slide {
  display: none;
  position: relative;
}

.quiz-home-slide.act {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.quiz-popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 30, 0.5);
}
.quiz-popup.act {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.quiz-popup .quiz-popup-wrapper {
  position: fixed;
  top: 45px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 50px 25px 25px;
  font-family: Onest, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgb(47, 47, 47);
  overflow: auto;
}
.quiz-popup .quiz-popup-wrapper p {
  margin: 1em 0;
  line-height: 1.6;
  font-style: normal;
}
.quiz-popup .quiz-popup-close {
  position: absolute;
  top: 12px;
  right: 25px;
  cursor: pointer;
  background: url(../images/close_icon.svg) center center no-repeat;
  width: 24px;
  height: 24px;
}

.quiz-home-info {
  text-align: left;
  padding: 0 100px;
}

.quiz-info-img {
  font-size: 0;
}

.quiz-carousel-item {
  display: none;
}

.quiz-carousel-item.act {
  display: flex;
  flex-direction: column;
}

.quiz-carousel-item h2, .quiz-carousel-item h3 {
  max-width: 668px;
  text-align: center;
}

.quiz-carousel-item-info {
  max-width: 668px;
}

.quiz-carousel-item-info.full-width {
  max-width: 100%;
}

.quiz-select-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.quiz-select {
  position: relative;
  width: 100%;
  font-family: Onest, sans-serif;
  font-size: 18px;
  color: rgb(148, 152, 157);
  font-weight: 400;
}

.quiz-select .quiz-selected {
  width: 100%;
  height: 72px;
  border-radius: 8px;
  border: 1px solid rgb(221, 225, 230);
  display: flex;
  background: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.quiz-radio-button {
  width: 100%;
  font-family: Onest, sans-serif;
  font-size: 18px;
  color: rgb(47, 47, 47);
  margin-bottom: 15px;
  font-weight: 400;
  min-height: 72px;
  border-radius: 8px;
  border: 1px solid rgb(221, 225, 230);
  display: flex;
  background: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px 0 15px;
  position: relative;
  cursor: pointer;
}

.with-icon .quiz-radio-button {
  padding-left: 53px;
}

.quiz-radio-button:after {
  display: block;
  position: absolute;
  right: 15px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background: url(../images/radio.svg) center center no-repeat;
  content: " ";
}

.quiz-radio-button.act:after {
  background: url(../images/radio-act.svg) center center no-repeat;
}

.quiz-radio-multi .quiz-radio-button:after {
  background: url(../images/check.svg) center center no-repeat;
}

.quiz-radio-multi .quiz-radio-button.act:after {
  background: url(../images/check-act.svg) center center no-repeat;
}

.quiz-radio-multi .quiz-radio-button.act {
  background: rgb(255, 236, 213);
}

.quiz-radio-button-icon {
  position: absolute;
  left: 15px;
  top: calc(50% - 14px);
  width: 28px;
  height: 28px;
}

.autoComplete_wrapper {
  width: 100%;
}

#autoComplete::-webkit-search-cancel-button {
  position: relative;
  right: 0px;
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  background: url(../images/close_icon.svg) center center no-repeat;
}

.autoComplete_wrapper > ul {
  color: rgb(47, 47, 47);
  font-weight: 400;
  font-family: Onest, sans-serif;
}

.autoComplete_wrapper > ul > li mark {
  color: rgb(47, 47, 47);
  font-weight: 700;
}

.autoComplete_wrapper .no_result {
  color: rgb(47, 47, 47);
  font-size: 16px;
  padding: 10px 16px;
  box-sizing: border-box;
  font-weight: 400;
}

.quiz-select .quiz-selected:after {
  display: block;
  position: absolute;
  right: 24px;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  background: url(../images/chevron-down.svg) center center no-repeat;
  content: " ";
}

.quiz-select .quiz-select-list {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 7px);
  border: 1px solid rgb(221, 225, 230);
  width: 100%;
  border-radius: 8px;
  background: #fff;
  padding: 10px 0;
}

.quiz-select .quiz-select-list .quiz-select-list-item {
  font-size: 16px;
  line-height: 38px;
  padding: 0 16px;
  color: rgb(47, 47, 47);
  font-weight: 400;
}

.quiz-select.open .quiz-select-list {
  display: block;
}

.inputhint {
  font-family: Onest, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(47, 47, 47);
}

.inputhint a {
  font-weight: 600;
  color: rgb(255, 92, 78);
  text-decoration: underline;
}

.quiz-buttons-dialog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 50px;
  align-items: center;
}

.quiz-buttons-dialog .quiz-btn-link {
  margin-top: 10px;
}

.quiz-flex-box {
  display: flex;
  flex-direction: row;
}

.quiz-flex-left {
  text-align: left;
  padding-right: 110px;
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.quiz-flex-left a {
  color: rgb(255, 92, 78);
}

.quiz-carousel-item .quiz-flex-left h2, .quiz-carousel-item .quiz-flex-left h3 {
  text-align: left;
}

span.mark {
  background: rgb(255, 236, 213);
  color: rgb(87, 1, 153);
  padding: 0 3px;
}

.quiz-flex-tablet {
  display: none;
  justify-content: center;
}

@media (max-width: 1440px) {
  .quiz-home-slide.act {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
  }
  .quiz-home-info {
    max-width: 490px;
    text-align: center;
    padding: 0;
    margin: 0 0 48px;
  }
  .quiz-info-img img {
    max-width: 458px;
  }
  .quiz-btn {
    font-size: 16px;
    height: 43px;
  }
  .quiz-select .quiz-selected {
    font-size: 16px;
    height: 58px;
  }
  .quiz-radio-button {
    font-size: 16px;
    min-height: 68px;
  }
  .quiz-flex-tablet {
    display: flex;
    margin: 50px 0;
  }
  .quiz-flex-left .quiz-flex-tablet {
    text-align: center;
    justify-content: center;
  }
  .quiz-flex-right {
    display: none;
  }
  .quiz-flex-left {
    font-size: 18px;
    text-align: left;
    padding-right: 0;
    max-width: 490px;
  }
  .quiz-flex-left h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .quiz-info-img img {
    width: 100%;
  }
  .quiz-carousel-item.act {
    padding-top: 44px;
  }
  .quiz-radio-button {
    font-size: 16px;
    min-height: 68px;
    padding: 15px 45px 15px 15px;
  }
  .with-icon .quiz-radio-button {
    padding-left: 50px;
  }
}
.gform_wrapper .gf-question-wrapper .gfield--type-select_state {
  all: unset;
}

.quiz-block .select-state__label {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #2F2F2F;
  margin-bottom: 15px;
}
.quiz-block .select-state__field {
  position: relative;
}
.quiz-block .select-state__trigger {
  position: relative;
  max-width: 100%;
}
.quiz-block .select-state__trigger.active input {
  border-color: #258DF0;
}
.quiz-block .select-state__input {
  padding: 0 50px 0 16px;
  font-weight: 400;
  line-height: 24px;
  color: #3F4043;
  cursor: pointer;
  width: 100%;
  height: 72px;
  border-radius: 8px;
  border: 1px solid rgb(221, 225, 230);
  display: flex;
  background: #fff;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-family: Onest, sans-serif;
  font-size: 18px;
  color: rgb(47, 47, 47);
  margin-bottom: 15px;
}
.quiz-block .select-state__input::placeholder {
  color: #999;
}
.quiz-block .select-state__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transition: transform 0.1s ease-out;
  margin-top: -15px;
}
.quiz-block .select-state__arrow.active {
  transform: rotate(180deg);
  margin-top: -11px;
}
.quiz-block .select-state__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  max-width: 600px;
  height: 285px;
  background: #FFFFFF;
  transition: max-height 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}
@media (max-width: 568px) {
  .quiz-block .select-state__dropdown {
    height: 245px;
  }
}
.quiz-block .select-state__dropdown.active {
  max-height: 285px;
  border: 1px solid #E5E5E5;
}
@media (max-width: 568px) {
  .quiz-block .select-state__dropdown.active {
    max-height: 245px;
  }
}
.quiz-block .select-state__options {
  max-height: 285px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 568px) {
  .quiz-block .select-state__options {
    max-height: 245px;
  }
}
.quiz-block .select-state__options .no-results {
  padding: 0 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 38px;
  color: #3F4043;
}
.quiz-block .select-state__option {
  padding: 0 25px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-weight: 400;
  font-size: 16px;
  line-height: 38px;
  color: #3F4043;
}
.quiz-block .select-state__option:last-child {
  border-bottom: none;
}
.quiz-block .select-state__option:hover {
  background-color: #F6F9FC;
}
.quiz-block .select-state__option.selected {
  background: #F6F9FC;
}