body {
  background-color: #FFF;
  margin: 0;
}

body .survey-step {
  margin: auto;
  max-width: 940px;
  padding: 50px 20px 0px 20px;
  display: none;
}

body .survey-step.show {
  display: block;
}

body .survey-step .survey-item {
  max-width: 778px;
  margin: auto;
}

body .survey-step .question-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

body .survey-step .question-step .step {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: #D9E5F1;
  cursor: pointer;
}

body .survey-step .question-step .step span {
  color: #FFF;
  text-align: center;
  font-family: "DINNextLTPro-BoldCondensed";
  font-size: 18px;
  line-height: 18px;
}

body .survey-step .question-step .step.active {
  background-color: #0053A5;
}

body .survey-question, body .survey-result {
  margin: auto;
  padding: 0px 20px 50px 20px;
  max-width: 940px;
  display: none;
}

body .survey-question.show, body .survey-result.show {
  display: block;
}

body .survey-question .survey-item, body .survey-result .survey-item {
  max-width: 778px;
  margin: auto;
}

body .survey-question .question-title, body .survey-result .question-title {
  color: #000;
  font-family: "DINNextLTPro-BoldCondensed";
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 20px;
}

body .survey-question .question-text, body .survey-result .question-text {
  color: #000;
  font-family: "DINNextLTPro-LightCondensed";
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}

body .survey-question .question-text span, body .survey-result .question-text span {
  font-family: 'DINNextLTPro-BoldCondensed';
}

body .survey-question .btn, body .survey-result .btn {
  display: flex;
  width: 120px;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background-color: #0053A5;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-family: "DINNextLTPro-BoldCondensed";
  font-weight: 700;
  line-height: 18px;
}

body .survey-question .btn:hover, body .survey-result .btn:hover {
  background-color: #C463A5;
  color: #FFF;
}

body .survey-question .btn .icon, body .survey-result .btn .icon {
  width: 6px;
  height: 12px;
  display: block;
  background-image: url(../images/arrow-pointer.svg);
  background-repeat: no-repeat;
  background-size: 6px 12px;
}

body .survey-question .btn .icon-left, body .survey-result .btn .icon-left {
  width: 6px;
  height: 12px;
  display: block;
  background-image: url(../images/arrow-pointer.svg);
  background-repeat: no-repeat;
  background-size: 6px 12px;
  transform: scaleX(-1);
}

body .survey-question .btn.alcenter, body .survey-result .btn.alcenter {
  margin: auto;
}

body .survey-question .result-content, body .survey-result .result-content {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  body .survey-question .result-content, body .survey-result .result-content {
    display: block;
  }
}

body .survey-question .result-content .content-title, body .survey-result .result-content .content-title {
  color: #000;
  font-family: "DINNextLTPro-MediumCond";
  font-size: 20px;
  line-height: 28px;
}

body .survey-question .result-content .content-text, body .survey-result .result-content .content-text {
  color: #000;
  font-family: "DINNextLTPro-LightCondensed";
  font-size: 20px;
  line-height: 28px;
}

body .survey-question .result-content .content-left, body .survey-result .result-content .content-left {
  flex-grow: 1;
  flex-basis: 0;
}

body .survey-question .result-content .content-right, body .survey-result .result-content .content-right {
  flex-basis: 0;
  flex-grow: 1;
  display: flex;
  justify-content: right;
  padding: 30px 0;
}

@media (max-width: 768px) {
  body .survey-question .result-content .content-right, body .survey-result .result-content .content-right {
    justify-content: center;
  }
}

body .survey-question .survey-CTA-section, body .survey-result .survey-CTA-section {
  display: flex;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  border-radius: 16px;
  background: #D9E5F1;
}

@media (max-width: 768px) {
  body .survey-question .survey-CTA-section, body .survey-result .survey-CTA-section {
    display: block;
  }
}

body .survey-question .survey-CTA-section .CTA-column, body .survey-result .survey-CTA-section .CTA-column {
  display: flex;
  width: 640px;
  max-width: 640px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  body .survey-question .survey-CTA-section .CTA-column, body .survey-result .survey-CTA-section .CTA-column {
    display: block;
    width: auto;
    max-width: 640px;
  }
  body .survey-question .survey-CTA-section .CTA-column .pack-shots, body .survey-result .survey-CTA-section .CTA-column .pack-shots {
    text-align: center;
  }
}

body .survey-question .survey-CTA-section .CTA-column .CTA-button, body .survey-result .survey-CTA-section .CTA-column .CTA-button {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background: #FFF;
  text-decoration: none;
  cursor: pointer;
  width: 200px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  body .survey-question .survey-CTA-section .CTA-column .CTA-button, body .survey-result .survey-CTA-section .CTA-column .CTA-button {
    margin: 20px auto;
  }
}

body .survey-question .survey-CTA-section .CTA-column .CTA-button .txt, body .survey-result .survey-CTA-section .CTA-column .CTA-button .txt {
  color: #0053A5;
  text-align: center;
  font-family: "DINNextLTPro-BoldCondensed";
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
}

body .survey-question .survey-CTA-section .CTA-column .CTA-button .icon, body .survey-result .survey-CTA-section .CTA-column .CTA-button .icon {
  display: block;
  width: 5.59px;
  height: 11.91px;
  background-image: url(../images/arrow-pointer-blue.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

body .survey-result {
  padding: 50px 20px 50px 20px;
}

.slider-container {
  position: relative;
  height: 18px;
  border-radius: 10px;
  background: #D9E5F1;
  padding: 0 40px;
  z-index: 1;
}

@media (max-width: 554px) {
  .slider-container {
    padding: 0 30px;
  }
}

.slider {
  width: 100%;
  height: 18px;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 3;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  background-image: url(../images/slider-Pointer.svg);
  background-repeat: no-repeat;
  background-size: 34px 34px;
}

.slider::-moz-range-thumb {
  cursor: pointer;
  width: 34px;
  height: 34px;
  background-image: url(../images/slider-Pointer.svg);
  background-repeat: no-repeat;
  background-size: 34px 34px;
}

.slider-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -21px;
  width: 100%;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(51, 51, 51, 0.1);
  border-radius: 50%;
  cursor: pointer;
}

.slider-txt {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding-top: 15px;
}

.slider-txt .txt {
  width: 90px;
  text-align: center;
  color: #000;
  font-family: "DINNextLTPro-BoldCondensed";
  font-size: 18px;
  line-height: 20px;
}
