function popmake_popup_theme_content_meta_box_field_font($popup_theme_id)
{
    ?>
	<tr>
		<th scope="row">
			<label for="popup_theme_content_font_color"><strong class="title"><?php 
    _e('Font', 'popup-maker');
    ?>
</strong></label>
		</th>
		<td></td>
	</tr>
	<tr>
		<th scope="row">
			<label for="popup_theme_content_font_color"><?php 
    _e('Color', 'popup-maker');
    ?>
</label>
		</th>
		<td>
			<input type="text" name="popup_theme_content_font_color" id="popup_theme_content_font_color" value="<?php 
    esc_attr_e(popmake_get_popup_theme_content($popup_theme_id, 'font_color'));
    ?>
" class="color-picker" />
		</td>
	</tr>
	<tr>
		<th scope="row">
			<label for="popup_theme_content_font_family"><?php 
    _e('Family', 'popup-maker');
    ?>
</label>
		</th>
		<td>
			<select name="popup_theme_content_font_family" id="popup_theme_content_font_family" class="font-family">
			<?php 
    foreach (apply_filters('popmake_font_family_options', array()) as $option => $value) {
        ?>
				<option value="<?php 
        echo $value;
        ?>
"
					<?php 
        echo $value == popmake_get_popup_theme_content($popup_theme_id, 'font_family') ? ' selected="selected"' : '';
        ?>
					<?php 
        echo $value == '' ? ' class="bold"' : '';
        ?>
				><?php 
        echo $option;
        ?>
</option>
			<?php 
    }
    ?>
			</select>
		</td>
	</tr>
	<tr>
		<th scope="row font-weight-only">
			<label for="popup_theme_content_font_weight"><?php 
    _e('Weight', 'popup-maker');
    ?>
</label>
		</th>
		<td>
			<select name="popup_theme_content_font_weight" id="popup_theme_content_font_weight" class="font-weight">
			<?php 
    foreach (apply_filters('popmake_font_weight_options', array()) as $option => $value) {
        ?>
				<option
					value="<?php 
        echo $value;
        ?>
"
					<?php 
        echo $value == popmake_get_popup_theme_content($popup_theme_id, 'font_weight') ? ' selected="selected"' : '';
        ?>
					<?php 
        echo $value == '' ? ' class="bold"' : '';
        ?>
				><?php 
        echo $option;
        ?>
</option>
			<?php 
    }
    ?>
			</select>
		</td>
	</tr>
	<tr>
		<th scope="row font-style-only">
			<label for="popup_theme_content_font_style"><?php 
    _e('Style', 'popup-maker');
    ?>
</label>
		</th>
		<td>
			<select name="popup_theme_content_font_style" id="popup_theme_content_font_style" class="font-style">
			<?php 
    foreach (apply_filters('popmake_font_style_options', array()) as $option => $value) {
        ?>
				<option
					value="<?php 
        echo $value;
        ?>
"
					<?php 
        echo $value == popmake_get_popup_theme_content($popup_theme_id, 'font_style') ? ' selected="selected"' : '';
        ?>
					<?php 
        echo $value == '' ? ' class="bold"' : '';
        ?>
				><?php 
        echo $option;
        ?>
</option>
			<?php 
    }
    ?>
			</select>
		</td>
	</tr><?php 
}
function popmake_get_popup_theme_data_attr($popup_theme_id = 0)
{
    $data_attr = array('overlay' => popmake_get_popup_theme_overlay($popup_theme_id), 'container' => popmake_get_popup_theme_container($popup_theme_id), 'title' => popmake_get_popup_theme_title($popup_theme_id), 'content' => popmake_get_popup_theme_content($popup_theme_id), 'close' => popmake_get_popup_theme_close($popup_theme_id));
    return apply_filters('popmake_get_popup_theme_data_attr', $data_attr, $popup_theme_id);
}