" id="frm_required_color" class="hex" value="<?php 
echo esc_attr($style->post_content['required_color']);
?>
" />
</div>
<div class="field-group clearfix after-h3">
	<label><?php 
_e('Weight', 'formidable');
?>
</label>
	<select name="<?php 
echo esc_attr($frm_style->get_field_name('required_weight'));
?>
" id="frm_required_weight">
		<?php 
foreach (FrmStyle::get_bold_options() as $value => $name) {
    ?>
		<option value="<?php 
    echo esc_attr($value);
    ?>
" <?php 
    selected($style->post_content['required_weight'], $value);
    ?>
><?php 
    echo esc_html($name);
    ?>
</option>
		<?php 
}
?>
	</select>