.quiz__questions-wrapper {
  row-gap:var(--space-m);
}

.quiz__question-answer-wrapper {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.quiz__question-answer-wrapper * {
    cursor: pointer;
}

.quiz__question-title {
  font-weight:500;
}

.quiz__question-answer-label {
  color: var(--text-color);
  margin-bottom: 0;
}

.quiz__question-answer-wrapper .quiz__question-answer-correct-icon {
  fill: var(--success);
}

.quiz__question-answer-wrapper .quiz__question-answer-incorrect-icon {
  fill: var(--danger);
}