/* Shared checkbox/radio row: align the control with the first text line. */
.choice-row {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.choice-row > input[type="checkbox"],
.choice-row > input[type="radio"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 1px 0 0;
    flex: 0 0 18px;
}

.choice-row > label,
.choice-row > span {
    min-width: 0;
    margin: 0;
}

.choice-row > span {
    display: block;
}

.choice-row--center {
    align-items: center;
}

.choice-row--center > input[type="checkbox"],
.choice-row--center > input[type="radio"] {
    margin-top: 0;
}
