The below CSS is causing labels to be block and messing up the display of radio fields.
IN: templates/rt_metropolis/css-compiled/bootstrap.css
ON: Line 1 (looks compressed)
Code:
label {
display: block;
margin-bottom: 5px;
}
With the above you'd need to remove the display, which is setting it to block.
The below CSS is forcing select inputs to a specific width.
IN: templates/rt_metropolis/css-compiled/bootstrap.css
ON: Line 1 (looks compressed)
Code:
select {
width: 220px;
border: 1px solid #CCC;
background-color: white;
}
With the above you'd need to remove the width of 220px.