<style>
.uc-radio-form .t-checkboxes__wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.uc-radio-form .t-checkboxes__wrapper label {
margin-right: 10px;
}
</style>
<style>
.uc-radio-form .t-checkboxes__wrapper {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-columns: repeat( auto-fill , minmax( 200px , 1fr ) );
}
</style>