:root {
  --spacer_height: 0.5rem;
}

.wrapper {
  padding: var(--large-margin) 0;
}

.question_spacer {
  height: var(--spacer_height);
}

.question_spacer_line {
  height: calc(var(--spacer_height) / 2); /* make var w calc */
}

.question {
  width: 100%;
  padding: var(--standard-padding) var(--large-padding);
  box-sizing: border-box;
  cursor: pointer;
}

.header {
  display: flex;
  flex-direction: column;
}

.headerSection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.points {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--font-size-sm);
  color: var(--darker-gray);
}

legend {
  border: none;
  display: none;
}

.contentWrapper {
  margin-left: var(--extra-large-margin);
}
