.quiz-page .quiz {
  padding: 0 0 0 0;
}
.quiz-page .quiz__progress-text {
  display: block;
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 8px;
}
.quiz-page .quiz__progress-bar {
  height: 35px;
  width: 100%;
  position: relative;
}
.quiz-page .quiz__progress-bar::after {
  content: "";
  background-image: url("../images/quiz/child.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 21px;
  top: -40px;
  width: 36.38px;
  height: 64.44px;
}
.quiz-page .quiz__progress-bar-wrapper {
  width: 100%;
  height: 17px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.quiz-page .quiz__progress-fill {
  height: 100%;
  background-color: #ba5803;
  transition: width 0.3s ease;
}
.quiz-page .quiz__question {
  margin-bottom: 12px;
}
.quiz-page .quiz__question-icon {
  color: white;
  margin: 0 auto 12px auto;
  width: 14.65%;
  max-width: 63px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-page .quiz__question-image {
  text-align: center;
}
.quiz-page .quiz__question-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.quiz-page .quiz__question-text {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2rem;
  text-align: text;
  -webkit-text-size-adjust: 100%;
}
.quiz-page .quiz__choices {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.quiz-page .quiz__choices-instruction {
  margin-bottom: 5px;
}
.quiz-page .quiz__choices .choice-button {
  display: flex;
  align-items: center;
  padding: 0px;
  border: unset;
  border-radius: 32px;
  background-color: white;
  transition: all 0.3s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.quiz-page .quiz__choices .choice-button.selected {
  outline: 3px solid #ba5803;
  outline-offset: -3px;
  border-color: #ba5803;
  background-color: white;
}
.quiz-page .quiz__choices .choice-button.selected::after {
  content: "";
  position: absolute;
  background-image: url("../images/quiz/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  right: 0.75rem;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.quiz-page .quiz__choices .choice-button__label {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #3679b0;
  color: white;
  border-radius: 32px 0 0 32px;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 1.4rem 1.25rem 1.4rem 1.5rem;
}
.quiz-page .quiz__choices .choice-button.selected .choice-button__label {
  background-color: #ba5803;
}
.quiz-page .quiz__choices .choice-button__text {
  flex: 1;
  text-align: left;
  font-size: 0.875rem;
  padding-right: 40px;
  font-weight: bold;
  color: #000000;
}
@supports (-webkit-touch-callout: none) {
  .quiz-page .quiz__choices .choice-button__text.has-ruby:has(ruby) {
    transform: translateY(-0.325em);
  }
}
.quiz-page .quiz__choices .choice-button.multiline .choice-button__label {
  height: 4.5rem;
}
.quiz-page .quiz__hint {
  font-size: 0.875rem;
  color: #999;
  text-align: center;
  margin-bottom: 32px;
}
.quiz-page .quiz__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.quiz-page #next-button,
.quiz-page #next-button-spview {
  border-radius: 32px;
  padding: 0.75rem 3rem 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}