.survey-response {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.survey-response .section-component-title {
  border-bottom-width: 1px;
  border-color: rgb(var(--color-smoke-80) / 1);
  padding-block: 1rem;
}

.survey-response .section-questions {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  padding-block: 1rem;
}

.survey-response .response-question-answer {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.survey-response .response-question-answer .question-text {
  font-weight: 500;
}

.survey-response .answer-body {
  padding: 1rem;
}

.survey-response .answer-body--background {
  background-color: #f3f3f3;
  border-radius: 0.75rem;
}

.survey-response .not-answered {
  font-style: italic;
}

.survey-response .choice-item {
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.survey-response .signed-date {
  font-size: 0.875rem;
  color: rgb(var(--color-smoke-30) / 1);
}

.survey-response .file-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.survey-response .grid-cell {
  font-size: 0.75rem;
}

.survey-response .attachment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.survey-response .question-type-multiple-choice .choices-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.survey-response .choice-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.survey-response .choice-option .item {
  width: 0.75rem;
  height: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.survey-response .choice-option .radio {
  border-radius: 50%;
  background-color: rgb(var(--color-smoke-80));
}

.survey-response .choice-option .radio.checked .fill {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #fff;
  border-radius: 50%;
}

.survey-response .choice-option .checkbox {
  position: relative;
  border-radius: 0.125rem;
  border: 1px solid rgb(var(--color-smoke-50));
}

.survey-response .choice-option .checkbox.checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.survey-response .choice-option .checked {
  background-color: rgb(var(--color-ocean-30));
  border-color: rgb(var(--color-ocean-30));
}
