.custom-radio {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  cursor: pointer;
}

.custom-radio input {
  display: none;
}

.radio-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e5e9ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #6b7280;
}

.custom-radio input:checked + .radio-circle {
  background: #2cc78f;
  color: #fff;
}

.radio-circle::before {
  content: attr(data-letter);
}

.zachtgroen {
	background: rgba(0,205,135,.15);
	border: 1px solid #00CD87;
}

.quiz-vraag { display: none; }
.quiz-vraag:first-of-type { display: block; }
.quiz-vraag.active { display: block; }
