.choice-expanded {
  display: flex;
  flex-direction: column;
  gap: 5px;

  .choice-expanded-row {
    display: flex;
    flex-direction: row;
    gap: 5px;

    input {
      margin-top: 1px;
    }

    label {
      color: var(--text-primary);

      &.required::after {
        content: none;
      }
    }
  }
}
