<?php /**
 * Kadence\Options\Component class
 *
 * @package kadence
 */

namespace Kadence\Options;

use Kadence\Component_Interface;
use Kadence\Templating_Component_Interface;
use function Kadence\kadence;
use function apply_filters;
use function get_option;
use function is_null;
use function wp_parse_args;
use function add_filter;
use function add_action;

/**
 * Class for managing stylesheets.
 *
 * Exposes template tags:
 * * `kadence()->option()`
 * * `kadence()-&gt;default()`
 * * `kadence()-&gt;get_option_type()`
 * * `kadence()-&gt;get_option_name()`
 * * `kadence()-&gt;sub_option()`
 * * `kadence()-&gt;sidebar_options()`
 * * `kadence()-&gt;palette_option()`
 * * `kadence()-&gt;get_palette()`
 */
class Component implements Component_Interface, Templating_Component_Interface {

	/**
	 * Holds default theme option values
	 *
	 * @var default values of the theme.
	 */
	protected static $default_options = null;

	/**
	 * Settings database Name.
	 *
	 * @var array
	 */
	private static $opt_name = null;

	/**
	 * Settings database Name.
	 *
	 * @var array
	 */
	private static $opt_type = null;

	/**
	 * Holds theme option values
	 *
	 * @var values of the theme settings.
	 */
	protected static $options = null;

	/**
	 * Holds palette values
	 *
	 * @var values of the theme settings.
	 */
	protected static $palette = null;

	/**
	 * Holds sidebar options values
	 *
	 * @var values of the theme settings.
	 */
	protected static $sidebars = null;

	/**
	 * Holds default palette values
	 *
	 * @var values of the theme settings.
	 */
	protected static $default_palette = null;

	/**
	 * Holds default theme option values for cpt
	 *
	 * @var default values of the theme.
	 */
	protected static $cpt_options = null;
	/**
	 * Holds theme option values
	 *
	 * @var values of the theme settings.
	 */
	protected static $custom_options = array();

	/**
	 * Gets the unique identifier for the theme component.
	 *
	 * @return string Component slug.
	 */
	public function get_slug() : string {
		return 'options';
	}

	/**
	 * Adds the action and filter hooks to integrate with WordPress.
	 */
	public function initialize() {
		add_action( 'wp_loaded', array( $this, 'add_default_options' ) );
		add_action( 'customize_register', array( $this, 'add_default_options' ), 5 );
	}

	/**
	 * Gets template tags to expose as methods on the Template_Tags class instance, accessible through `kadence()`.
	 *
	 * @return array Associative array of $method_name =&gt; $callback_info pairs. Each $callback_info must either be
	 *               a callable or an array with key 'callable'. This approach is used to reserve the possibility of
	 *               adding support for further arguments in the future.
	 */
	public function template_tags() : array {
		return array(
			'option'                     =&gt; array( $this, 'option' ),
			'default'                    =&gt; array( $this, 'default' ),
			'get_option_type'            =&gt; array( $this, 'get_option_type' ),
			'get_option_name'            =&gt; array( $this, 'get_option_name' ),
			'sub_option'                 =&gt; array( $this, 'sub_option' ),
			'sidebar_options'            =&gt; array( $this, 'sidebar_options' ),
			'palette_option'             =&gt; array( $this, 'palette_option' ),
			'get_palette'                =&gt; array( $this, 'get_palette' ),
			'get_default_palette'        =&gt; array( $this, 'get_default_palette' ),
			'get_palette_for_customizer' =&gt; array( $this, 'get_palette_for_customizer' ),
		);
	}

	/**
	 * Get Option Type
	 *
	 * @access public
	 * @return string
	 */
	public function get_option_type() {
		// Define sections.
		if ( is_null( self::$opt_type ) ) {
			self::$opt_type = apply_filters( 'kadence_theme_option_type', 'theme_mod' );
		}
		// Return option_type.
		return self::$opt_type;
	}

	/**
	 * Get Option Name
	 *
	 * @access public
	 * @return string
	 */
	public function get_option_name() {
		// Define sections.
		if ( is_null( self::$opt_name ) ) {
			self::$opt_name = apply_filters( 'kadence_theme_option_name', 'kadence_settings' );
		}
		// Return option_name.
		return self::$opt_name;
	}
	/**
	 * Set default theme option values
	 *
	 * @return default values of the theme.
	 */
	public static function defaults() {
		// Don't store defaults until after init.
		if ( is_null( self::$default_options ) ) {
			self::$default_options = apply_filters(
				'kadence_theme_options_defaults',
				array(
					'content_width'   =&gt; array(
						'size' =&gt; 1290,
						'unit' =&gt; 'px',
					),
					'content_narrow_width'   =&gt; array(
						'size' =&gt; 842,
						'unit' =&gt; 'px',
					),
					'content_edge_spacing'   =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 1.5,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'rem',
							'tablet'  =&gt; 'rem',
							'desktop' =&gt; 'rem',
						),
					),
					'content_spacing'   =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; 2,
							'tablet'  =&gt; 3,
							'desktop' =&gt; 5,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'rem',
							'tablet'  =&gt; 'rem',
							'desktop' =&gt; 'rem',
						),
					),
					'boxed_spacing'   =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; 1.5,
							'tablet'  =&gt; 2,
							'desktop' =&gt; 2,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'rem',
							'tablet'  =&gt; 'rem',
							'desktop' =&gt; 'rem',
						),
					),
					'boxed_shadow' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0.05)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 15,
						'blur'    =&gt; 15,
						'spread'  =&gt; -10,
						'inset'   =&gt; false,
					),
					'boxed_border_radius' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; true,
					),
					'boxed_grid_spacing'   =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; 1.5,
							'tablet'  =&gt; 2,
							'desktop' =&gt; 2,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'rem',
							'tablet'  =&gt; 'rem',
							'desktop' =&gt; 'rem',
						),
					),
					'boxed_grid_shadow' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0.05)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 15,
						'blur'    =&gt; 15,
						'spread'  =&gt; -10,
						'inset'   =&gt; false,
					),
					'boxed_grid_border_radius' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; true,
					),
					'site_background'                =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; 'palette8',
						),
					),
					'content_background'                =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; 'palette9',
						),
					),
					// Sidebar.
					'sidebar_width'   =&gt; array(
						'size' =&gt; '',
						'unit' =&gt; '%',
					),
					'sidebar_widget_spacing'   =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 1.5,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'em',
							'tablet'  =&gt; 'em',
							'desktop' =&gt; 'em',
						),
					),
					'sidebar_widget_title' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 20,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.5,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette3',
					),
					'sidebar_widget_content'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; 'palette4',
					),
					'sidebar_link_style' =&gt; 'normal',
					'sidebar_link_colors' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'sidebar_background' =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'sidebar_divider_border' =&gt; array(),
					'sidebar_padding'        =&gt; array(
						'size'   =&gt; array( 
							'desktop' =&gt; array( '', '', '', '' ),
						),
						'unit'   =&gt; array(
							'desktop' =&gt; 'px',
						),
						'locked' =&gt; array(
							'desktop' =&gt; false,
						),
					),
					'sidebar_sticky'               =&gt; false,
					'sidebar_sticky_last_widget'   =&gt; false,
					// Links.
					'link_color'                     =&gt; array(
						'highlight'      =&gt; 'palette1',
						'highlight-alt'  =&gt; 'palette2',
						'highlight-alt2' =&gt; 'palette9',
						'style'          =&gt; 'standard',
					),
					// Scroll To Top.
					'scroll_up'               =&gt; false,
					'scroll_up_side'          =&gt; 'right',
					'scroll_up_icon'          =&gt; 'arrow-up',
					'scroll_up_icon_size'   =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 1.2,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'em',
							'tablet'  =&gt; 'em',
							'desktop' =&gt; 'em',
						),
					),
					'scroll_up_side_offset'   =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 30,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'scroll_up_bottom_offset'   =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 30,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'scroll_up_visiblity' =&gt; array(
						'desktop' =&gt; true,
						'tablet'  =&gt; true,
						'mobile'  =&gt; false,
					),
					'scroll_up_style' =&gt; 'outline',
					'scroll_up_padding' =&gt; array(
						'size'   =&gt; array( 
							'desktop' =&gt; array( 0.4, 0.4, 0.4, 0.4 ),
						),
						'unit'   =&gt; array(
							'desktop' =&gt; 'em',
						),
						'locked' =&gt; array(
							'desktop' =&gt; true,
						),
					),
					'scroll_up_color'                     =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
					),
					'scroll_up_background'                     =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
					),
					'scroll_up_border_colors'         =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
					),
					'scroll_up_border'    =&gt; array(),
					'scroll_up_radius' =&gt; array(
						'size'   =&gt; array( 0, 0, 0, 0 ),
						'unit'   =&gt; 'px',
						'locked' =&gt; true,
					),
					'comment_form_remove_web'  =&gt; false,
					'comment_form_before_list' =&gt; false,
					// Buttons.
					'buttons_color'                     =&gt; array(
						'color'  =&gt; 'palette9',
						'hover'  =&gt; 'palette9',
					),
					'buttons_background' =&gt; array(
						'color'  =&gt; 'palette1',
						'hover'  =&gt; 'palette2',
					),
					'buttons_border_colors' =&gt; array(
						'color' =&gt; '',
						'hover'  =&gt; '',
					),
					'buttons_border'        =&gt; array(),
					'buttons_border_radius' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'buttons_typography'    =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'buttons_padding'        =&gt; array(
						'size'   =&gt; array( 
							'desktop' =&gt; array( '', '', '', '' ),
						),
						'unit'   =&gt; array(
							'desktop' =&gt; 'px',
						),
						'locked' =&gt; array(
							'desktop' =&gt; false,
						),
					),
					'buttons_shadow' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 0,
						'blur'    =&gt; 0,
						'spread'  =&gt; -7,
						'inset'   =&gt; false,
					),
					'buttons_shadow_hover' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0.1)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 15,
						'blur'    =&gt; 25,
						'spread'  =&gt; -7,
						'inset'   =&gt; false,
					),
					'image_border_radius' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'enable_footer_on_bottom' =&gt; true,
					'enable_scroll_to_id'     =&gt; true,
					'lightbox' =&gt; false,
					'enable_popup_body_animate' =&gt; false,
					// Typography.
					'font_rendering' =&gt; false,
					'base_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 17,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.6,
						),
						'family'  =&gt; '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',
						'google'  =&gt; false,
						'weight'  =&gt; '400',
						'variant' =&gt; 'regular',
						'color'   =&gt; 'palette4',
					),
					'load_base_italic'    =&gt; false,
					'google_subsets'      =&gt; array(),
					'load_fonts_local'    =&gt; false,
					'preload_fonts_local' =&gt; true,
					'heading_font'        =&gt; array(
						'family' =&gt; 'inherit',
					),
					'h1_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 32,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.5,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette3',
					),
					'h2_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 28,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.5,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette3',
					),
					'h3_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 24,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.5,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette3',
					),
					'h4_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 22,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.5,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette4',
					),
					'h5_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 20,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.5,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette4',
					),
					'h6_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 18,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.5,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette5',
					),
					'title_above_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'title_above_breadcrumb_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'google_subsets' =&gt; array(
						'latin-ext' =&gt; false,
						'cyrillic' =&gt; false,
						'cyrillic-ext' =&gt; false,
						'greek' =&gt; false,
						'greek-ext' =&gt; false,
						'vietnamese' =&gt; false,
						'arabic' =&gt; false,
						'khmer' =&gt; false,
						'chinese' =&gt; false,
						'chinese-simplified' =&gt; false,
						'tamil' =&gt; false,
						'bengali' =&gt; false,
						'devanagari' =&gt; false,
						'hebrew' =&gt; false,
						'korean' =&gt; false,
						'thai' =&gt; false,
						'telugu' =&gt; false,
					),
					'header_mobile_switch'            =&gt; array(
						'size' =&gt; '',
						'unit' =&gt; 'px',
					),
					// Header.
					'header_desktop_items'       =&gt; array(
						'top' =&gt; array(
							'top_left'         =&gt; array(),
							'top_left_center'  =&gt; array(),
							'top_center'       =&gt; array(),
							'top_right_center' =&gt; array(),
							'top_right'        =&gt; array(),
						),
						'main' =&gt; array(
							'main_left'         =&gt; array( 'logo' ),
							'main_left_center'  =&gt; array(),
							'main_center'       =&gt; array(),
							'main_right_center' =&gt; array(),
							'main_right'        =&gt; array( 'navigation' ),
						),
						'bottom' =&gt; array(
							'bottom_left'         =&gt; array(),
							'bottom_left_center'  =&gt; array(),
							'bottom_center'       =&gt; array(),
							'bottom_right_center' =&gt; array(),
							'bottom_right'        =&gt; array(),
						),
					),
					'header_wrap_background' =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '#ffffff',
						),
					),
					// Header Main.
					'header_main_height' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 80,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'header_main_layout'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'standard',
					),
					'header_main_background' =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'header_main_trans_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'header_main_top_border'    =&gt; array(),
					'header_main_bottom_border' =&gt; array(),
					'header_main_padding' =&gt; array(
						'size'   =&gt; array( 
							'desktop' =&gt; array( '', '', '', '' ),
						),
						'unit'   =&gt; array(
							'desktop' =&gt; 'px',
						),
						'locked' =&gt; array(
							'desktop' =&gt; false,
						),
					),
					// Header Top.
					'header_top_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 0,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'header_top_layout'        =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'standard',
					),
					'header_top_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'header_top_trans_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'header_top_top_border'    =&gt; array(),
					'header_top_bottom_border' =&gt; array(),
					'header_top_padding' =&gt; array(
						'size'   =&gt; array( 
							'desktop' =&gt; array( '', '', '', '' ),
						),
						'unit'   =&gt; array(
							'desktop' =&gt; 'px',
						),
						'locked' =&gt; array(
							'desktop' =&gt; false,
						),
					),
					// Header Bottom.
					'header_bottom_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 0,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'header_bottom_layout'        =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'standard',
					),
					'header_bottom_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'header_bottom_trans_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'header_bottom_top_border'    =&gt; array(),
					'header_bottom_bottom_border' =&gt; array(),
					'header_bottom_padding' =&gt; array(
						'size'   =&gt; array( 
							'desktop' =&gt; array( '', '', '', '' ),
						),
						'unit'   =&gt; array(
							'desktop' =&gt; 'px',
						),
						'locked' =&gt; array(
							'desktop' =&gt; false,
						),
					),
					// Mobile Header.
					'header_mobile_items' =&gt; array(
						'popup' =&gt; array(
							'popup_content' =&gt; array( 'mobile-navigation' ),
						),
						'top' =&gt; array(
							'top_left'   =&gt; array(),
							'top_center' =&gt; array(),
							'top_right'  =&gt; array(),
						),
						'main' =&gt; array(
							'main_left'   =&gt; array( 'mobile-logo' ),
							'main_center' =&gt; array(),
							'main_right'  =&gt; array( 'popup-toggle' ),
						),
						'bottom' =&gt; array(
							'bottom_left'   =&gt; array(),
							'bottom_center' =&gt; array(),
							'bottom_right'  =&gt; array(),
						),
					),
					// Logo.
					'logo_width' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 200,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'use_mobile_logo' =&gt; false,
					'logo_layout'     =&gt; array(
						'include' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 'logo_title',
						),
						'layout' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 'standard',
						),
					),
					'brand_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 26,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.2,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette3',
					),
					'brand_typography_color'              =&gt; array(
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					'brand_tag_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 16,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; 1.4,
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette5',
					),
					'header_logo_padding' =&gt; array(
						'size'   =&gt; array( 
							'desktop' =&gt; array( '', '', '', '' ),
						),
						'unit'   =&gt; array(
							'desktop' =&gt; 'px',
						),
						'locked' =&gt; array(
							'desktop' =&gt; false,
						),
					),
					// Navigation.
					'primary_navigation_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'primary_navigation_spacing'            =&gt; array(
						'size' =&gt; 1.2,
						'unit' =&gt; 'em',
					),
					'primary_navigation_vertical_spacing'   =&gt; array(
						'size' =&gt; 0.6,
						'unit' =&gt; 'em',
					),
					'primary_navigation_stretch' =&gt; false,
					'primary_navigation_fill_stretch' =&gt; false,
					'primary_navigation_style'   =&gt; 'standard',
					'primary_navigation_color'   =&gt; array(
						'color'  =&gt; 'palette5',
						'hover'  =&gt; 'palette-highlight',
						'active' =&gt; 'palette3',
					),
					'primary_navigation_background'              =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					'primary_navigation_parent_active' =&gt; false,
					// Secondary Navigation.
					'secondary_navigation_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'secondary_navigation_spacing'            =&gt; array(
						'size' =&gt; 1.2,
						'unit' =&gt; 'em',
					),
					'secondary_navigation_vertical_spacing'   =&gt; array(
						'size' =&gt; 0.6,
						'unit' =&gt; 'em',
					),
					'secondary_navigation_stretch' =&gt; false,
					'secondary_navigation_fill_stretch' =&gt; false,
					'secondary_navigation_style'   =&gt; 'standard',
					'secondary_navigation_color'   =&gt; array(
						'color'  =&gt; 'palette5',
						'hover'  =&gt; 'palette-highlight',
						'active' =&gt; 'palette3',
					),
					'secondary_navigation_background'              =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					'secondary_navigation_parent_active' =&gt; false,
					// Dropdown.
					'dropdown_navigation_reveal' =&gt; 'none',
					'dropdown_navigation_width'  =&gt; array(
						'size' =&gt; 200,
						'unit' =&gt; 'px',
					),
					'dropdown_navigation_vertical_spacing'   =&gt; array(
						'size' =&gt; 1,
						'unit' =&gt; 'em',
					),
					'dropdown_navigation_color'              =&gt; array(
						'color'  =&gt; 'palette8',
						'hover'  =&gt; 'palette9',
						'active' =&gt; 'palette9',
					),
					'dropdown_navigation_background'              =&gt; array(
						'color'  =&gt; 'palette3',
						'hover'  =&gt; 'palette4',
						'active' =&gt; 'palette4',
					),
					'dropdown_navigation_divider'              =&gt; array(
						'width' =&gt; 1,
						'unit'  =&gt; 'px',
						'style' =&gt; 'solid',
						'color' =&gt; 'rgba(255,255,255,0.1)',
					),
					'dropdown_navigation_shadow'              =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0.1)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 2,
						'blur'    =&gt; 13,
						'spread'  =&gt; 0,
						'inset'   =&gt; false,
					),
					'dropdown_navigation_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 12,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					// Mobile Trigger.
					'mobile_trigger_label'  =&gt; '',
					'mobile_trigger_icon'   =&gt; 'menu',
					'mobile_trigger_style'  =&gt; 'default',
					'mobile_trigger_border' =&gt; array(
						'width' =&gt; 1,
						'unit'  =&gt; 'px',
						'style' =&gt; 'solid',
						'color' =&gt; 'currentColor',
					),
					'mobile_trigger_icon_size'   =&gt; array(
						'size' =&gt; 20,
						'unit' =&gt; 'px',
					),
					'mobile_trigger_color'              =&gt; array(
						'color' =&gt; 'palette5',
						'hover' =&gt; 'palette-highlight',
					),
					'mobile_trigger_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'mobile_trigger_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 14,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'mobile_trigger_padding' =&gt; array(
						'size'   =&gt; array( 0.4, 0.6, 0.4, 0.6 ),
						'unit'   =&gt; 'em',
						'locked' =&gt; false,
					),
					// Mobile Navigation.
					'mobile_navigation_reveal' =&gt; 'none',
					'mobile_navigation_collapse' =&gt; true,
					'mobile_navigation_parent_toggle' =&gt; false,
					'mobile_navigation_width'  =&gt; array(
						'size' =&gt; 200,
						'unit' =&gt; 'px',
					),
					'mobile_navigation_vertical_spacing'   =&gt; array(
						'size' =&gt; 1,
						'unit' =&gt; 'em',
					),
					'mobile_navigation_color'              =&gt; array(
						'color'  =&gt; 'palette8',
						'hover'  =&gt; '',
						'active' =&gt; 'palette-highlight',
					),
					'mobile_navigation_background'              =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					'mobile_navigation_divider'              =&gt; array(
						'width' =&gt; 1,
						'unit'  =&gt; 'px',
						'style' =&gt; 'solid',
						'color' =&gt; 'rgba(255,255,255,0.1)',
					),
					'mobile_navigation_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; 14,
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					// Header Popup.
					'header_popup_side'           =&gt; 'right',
					'header_popup_layout'         =&gt; 'sidepanel',
					'header_popup_animation'      =&gt; 'fade',
					'header_popup_vertical_align' =&gt; 'top',
					'header_popup_content_align'  =&gt; 'left',
					'header_popup_background' =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'header_popup_close_color'  =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_popup_close_background'  =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_popup_close_icon_size'   =&gt; array(
						'size' =&gt; '24',
						'unit' =&gt; 'px',
					),
					'header_popup_close_padding' =&gt; array(
						'size'   =&gt; array( 0.6, 0.15, 0.6, 0.15 ),
						'unit'   =&gt; 'em',
						'locked' =&gt; false,
					),
					// Header HTML.
					'header_html_content'    =&gt; __( 'Insert HTML here', 'kadence' ),
					'header_html_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'header_html_link_style' =&gt; 'normal',
					'header_html_link_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_html_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					'header_html_wpautop' =&gt; true,
					// Header Button.
					'header_button_label'      =&gt; __( 'Button', 'kadence' ),
					'header_button_link'      =&gt; '',
					'header_button_style'      =&gt; 'filled',
					'header_button_size'       =&gt; 'medium',
					'header_button_visibility' =&gt; 'all',
					'header_button_padding'   =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					'header_button_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'header_button_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_button_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_button_border_colors'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_button_border'              =&gt; array(
						'width' =&gt; 2,
						'unit'  =&gt; 'px',
						'style' =&gt; 'none',
					),
					'header_button_shadow' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 0,
						'blur'    =&gt; 0,
						'spread'  =&gt; -7,
						'inset'   =&gt; false,
					),
					'header_button_shadow_hover' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0.1)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 15,
						'blur'    =&gt; 25,
						'spread'  =&gt; -7,
						'inset'   =&gt; false,
					),
					'header_button_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					'header_button_radius' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; true,
					),
					// Header Social.
					'header_social_items' =&gt; array(
						'items' =&gt; array(
							array(
								'id'      =&gt; 'facebook',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'facebook',
								'label'   =&gt; 'Facebook',
							),
							array(
								'id'      =&gt; 'twitter',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'twitter',
								'label'   =&gt; 'Twitter',
							),
							array(
								'id'      =&gt; 'instagram',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'instagram',
								'label'   =&gt; 'Instagram',
							),
						),
					),
					'header_social_style'        =&gt; 'filled',
					'header_social_show_label'   =&gt; false,
					'header_social_item_spacing' =&gt; array(
						'size' =&gt; 0.3,
						'unit' =&gt; 'em',
					),
					'header_social_icon_size' =&gt; array(
						'size' =&gt; 1,
						'unit' =&gt; 'em',
					),
					'header_social_brand' =&gt; '',
					'header_social_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_social_background' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_social_border_colors' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_social_border' =&gt; array(
						'width' =&gt; 2,
						'unit'  =&gt; 'px',
						'style' =&gt; 'none',
					),
					'header_social_border_radius' =&gt; array(
						'size' =&gt; 3,
						'unit' =&gt; 'px',
					),
					'header_social_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'header_social_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					// Mobile Header Social.
					'header_mobile_social_items' =&gt; array(
						'items' =&gt; array(
							array(
								'id'      =&gt; 'facebook',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'facebook',
								'label'   =&gt; 'Facebook',
							),
							array(
								'id'      =&gt; 'twitter',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'twitter',
								'label'   =&gt; 'Twitter',
							),
							array(
								'id'      =&gt; 'instagram',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'instagram',
								'label'   =&gt; 'Instagram',
							),
						),
					),
					'header_mobile_social_style'        =&gt; 'filled',
					'header_mobile_social_show_label'   =&gt; false,
					'header_mobile_social_item_spacing' =&gt; array(
						'size' =&gt; 0.3,
						'unit' =&gt; 'em',
					),
					'header_mobile_social_icon_size' =&gt; array(
						'size' =&gt; 1,
						'unit' =&gt; 'em',
					),
					'header_mobile_social_brand' =&gt; '',
					'header_mobile_social_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_mobile_social_background' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_mobile_social_border_colors' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_mobile_social_border' =&gt; array(
						'width' =&gt; 2,
						'unit'  =&gt; 'px',
						'style' =&gt; 'none',
					),
					'header_mobile_social_border_radius' =&gt; array(
						'size' =&gt; 3,
						'unit' =&gt; 'px',
					),
					'header_mobile_social_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'header_mobile_social_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					// Header Search.
					'header_search_label'           =&gt; '',
					'header_search_label_visiblity' =&gt; array(
						'desktop' =&gt; true,
						'tablet'  =&gt; true,
						'mobile'  =&gt; false,
					),
					'header_search_icon'   =&gt; 'search',
					'header_search_style'  =&gt; 'default',
					'header_search_woo'    =&gt; false,
					'header_search_border' =&gt; array(
						'width' =&gt; 1,
						'unit'  =&gt; 'px',
						'style' =&gt; 'solid',
						'color' =&gt; 'currentColor',
					),
					'header_search_icon_size' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 1,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'em',
							'tablet'  =&gt; 'em',
							'desktop' =&gt; 'em',
						),
					),
					'header_search_color'              =&gt; array(
						'color' =&gt; 'palette5',
						'hover' =&gt; 'palette-highlight',
					),
					'header_search_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_search_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'header_search_padding' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'em',
						'locked' =&gt; false,
					),
					'header_search_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					'header_search_modal_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_search_modal_background'              =&gt; array(
						'desktop' =&gt; '',
					),
					'header_search_modal_background'                =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; 'rgba(9, 12, 16, 0.97)',
						),
					),
					// Mobile Header Button.
					'mobile_button_label'      =&gt; __( 'Button', 'kadence' ),
					'mobile_button_style'      =&gt; 'filled',
					'mobile_button_size'       =&gt; 'medium',
					'mobile_button_visibility' =&gt; 'all',
					'mobile_button_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'mobile_button_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'mobile_button_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'mobile_button_border_colors'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'mobile_button_border'              =&gt; array(
						'width' =&gt; 2,
						'unit'  =&gt; 'px',
						'style' =&gt; 'none',
					),
					'mobile_button_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					'mobile_button_shadow' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 0,
						'blur'    =&gt; 0,
						'spread'  =&gt; -7,
						'inset'   =&gt; false,
					),
					'mobile_button_shadow_hover' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0.1)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 15,
						'blur'    =&gt; 25,
						'spread'  =&gt; -7,
						'inset'   =&gt; false,
					),
					'mobile_button_radius' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; true,
					),
					// Mobile Header HTML.
					'mobile_html_content'    =&gt; __( 'Insert HTML here', 'kadence' ),
					'mobile_html_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'mobile_html_link_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'mobile_html_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					'mobile_html_link_style' =&gt; 'normal',
					'mobile_html_wpautop' =&gt; true,
					// Transparent Header.
					'transparent_header_enable' =&gt; false,
					'transparent_header_device' =&gt; array(
						'desktop' =&gt; true,
						'mobile'  =&gt; true,
					),
					'transparent_header_archive'    =&gt; true,
					'transparent_header_page'       =&gt; false,
					'transparent_header_post'       =&gt; false,
					'transparent_header_product'    =&gt; true,
					'transparent_header_logo_width' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'transparent_header_logo'               =&gt; '',
					'transparent_header_custom_logo'        =&gt; false,
					'transparent_header_mobile_logo'        =&gt; '',
					'transparent_header_custom_mobile_logo' =&gt; false,
					'transparent_header_site_title_color'   =&gt; array(
						'color' =&gt; '',
					),
					'transparent_header_navigation_color'              =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					'transparent_header_navigation_background'              =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					'transparent_header_button_color'              =&gt; array(
						'color'           =&gt; '',
						'hover'           =&gt; '',
						'background'      =&gt; '',
						'backgroundHover' =&gt; '',
						'border'          =&gt; '',
						'borderHover'     =&gt; '',
					),
					'transparent_header_social_color'              =&gt; array(
						'color'           =&gt; '',
						'hover'           =&gt; '',
						'background'      =&gt; '',
						'backgroundHover' =&gt; '',
						'border'          =&gt; '',
						'borderHover'     =&gt; '',
					),
					'transparent_header_html_color'              =&gt; array(
						'color' =&gt; '',
						'link'  =&gt; '',
						'hover' =&gt; '',
					),
					'transparent_header_background'                =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'transparent_header_bottom_border'   =&gt; array(),
					// Sticky Header.
					'header_sticky'             =&gt; 'no',
					'header_reveal_scroll_up'   =&gt; false,
					'header_sticky_shrink'      =&gt; false,
					'header_sticky_main_shrink' =&gt; array(
						'size' =&gt; 60,
						'unit' =&gt; 'px',
					),
					'mobile_header_sticky'             =&gt; 'no',
					'mobile_header_sticky_shrink'      =&gt; false,
					'mobile_header_reveal_scroll_up'   =&gt; false,
					'mobile_header_sticky_main_shrink' =&gt; array(
						'size' =&gt; 60,
						'unit' =&gt; 'px',
					),
					'header_sticky_logo'               =&gt; '',
					'header_sticky_custom_logo'        =&gt; false,
					'header_sticky_mobile_logo'        =&gt; '',
					'header_sticky_custom_mobile_logo' =&gt; false,
					'header_sticky_logo_width'         =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'header_sticky_site_title_color'              =&gt; array(
						'color' =&gt; '',
					),
					'header_sticky_navigation_color'              =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					'header_sticky_navigation_background'              =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					'header_sticky_button_color'              =&gt; array(
						'color'           =&gt; '',
						'hover'           =&gt; '',
						'background'      =&gt; '',
						'backgroundHover' =&gt; '',
						'border'          =&gt; '',
						'borderHover'     =&gt; '',
					),
					'header_sticky_social_color'              =&gt; array(
						'color'           =&gt; '',
						'hover'           =&gt; '',
						'background'      =&gt; '',
						'backgroundHover' =&gt; '',
						'border'          =&gt; '',
						'borderHover'     =&gt; '',
					),
					'header_sticky_html_color'              =&gt; array(
						'color' =&gt; '',
						'link'  =&gt; '',
						'hover' =&gt; '',
					),
					'header_sticky_background'                =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'header_sticky_bottom_border'   =&gt; array(),
					// Footer.
					'footer_items'       =&gt; array(
						'top' =&gt; array(
							'top_1' =&gt; array(),
							'top_2' =&gt; array(),
							'top_3' =&gt; array(),
							'top_4' =&gt; array(),
							'top_5' =&gt; array(),
						),
						'middle' =&gt; array(
							'middle_1' =&gt; array(),
							'middle_2' =&gt; array(),
							'middle_3' =&gt; array(),
							'middle_4' =&gt; array(),
							'middle_5' =&gt; array(),
						),
						'bottom' =&gt; array(
							'bottom_1' =&gt; array( 'footer-html' ),
							'bottom_2' =&gt; array(),
							'bottom_3' =&gt; array(),
							'bottom_4' =&gt; array(),
							'bottom_5' =&gt; array(),
						),
					),
					'footer_wrap_background' =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					// Footer Top.
					'footer_top_height' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_top_column_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_top_widget_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_top_top_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_top_bottom_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_top_contain'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'standard',
					),
					'footer_top_columns' =&gt; '3',
					'footer_top_collapse' =&gt; 'normal',
					'footer_top_layout'  =&gt; array(
						'mobile'  =&gt; 'row',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'equal',
					),
					'footer_top_direction'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'row',
					),
					'footer_top_background' =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'footer_top_top_border'    =&gt; array(),
					'footer_top_bottom_border' =&gt; array(),
					'footer_top_column_border' =&gt; array(),
					'footer_top_widget_title'  =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'footer_top_widget_content' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'footer_top_widget_content_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'footer_top_link_style' =&gt; 'plain',
					// Footer Middle.
					'footer_middle_height' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_middle_column_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_middle_widget_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_middle_top_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_middle_bottom_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_middle_contain'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'standard',
					),
					'footer_middle_collapse' =&gt; 'normal',
					'footer_middle_columns' =&gt; '3',
					'footer_middle_layout'  =&gt; array(
						'mobile'  =&gt; 'row',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'equal',
					),
					'footer_middle_direction'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'row',
					),
					'footer_middle_background' =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'footer_middle_top_border'    =&gt; array(),
					'footer_middle_bottom_border' =&gt; array(),
					'footer_middle_column_border' =&gt; array(),
					'footer_middle_widget_title'  =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'footer_middle_widget_content' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'footer_middle_widget_content_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'footer_middle_link_style' =&gt; 'plain',
					// Footer Bottom.
					'footer_bottom_height' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_bottom_column_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_bottom_widget_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_bottom_top_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_bottom_bottom_spacing' =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '30',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'footer_bottom_contain'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'standard',
					),
					'footer_bottom_columns' =&gt; '1',
					'footer_bottom_collapse' =&gt; 'normal',
					'footer_bottom_layout'  =&gt; array(
						'mobile'  =&gt; 'row',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'row',
					),
					'footer_bottom_direction'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; 'row',
					),
					'footer_bottom_background' =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'footer_bottom_top_border'    =&gt; array(),
					'footer_bottom_bottom_border' =&gt; array(),
					'footer_bottom_column_border' =&gt; array(),
					'footer_bottom_widget_title'  =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'footer_bottom_widget_content' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'footer_bottom_widget_content_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'footer_bottom_link_style' =&gt; 'plain',
					// Footer Navigation.
					'footer_navigation_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'footer_navigation_spacing'            =&gt; array(
						'size' =&gt; 1.2,
						'unit' =&gt; 'em',
					),
					'footer_navigation_vertical_spacing'   =&gt; array(
						'size' =&gt; 0.6,
						'unit' =&gt; 'em',
					),
					'footer_navigation_stretch' =&gt; false,
					'footer_navigation_style'   =&gt; 'standard',
					'footer_navigation_color'   =&gt; array(
						'color'  =&gt; 'palette5',
						'hover'  =&gt; 'palette-highlight',
						'active' =&gt; 'palette3',
					),
					'footer_navigation_background'              =&gt; array(
						'color'  =&gt; '',
						'hover'  =&gt; '',
						'active' =&gt; '',
					),
					// Footer Social.
					'footer_social_items' =&gt; array(
						'items' =&gt; array(
							array(
								'id'      =&gt; 'facebook',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'facebook',
								'label'   =&gt; 'Facebook',
							),
							array(
								'id'      =&gt; 'twitter',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'twitter',
								'label'   =&gt; 'Twitter',
							),
							array(
								'id'      =&gt; 'instagram',
								'enabled' =&gt; true,
								'source'  =&gt; 'icon',
								'url'     =&gt; '',
								'imageid' =&gt; '',
								'width'   =&gt; 24,
								'icon'    =&gt; 'instagram',
								'label'   =&gt; 'Instagram',
							),
						),
					),
					'footer_social_style'        =&gt; 'filled',
					'footer_social_show_label'   =&gt; false,
					'footer_social_item_spacing' =&gt; array(
						'size' =&gt; 0.3,
						'unit' =&gt; 'em',
					),
					'footer_social_icon_size' =&gt; array(
						'size' =&gt; 1,
						'unit' =&gt; 'em',
					),
					'footer_social_brand' =&gt; '',
					'footer_social_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'footer_social_background' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'footer_social_border_colors' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'footer_social_border' =&gt; array(
						'width' =&gt; 2,
						'unit'  =&gt; 'px',
						'style' =&gt; 'none',
					),
					'footer_social_border_radius' =&gt; array(
						'size' =&gt; 3,
						'unit' =&gt; 'px',
					),
					'footer_social_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'footer_social_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					'footer_social_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'footer_social_vertical_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// Footer Widget 1.
					'footer_widget1_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'footer_widget1_vertical_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// Footer Widget 2.
					'footer_widget2_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'footer_widget2_vertical_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// Footer Widget 3.
					'footer_widget3_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'footer_widget3_vertical_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// Footer Widget 4.
					'footer_widget4_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'footer_widget4_vertical_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// Footer Widget 5.
					'footer_widget5_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'footer_widget5_vertical_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// Footer Widget 6.
					'footer_widget6_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'footer_widget6_vertical_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// Footer HTML.
					'footer_html_content'    =&gt; '{copyright} {year} {site-title} {theme-credit}',
					'footer_html_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'footer_html_link_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'footer_html_link_style'    =&gt; 'normal',
					'footer_html_margin' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; false,
					),
					// Comments.
					'comment_form_before_list'    =&gt; false,
					'comment_form_remove_website' =&gt; false,
					// 404.
					'404_layout'             =&gt; 'normal',
					'404_content_style'      =&gt; 'boxed',
					'404_vertical_padding'   =&gt; 'show',
					'404_background'         =&gt; '',
					'404_content_background' =&gt; '',
					'404_sidebar_id'         =&gt; 'sidebar-primary',
					// Page Layout.
					'page_layout'             =&gt; 'normal',
					'page_content_style'      =&gt; 'boxed',
					'page_vertical_padding'   =&gt; 'show',
					'page_comments'           =&gt; false,
					'page_feature'            =&gt; false,
					'page_feature_position'   =&gt; 'above',
					'page_feature_ratio'      =&gt; '2-3',
					'page_background'         =&gt; '',
					'page_content_background' =&gt; '',
					'page_sidebar_id'         =&gt; 'sidebar-primary',
					'page_title'              =&gt; true,
					'page_title_layout'       =&gt; 'above',
					'page_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 200,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'page_title_inner_layout' =&gt; 'standard',
					'page_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'page_title_featured_image' =&gt; false,
					'page_title_top_border'    =&gt; array(),
					'page_title_bottom_border' =&gt; array(),
					'page_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'page_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'page_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'page_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'page_title_meta_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'page_title_meta_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'page_title_elements'      =&gt; array( 'title', 'breadcrumb', 'meta' ),
					'page_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'page_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					'page_title_element_meta' =&gt; array(
						'id'                     =&gt; 'meta',
						'enabled'                =&gt; false,
						'divider'                =&gt; 'dot',
						'author'                 =&gt; true,
						'authorImage'            =&gt; false,
						'authorEnableLabel'      =&gt; true,
						'authorLabel'            =&gt; '',
						'date'                   =&gt; true,
						'dateTime'               =&gt; false,
						'dateEnableLabel'        =&gt; false,
						'dateLabel'              =&gt; '',
						'dateUpdated'            =&gt; false,
						'dateUpdatedTime'        =&gt; false,
						'dateUpdatedDifferent'   =&gt; false,
						'dateUpdatedEnableLabel' =&gt; false,
						'dateUpdatedLabel'       =&gt; '',
						'comments'               =&gt; false,
						'commentsCondition'      =&gt; false,
					),
					// Post Layout.
					'post_layout'             =&gt; 'narrow',
					'post_content_style'      =&gt; 'boxed',
					'post_vertical_padding'   =&gt; 'show',
					'post_sidebar_id'         =&gt; 'sidebar-primary',
					'post_comments'           =&gt; true,
					'post_comments_date'      =&gt; true,
					'post_footer_area_boxed'  =&gt; false,
					'post_navigation'         =&gt; true,
					'post_related'            =&gt; true,
					'post_related_style'      =&gt; 'wide',
					'post_related_carousel_loop' =&gt; true,
					'post_related_columns'    =&gt; '',
					'post_related_title_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'post_related_background' =&gt; '',
					'post_tags'               =&gt; true,
					'post_author_box'         =&gt; false,
					'post_author_box_style'   =&gt; 'normal',
					'post_author_box_link'    =&gt; true,
					'post_feature'            =&gt; true,
					'post_feature_position'   =&gt; 'behind',
					'post_feature_caption'    =&gt; false,
					'post_feature_ratio'      =&gt; '2-3',
					'post_feature_width'      =&gt; 'wide',
					'post_background'         =&gt; '',
					'post_content_background' =&gt; '',
					'post_title'              =&gt; true,
					'post_title_layout'       =&gt; 'normal',
					'post_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 200,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'post_title_inner_layout' =&gt; 'standard',
					'post_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'post_title_featured_image' =&gt; false,
					'post_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'post_title_top_border'    =&gt; array(),
					'post_title_bottom_border' =&gt; array(),
					'post_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'post_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'post_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'post_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'post_title_meta_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'post_title_meta_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'post_title_category_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'post_title_category_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'post_title_excerpt_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'post_title_excerpt_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'post_title_elements'           =&gt; array( 'breadcrumb', 'categories', 'title', 'meta', 'excerpt' ),
					'post_title_element_categories' =&gt; array(
						'enabled' =&gt; true,
						'style'   =&gt; 'normal',
						'divider' =&gt; 'vline',
					),
					'post_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'post_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					'post_title_element_excerpt' =&gt; array(
						'enabled' =&gt; false,
					),
					'post_title_element_meta' =&gt; array(
						'id'                     =&gt; 'meta',
						'enabled'                =&gt; true,
						'divider'                =&gt; 'dot',
						'author'                 =&gt; true,
						'authorLink'             =&gt; true,
						'authorImage'            =&gt; false,
						'authorImageSize'        =&gt; 25,
						'authorEnableLabel'      =&gt; true,
						'authorLabel'            =&gt; '',
						'date'                   =&gt; true,
						'dateTime'               =&gt; false,
						'dateEnableLabel'        =&gt; false,
						'dateLabel'              =&gt; '',
						'dateUpdated'            =&gt; false,
						'dateUpdatedTime'        =&gt; false,
						'dateUpdatedDifferent'   =&gt; false,
						'dateUpdatedEnableLabel' =&gt; false,
						'dateUpdatedLabel'       =&gt; '',
						'categories'             =&gt; false,
						'categoriesEnableLabel'  =&gt; false,
						'categoriesLabel'        =&gt; '',
						'comments'               =&gt; false,
						'commentsCondition'      =&gt; false,
					),

					// enable_preload css style sheets.
					'enable_preload' =&gt; false,
					'breadcrumb_engine' =&gt; '',
					'breadcrumb_home_icon' =&gt; false,
					// Post Archive.
					'post_archive_title'              =&gt; true,
					'post_archive_home_title'         =&gt; false,
					'post_archive_title_layout'       =&gt; 'above',
					'post_archive_title_inner_layout' =&gt; 'standard',
					'post_archive_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'post_archive_title_elements'      =&gt; array( 'breadcrumb', 'title', 'description' ),
					'post_archive_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'post_archive_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					'post_archive_title_element_description' =&gt; array(
						'enabled' =&gt; true,
					),
					'post_archive_title_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'post_archive_title_align'        =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'post_archive_title_overlay_color'              =&gt; array(
						'color' =&gt; '',
					),
					'post_archive_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'post_archive_title_color' =&gt; array(
						'color' =&gt; '',
					),
					'post_archive_description_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'post_archive_layout'               =&gt; 'normal',
					'post_archive_content_style'        =&gt; 'boxed',
					'post_archive_columns'              =&gt; '3',
					'post_archive_item_image_placement' =&gt; 'above',
					'post_archive_item_vertical_alignment' =&gt; 'top',
					'post_archive_sidebar_id'           =&gt; 'sidebar-primary',
					'post_archive_elements'             =&gt; array( 'feature', 'categories', 'title', 'meta', 'excerpt', 'readmore' ),
					'post_archive_element_categories'   =&gt; array(
						'enabled' =&gt; true,
						'style'   =&gt; 'normal',
						'divider' =&gt; 'vline',
					),
					'post_archive_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'post_archive_element_meta' =&gt; array(
						'id'                     =&gt; 'meta',
						'enabled'                =&gt; true,
						'divider'                =&gt; 'dot',
						'author'                 =&gt; true,
						'authorLink'             =&gt; true,
						'authorImage'            =&gt; false,
						'authorImageSize'        =&gt; 25,
						'authorEnableLabel'      =&gt; true,
						'authorLabel'            =&gt; '',
						'date'                   =&gt; true,
						'dateTime'               =&gt; false,
						'dateEnableLabel'        =&gt; false,
						'dateLabel'              =&gt; '',
						'dateUpdated'            =&gt; false,
						'dateUpdatedTime'        =&gt; false,
						'dateUpdatedDifferent'   =&gt; false,
						'dateUpdatedEnableLabel' =&gt; false,
						'dateUpdatedLabel'       =&gt; '',
						'categories'             =&gt; false,
						'categoriesEnableLabel'  =&gt; false,
						'categoriesLabel'        =&gt; '',
						'comments'               =&gt; false,
						'commentsCondition'      =&gt; false,
					),
					'post_archive_element_feature' =&gt; array(
						'enabled'   =&gt; true,
						'ratio'     =&gt; '2-3',
						'size'      =&gt; 'medium_large',
						'imageLink' =&gt; true,
					),
					'post_archive_element_excerpt' =&gt; array(
						'enabled'     =&gt; true,
						'words'       =&gt; 55,
						'fullContent' =&gt; false,
					),
					'post_archive_element_readmore' =&gt; array(
						'enabled' =&gt; true,
						'label'   =&gt; '',
					),
					'post_archive_item_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; '',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'post_archive_item_category_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'post_archive_item_category_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'post_archive_item_meta_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'post_archive_item_meta_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'post_archive_background'         =&gt; '',
					'post_archive_content_background' =&gt; '',
					'post_archive_column_layout'      =&gt; 'grid',
					// Search Results.
					'search_archive_title'              =&gt; true,
					'search_archive_title_layout'       =&gt; 'normal',
					'search_archive_title_inner_layout' =&gt; 'standard',
					'search_archive_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'search_archive_title_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'search_archive_title_align'        =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'search_archive_title_overlay_color'              =&gt; array(
						'color' =&gt; '',
					),
					'search_archive_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'search_archive_title_color' =&gt; array(
						'color' =&gt; '',
					),
					'search_archive_description_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'search_archive_layout'               =&gt; 'normal',
					'search_archive_content_style'        =&gt; 'boxed',
					'search_archive_columns'              =&gt; '3',
					'search_archive_item_image_placement' =&gt; 'above',
					'search_archive_sidebar_id'           =&gt; 'sidebar-primary',
					'search_archive_elements'             =&gt; array( 'feature', 'categories', 'title', 'meta', 'excerpt', 'readmore' ),
					'search_archive_element_categories'   =&gt; array(
						'enabled' =&gt; true,
						'style'   =&gt; 'normal',
						'divider' =&gt; 'vline',
					),
					'search_archive_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'search_archive_element_meta' =&gt; array(
						'id'                     =&gt; 'meta',
						'enabled'                =&gt; true,
						'divider'                =&gt; 'dot',
						'author'                 =&gt; true,
						'authorLink'             =&gt; true,
						'authorImage'            =&gt; false,
						'authorImageSize'        =&gt; 25,
						'authorEnableLabel'      =&gt; true,
						'authorLabel'            =&gt; '',
						'date'                   =&gt; true,
						'dateTime'               =&gt; false,
						'dateEnableLabel'        =&gt; false,
						'dateLabel'              =&gt; '',
						'dateUpdated'            =&gt; false,
						'dateUpdatedTime'        =&gt; false,
						'dateUpdatedDifferent'   =&gt; false,
						'dateUpdatedEnableLabel' =&gt; false,
						'dateUpdatedLabel'       =&gt; '',
						'categories'             =&gt; false,
						'categoriesEnableLabel'  =&gt; false,
						'categoriesLabel'        =&gt; '',
						'comments'               =&gt; false,
						'commentsCondition'      =&gt; false,
					),
					'search_archive_element_feature' =&gt; array(
						'enabled' =&gt; true,
						'ratio'   =&gt; '2-3',
						'size'    =&gt; 'medium_large',
					),
					'search_archive_element_excerpt' =&gt; array(
						'enabled'     =&gt; true,
						'words'       =&gt; 55,
						'fullContent' =&gt; false,
					),
					'search_archive_element_readmore' =&gt; array(
						'enabled' =&gt; true,
						'label'   =&gt; '',
					),
					'search_archive_item_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'search_archive_item_category_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'search_archive_item_category_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'search_archive_item_meta_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'search_archive_item_meta_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'search_archive_background'         =&gt; '',
					'search_archive_content_background' =&gt; '',
					'search_archive_column_layout'      =&gt; 'grid',
					// Product Archive Controls.
					'product_archive_toggle' =&gt; true,
					'product_archive_show_order' =&gt; true,
					'product_archive_show_results_count' =&gt; true,
					'product_archive_style'  =&gt; 'action-on-hover',
					'product_archive_image_hover_switch' =&gt; 'none',
					'product_archive_button_style'       =&gt; 'text',
					'product_archive_button_align'       =&gt; false,
					'product_archive_title'              =&gt; true,
					'product_archive_title_layout'       =&gt; 'above',
					'product_archive_title_inner_layout' =&gt; 'standard',
					'product_archive_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'product_archive_title_elements'      =&gt; array( 'breadcrumb', 'title', 'description' ),
					'product_archive_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'product_archive_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					'product_archive_title_element_description' =&gt; array(
						'enabled' =&gt; true,
					),
					'product_archive_title_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'product_archive_title_align'        =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'product_archive_title_overlay_color'              =&gt; array(
						'color' =&gt; '',
					),
					'product_archive_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'product_archive_title_heading_font' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'product_archive_title_color' =&gt; array(
						'color' =&gt; '',
					),
					'product_archive_description_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'product_archive_layout'             =&gt; 'normal',
					'product_archive_content_style'      =&gt; 'boxed',
					'product_archive_sidebar_id'         =&gt; 'sidebar-primary',
					'product_archive_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'product_archive_price_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					// Archive Product Button.
					'product_archive_button_typography' =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'product_archive_button_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'product_archive_button_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'product_archive_button_border_colors'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'product_archive_button_border'              =&gt; array(
						'width' =&gt; 2,
						'unit'  =&gt; 'px',
						'style' =&gt; 'none',
					),
					'product_archive_button_shadow' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0.0)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 0,
						'blur'    =&gt; 0,
						'spread'  =&gt; 0,
						'inset'   =&gt; false,
					),
					'product_archive_button_shadow_hover' =&gt; array(
						'color'   =&gt; 'rgba(0,0,0,0)',
						'hOffset' =&gt; 0,
						'vOffset' =&gt; 0,
						'blur'    =&gt; 0,
						'spread'  =&gt; 0,
						'inset'   =&gt; false,
					),
					'product_archive_button_radius' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'px',
						'locked' =&gt; true,
					),
					// Product Controls.
					'custom_quantity'                =&gt; false,
					'product_archive_mobile_columns' =&gt; 'default',
					'product_layout'             =&gt; 'normal',
					'product_content_style'      =&gt; 'unboxed',
					'product_vertical_padding'   =&gt; 'show',
					'product_above_layout'       =&gt; 'breadcrumbs',
					'product_sidebar_id'         =&gt; 'sidebar-primary',
					'product_navigation'         =&gt; false,
					'product_related'            =&gt; true,
					'product_large_cart_button'  =&gt; false,
					'product_additional_weight_dimensions' =&gt; true,
					'product_related_style'      =&gt; 'standard',
					'product_related_columns'    =&gt; '4',
					'product_content_elements'           =&gt; array( 'category', 'title', 'rating', 'price', 'excerpt', 'add_to_cart', 'extras', 'payments', 'product_meta', 'share' ),
					'product_content_element_category' =&gt; array(
						'enabled' =&gt; false,
					),
					'product_content_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'product_content_element_rating' =&gt; array(
						'enabled' =&gt; true,
					),
					'product_content_element_price' =&gt; array(
						'enabled' =&gt; true,
						'show_shipping' =&gt; false,
						'shipping_statement' =&gt; __( '&amp; Free Shipping', 'kadence' ),
					),
					'product_content_element_excerpt' =&gt; array(
						'enabled' =&gt; true,
					),
					'product_content_element_add_to_cart' =&gt; array(
						'enabled'     =&gt; true,
						'button_size' =&gt; '',
					),
					'product_content_element_extras' =&gt; array(
						'enabled'   =&gt; false,
						'title'     =&gt; __( 'Free shipping on orders over $50!', 'kadence' ),
						'feature_1' =&gt; __( 'Satisfaction Guaranteed', 'kadence' ),
						'feature_2' =&gt; __( 'No Hassle Refunds', 'kadence' ),
						'feature_3' =&gt; __( 'Secure Payments', 'kadence' ),
						'feature_4' =&gt; '',
						'feature_5' =&gt; '',
						'feature_1_icon' =&gt; 'shield_check',
						'feature_2_icon' =&gt; 'shield_check',
						'feature_3_icon' =&gt; 'shield_check',
						'feature_4_icon' =&gt; 'shield_check',
						'feature_5_icon' =&gt; 'shield_check',
					),
					'product_content_element_payments' =&gt; array(
						'enabled' =&gt; false,
						'title'     =&gt; __( 'GUARANTEED SAFE CHECKOUT', 'kadence' ),
						'visa' =&gt; true,
						'mastercard' =&gt; true,
						'amex' =&gt; true,
						'discover' =&gt; true,
						'paypal' =&gt; true,
						'applepay' =&gt; false,
						'stripe' =&gt; false,
						'card_color' =&gt; 'inherit',
						'custom_enable_01' =&gt; false,
						'custom_img_01' =&gt; '',
						'custom_id_01' =&gt; '',
						'custom_enable_02' =&gt; false,
						'custom_img_02' =&gt; '',
						'custom_id_02' =&gt; '',
						'custom_enable_03' =&gt; false,
						'custom_img_03' =&gt; '',
						'custom_id_03' =&gt; '',
						'custom_enable_04' =&gt; false,
						'custom_img_04' =&gt; '',
						'custom_id_04' =&gt; '',
						'custom_enable_05' =&gt; false,
						'custom_img_05' =&gt; '',
						'custom_id_05' =&gt; '',
					),
					'product_tab_style'   =&gt; 'normal',
					'variation_direction' =&gt; 'horizontal',
					'product_tab_title'   =&gt; true,
					'product_content_element_product_meta' =&gt; array(
						'enabled' =&gt; true,
					),
					'product_content_element_share' =&gt; array(
						'enabled' =&gt; true,
					),
					'product_background'         =&gt; '',
					'product_content_background' =&gt; '',
					'product_title_elements'           =&gt; array( 'breadcrumb', 'category', 'above_title' ),
					'product_title_element_category' =&gt; array(
						'enabled' =&gt; true,
					),
					'product_title_element_above_title' =&gt; array(
						'enabled' =&gt; false,
					),
					'product_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					'product_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; 200,
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'product_title_inner_layout' =&gt; 'standard',
					'product_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'product_title_overlay_color'              =&gt; array(
						'color' =&gt; '',
					),
					'product_title_top_border'    =&gt; array(),
					'product_title_bottom_border' =&gt; array(),
					'product_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'product_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'product_single_category_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'product_above_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '32',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '1.5',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; '',
					),
					'product_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'product_above_category_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '32',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '1.5',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '700',
						'variant' =&gt; '700',
						'color'   =&gt; 'palette3',
					),
					// Store Notice:
					'woo_store_notice_placement'    =&gt; 'above',
					'woo_store_notice_hide_dismiss' =&gt; false,
					'woo_store_notice_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'woo_store_notice_background'  =&gt; array(
						'color' =&gt; '',
					),
					// Woo Account
					'woo_account_navigation_layout' =&gt; 'right',
					'woo_account_navigation_avatar' =&gt; true,
					// Heroic Knowledge Base.
					'ht_kb_header_search'         =&gt; true,
					'ht_kb_archive_title_layout'  =&gt; 'above',
					'ht_kb_archive_layout'        =&gt; 'normal',
					'ht_kb_archive_content_style' =&gt; 'boxed',
					'ht_kb_title_elements'        =&gt; array( 'breadcrumb', 'title' ),
					'ht_kb_title_element_title'   =&gt; array(
						'enabled' =&gt; true,
					),
					'ht_kb_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; true,
						'show_title' =&gt; true,
					),
					// Header Cart.
					'header_cart_label' =&gt; '',
					'header_cart_show_total' =&gt; true,
					'header_cart_style' =&gt; 'link',
					'header_cart_popup_side' =&gt; 'right',
					'header_cart_icon' =&gt; 'shopping-bag',
					'header_cart_icon_size'   =&gt; array(
						'size' =&gt; '',
						'unit' =&gt; 'em',
					),
					'header_cart_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_cart_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_cart_total_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_cart_total_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_cart_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'header_cart_padding' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'em',
						'locked' =&gt; false,
					),
					// Mobile Header Cart.
					'header_mobile_cart_label' =&gt; '',
					'header_mobile_cart_show_total' =&gt; true,
					'header_mobile_cart_style' =&gt; 'link',
					'header_mobile_cart_popup_side' =&gt; 'right',
					'header_mobile_cart_icon' =&gt; 'shopping-bag',
					'header_mobile_cart_icon_size'   =&gt; array(
						'size' =&gt; '',
						'unit' =&gt; 'em',
					),
					'header_mobile_cart_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_mobile_cart_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_mobile_cart_total_color'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_mobile_cart_total_background'              =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'header_mobile_cart_typography'            =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'header_mobile_cart_padding' =&gt; array(
						'size'   =&gt; array( '', '', '', '' ),
						'unit'   =&gt; 'em',
						'locked' =&gt; false,
					),
					// LifterLMS Course
					'course_syllabus_thumbs'       =&gt; false,
					'course_syllabus_thumbs_ratio'         =&gt; '2-3',
					'course_syllabus_columns'      =&gt; '1',
					'course_syllabus_lesson_style' =&gt; 'standard',
					'course_layout'             =&gt; 'normal',
					'course_content_style'      =&gt; 'boxed',
					'course_vertical_padding'   =&gt; 'show',
					'course_sidebar_id'         =&gt; 'llms_course_widgets_side',
					'course_feature'            =&gt; false,
					'course_feature_position'   =&gt; 'behind',
					'course_feature_ratio'      =&gt; '2-3',
					'course_comments'            =&gt; false,
					'course_background'         =&gt; '',
					'course_content_background' =&gt; '',
					'course_title'              =&gt; true,
					'course_title_layout'       =&gt; 'normal',
					'course_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'course_title_inner_layout' =&gt; 'standard',
					'course_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'course_title_featured_image' =&gt; false,
					'course_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'course_title_top_border'    =&gt; array(),
					'course_title_bottom_border' =&gt; array(),
					'course_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'course_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'course_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'course_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'course_title_elements'           =&gt; array( 'breadcrumb', 'title' ),
					'course_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'course_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					// LifterLMS Lesson
					'lesson_layout'             =&gt; 'right',
					'lesson_content_style'      =&gt; 'boxed',
					'lesson_vertical_padding'   =&gt; 'show',
					'lesson_sidebar_id'         =&gt; 'llms_lesson_widgets_side',
					'lesson_feature'            =&gt; false,
					'lesson_comments'            =&gt; false,
					'lesson_feature_position'   =&gt; 'behind',
					'lesson_feature_ratio'      =&gt; '2-3',
					'lesson_background'         =&gt; '',
					'lesson_content_background' =&gt; '',
					'lesson_title'              =&gt; true,
					'lesson_title_layout'       =&gt; 'normal',
					'lesson_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'lesson_title_inner_layout' =&gt; 'standard',
					'lesson_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'lesson_title_featured_image' =&gt; false,
					'lesson_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'lesson_title_top_border'    =&gt; array(),
					'lesson_title_bottom_border' =&gt; array(),
					'lesson_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'lesson_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'lesson_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'lesson_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'lesson_title_elements'           =&gt; array( 'breadcrumb', 'title' ),
					'lesson_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'lesson_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					// LifterLMS Quiz
					'llms_quiz_layout'             =&gt; 'right',
					'llms_quiz_content_style'      =&gt; 'boxed',
					'llms_quiz_vertical_padding'   =&gt; 'show',
					'llms_quiz_sidebar_id'         =&gt; 'llms_lesson_widgets_side',
					'llms_quiz_title'              =&gt; true,
					'llms_quiz_title_layout'       =&gt; 'normal',
					'llms_quiz_title_inner_layout' =&gt; 'standard',
					'llms_quiz_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// LifterLMS Quiz
					'llms_membership_layout'             =&gt; 'normal',
					'llms_membership_content_style'      =&gt; 'boxed',
					'llms_membership_vertical_padding'   =&gt; 'show',
					'llms_membership_sidebar_id'         =&gt; 'sidebar-primary',
					'llms_membership_title'              =&gt; true,
					'llms_membership_title_layout'       =&gt; 'normal',
					'llms_membership_title_inner_layout' =&gt; 'standard',
					'llms_membership_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					// LifterLMS Archive
					'course_archive_columns'            =&gt; '3',
					'course_archive_title'              =&gt; true,
					'course_archive_title_layout'       =&gt; 'above',
					'course_archive_title_inner_layout' =&gt; 'standard',
					'course_archive_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'course_archive_title_elements'      =&gt; array( 'breadcrumb', 'title', 'description' ),
					'course_archive_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'course_archive_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					'course_archive_title_element_description' =&gt; array(
						'enabled' =&gt; true,
					),
					'course_archive_title_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'course_archive_title_align'        =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'course_archive_title_overlay_color'              =&gt; array(
						'color' =&gt; '',
					),
					'course_archive_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'course_archive_title_color' =&gt; array(
						'color' =&gt; '',
					),
					'course_archive_description_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'course_archive_layout'             =&gt; 'normal',
					'course_archive_content_style'      =&gt; 'boxed',
					'course_archive_sidebar_id'         =&gt; 'sidebar-primary',
					// LifterLMS Member Archive
					'llms_membership_archive_columns'            =&gt; '3',
					'llms_membership_archive_title'              =&gt; true,
					'llms_membership_archive_title_layout'       =&gt; 'above',
					'llms_membership_archive_title_inner_layout' =&gt; 'standard',
					'llms_membership_archive_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'llms_membership_archive_title_elements'      =&gt; array( 'breadcrumb', 'title', 'description' ),
					'llms_membership_archive_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'llms_membership_archive_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					'llms_membership_archive_title_element_description' =&gt; array(
						'enabled' =&gt; true,
					),
					'llms_membership_archive_title_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'llms_membership_archive_title_align'        =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'llms_membership_archive_title_overlay_color'              =&gt; array(
						'color' =&gt; '',
					),
					'llms_membership_archive_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'llms_membership_archive_title_color' =&gt; array(
						'color' =&gt; '',
					),
					'llms_membership_archive_description_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'llms_membership_archive_layout'             =&gt; 'normal',
					'llms_membership_archive_content_style'      =&gt; 'boxed',
					'llms_membership_archive_sidebar_id'         =&gt; 'sidebar-primary',
					// Dashboard Layout
					'llms_dashboard_navigation_layout'             =&gt; 'right',
					'llms_dashboard_archive_columns'              =&gt; '3',
					// Learn Dash Course Grid.
					'learndash_course_grid' =&gt; false,
					'learndash_course_grid_style' =&gt; 'boxed',
					'sfwd-grid_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					// Learn Dash Course Archive.
					'sfwd-courses_archive_columns'            =&gt; '3',
					'sfwd-courses_archive_title'              =&gt; true,
					'sfwd-courses_archive_title_layout'       =&gt; 'above',
					'sfwd-courses_archive_title_inner_layout' =&gt; 'standard',
					'sfwd-courses_archive_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'sfwd-courses_archive_title_elements'      =&gt; array( 'breadcrumb', 'title', 'description' ),
					'sfwd-courses_archive_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'sfwd-courses_archive_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					'sfwd-courses_archive_title_element_description' =&gt; array(
						'enabled' =&gt; true,
					),
					'sfwd-courses_archive_title_background'    =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'sfwd-courses_archive_title_align'        =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'sfwd-courses_archive_title_overlay_color'              =&gt; array(
						'color' =&gt; '',
					),
					'sfwd-courses_archive_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'sfwd-courses_archive_title_color' =&gt; array(
						'color' =&gt; '',
					),
					'sfwd-courses_archive_description_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'sfwd-courses_archive_layout'             =&gt; 'normal',
					'sfwd-courses_archive_content_style'      =&gt; 'boxed',
					'sfwd-courses_archive_sidebar_id'         =&gt; 'sidebar-primary',
					// Learn Dash Course
					'sfwd-courses_layout'             =&gt; 'normal',
					'sfwd-courses_content_style'      =&gt; 'boxed',
					'sfwd-courses_comments'           =&gt; true,
					'sfwd-courses_vertical_padding'   =&gt; 'show',
					'sfwd-courses_sidebar_id'         =&gt; 'sidebar-primary',
					'sfwd-courses_feature'            =&gt; false,
					'sfwd-courses_feature_position'   =&gt; 'behind',
					'sfwd-courses_feature_ratio'      =&gt; '2-3',
					'sfwd-courses_background'         =&gt; '',
					'sfwd-courses_content_background' =&gt; '',
					'sfwd-courses_title'              =&gt; true,
					'sfwd-courses_title_layout'       =&gt; 'normal',
					'sfwd-courses_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'sfwd-courses_title_inner_layout' =&gt; 'standard',
					'sfwd-courses_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'sfwd-courses_title_featured_image' =&gt; false,
					'sfwd-courses_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'sfwd-courses_title_top_border'    =&gt; array(),
					'sfwd-courses_title_bottom_border' =&gt; array(),
					'sfwd-courses_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'sfwd-courses_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'sfwd-courses_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'sfwd-courses_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'sfwd-courses_title_elements'           =&gt; array( 'breadcrumb', 'title' ),
					'sfwd-courses_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'sfwd-courses_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					// Learndash Lessons.
					'sfwd-lessons_layout'             =&gt; 'normal',
					'sfwd-lessons_comments'           =&gt; true,
					'sfwd-lessons_content_style'      =&gt; 'boxed',
					'sfwd-lessons_vertical_padding'   =&gt; 'show',
					'sfwd-lessons_sidebar_id'         =&gt; 'sidebar-primary',
					'sfwd-lessons_feature'            =&gt; false,
					'sfwd-lessons_feature_position'   =&gt; 'behind',
					'sfwd-lessons_feature_ratio'      =&gt; '2-3',
					'sfwd-lessons_background'         =&gt; '',
					'sfwd-lessons_content_background' =&gt; '',
					'sfwd-lessons_title'              =&gt; true,
					'sfwd-lessons_title_layout'       =&gt; 'normal',
					'sfwd-lessons_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'sfwd-lessons_title_inner_layout' =&gt; 'standard',
					'sfwd-lessons_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'sfwd-lessons_title_featured_image' =&gt; false,
					'sfwd-lessons_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'sfwd-lessons_title_top_border'    =&gt; array(),
					'sfwd-lessons_title_bottom_border' =&gt; array(),
					'sfwd-lessons_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'sfwd-lessons_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'sfwd-lessons_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'sfwd-lessons_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'sfwd-lessons_title_elements'           =&gt; array( 'breadcrumb', 'title' ),
					'sfwd-lessons_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'sfwd-lessons_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					// Learndash Quiz.
					'sfwd-quiz_layout'             =&gt; 'normal',
					'sfwd-quiz_comments'           =&gt; true,
					'sfwd-quiz_content_style'      =&gt; 'boxed',
					'sfwd-quiz_vertical_padding'   =&gt; 'show',
					'sfwd-quiz_sidebar_id'         =&gt; 'sidebar-primary',
					'sfwd-quiz_feature'            =&gt; false,
					'sfwd-quiz_feature_position'   =&gt; 'behind',
					'sfwd-quiz_feature_ratio'      =&gt; '2-3',
					'sfwd-quiz_background'         =&gt; '',
					'sfwd-quiz_content_background' =&gt; '',
					'sfwd-quiz_title'              =&gt; true,
					'sfwd-quiz_title_layout'       =&gt; 'normal',
					'sfwd-quiz_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'sfwd-quiz_title_inner_layout' =&gt; 'standard',
					'sfwd-quiz_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'sfwd-quiz_title_featured_image' =&gt; false,
					'sfwd-quiz_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'sfwd-quiz_title_top_border'    =&gt; array(),
					'sfwd-quiz_title_bottom_border' =&gt; array(),
					'sfwd-quiz_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'sfwd-quiz_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'sfwd-quiz_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'sfwd-quiz_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'sfwd-quiz_title_elements'           =&gt; array( 'breadcrumb', 'title' ),
					'sfwd-quiz_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'sfwd-quiz_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					// Learndash Topics.
					'sfwd-topic_layout'             =&gt; 'normal',
					'sfwd-topic_content_style'      =&gt; 'boxed',
					'sfwd-topic_vertical_padding'   =&gt; 'show',
					'sfwd-topic_comments'           =&gt; true,
					'sfwd-topic_sidebar_id'         =&gt; 'sidebar-primary',
					'sfwd-topic_feature'            =&gt; false,
					'sfwd-topic_feature_position'   =&gt; 'behind',
					'sfwd-topic_feature_ratio'      =&gt; '2-3',
					'sfwd-topic_background'         =&gt; '',
					'sfwd-topic_content_background' =&gt; '',
					'sfwd-topic_title'              =&gt; true,
					'sfwd-topic_title_layout'       =&gt; 'normal',
					'sfwd-topic_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'sfwd-topic_title_inner_layout' =&gt; 'standard',
					'sfwd-topic_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'sfwd-topic_title_featured_image' =&gt; false,
					'sfwd-topic_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'sfwd-topic_title_top_border'    =&gt; array(),
					'sfwd-topic_title_bottom_border' =&gt; array(),
					'sfwd-topic_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'sfwd-topic_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'sfwd-topic_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'sfwd-topic_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'sfwd-topic_title_elements'           =&gt; array( 'breadcrumb', 'title' ),
					'sfwd-topic_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'sfwd-topic_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					// Learn Dash Groups
					'groups_layout'             =&gt; 'normal',
					'groups_content_style'      =&gt; 'boxed',
					'groups_vertical_padding'   =&gt; 'show',
					'groups_sidebar_id'         =&gt; 'sidebar-primary',
					'groups_feature'            =&gt; false,
					'groups_feature_position'   =&gt; 'behind',
					'groups_feature_ratio'      =&gt; '2-3',
					'groups_background'         =&gt; '',
					'groups_content_background' =&gt; '',
					'groups_title'              =&gt; true,
					'groups_title_layout'       =&gt; 'normal',
					'groups_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'groups_title_inner_layout' =&gt; 'standard',
					'groups_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'groups_title_featured_image' =&gt; false,
					'groups_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'groups_title_top_border'    =&gt; array(),
					'groups_title_bottom_border' =&gt; array(),
					'groups_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'groups_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'groups_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'groups_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'groups_title_elements'           =&gt; array( 'breadcrumb', 'title' ),
					'groups_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'groups_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					// Learn Dash essays
					'sfwd-essays_layout'             =&gt; 'normal',
					'sfwd-essays_content_style'      =&gt; 'boxed',
					'sfwd-essays_vertical_padding'   =&gt; 'show',
					'sfwd-essays_sidebar_id'         =&gt; 'sidebar-primary',
					'sfwd-essays_comments'           =&gt; true,
					'sfwd-essays_feature'            =&gt; false,
					'sfwd-essays_feature_position'   =&gt; 'behind',
					'sfwd-essays_feature_ratio'      =&gt; '2-3',
					'sfwd-essays_background'         =&gt; '',
					'sfwd-essays_content_background' =&gt; '',
					'sfwd-essays_title'              =&gt; true,
					'sfwd-essays_title_layout'       =&gt; 'normal',
					'sfwd-essays_title_height'       =&gt; array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					),
					'sfwd-essays_title_inner_layout' =&gt; 'standard',
					'sfwd-essays_title_background'   =&gt; array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					),
					'sfwd-essays_title_featured_image' =&gt; false,
					'sfwd-essays_title_overlay_color'  =&gt; array(
						'color' =&gt; '',
					),
					'sfwd-essays_title_top_border'    =&gt; array(),
					'sfwd-essays_title_bottom_border' =&gt; array(),
					'sfwd-essays_title_align'         =&gt; array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					),
					'sfwd-essays_title_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					),
					'sfwd-essays_title_breadcrumb_color' =&gt; array(
						'color' =&gt; '',
						'hover' =&gt; '',
					),
					'sfwd-essays_title_breadcrumb_font'   =&gt; array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					),
					'sfwd-essays_title_elements'           =&gt; array( 'breadcrumb', 'title' ),
					'sfwd-essays_title_element_title' =&gt; array(
						'enabled' =&gt; true,
					),
					'sfwd-essays_title_element_breadcrumb' =&gt; array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					),
					// Learndash Assignment.
					'sfwd-assignment_comments' =&gt; true,
					// MISC
					'ie11_basic_support' =&gt; false,
				)
			);
		}
		return self::$default_options;
	}
	/**
	 * Get options from database
	 */
	public function get_options() {
		if ( is_null( self::$options ) ) {
			$options       = get_option( $this-&gt;get_option_name() );
			self::$options = wp_parse_args( $options, self::defaults() );
		}
		return self::$options;
	}
	/**
	 * Get options from database
	 */
	public function get_custom_options( $key ) {
		if ( is_customize_preview() ) {
			$options       = get_option( $key );
			return wp_parse_args( $options, self::defaults() );
		}
		if ( ! isset( self::$custom_options[ $key ] ) ) {
			$options = get_option( $key );
			self::$custom_options[ $key ] = wp_parse_args( $options, self::defaults() );
		}
		return self::$custom_options[ $key ];
	}

	/**
	 * Add Custom Post type Defaults later in WordPress Load.
	 */
	public function add_default_options() {
		if ( is_null( self::$cpt_options ) ) {
			$add_options = array();
			$all_post_types    = kadence()-&gt;get_post_types_objects();
			$extras_post_types = array();
			$add_extras        = false;
			foreach ( $all_post_types as $post_type_item ) {
				$post_type_name  = $post_type_item-&gt;name;
				$post_type_label = $post_type_item-&gt;label;
				$ignore_type     = kadence()-&gt;get_post_types_to_ignore();
				if ( ! in_array( $post_type_name, $ignore_type, true ) ) {
					// Single Items.
					$add_options[ $post_type_name . '_feature' ] = false;
					$add_options[ $post_type_name . '_feature_position' ] = 'behind';
					$add_options[ $post_type_name . '_feature_ratio' ] = '2-3';
					$add_options[ $post_type_name . '_background' ] = '';
					$add_options[ $post_type_name . '_content_background' ] = '';
					$add_options[ $post_type_name . '_title' ] = true;
					$add_options[ $post_type_name . '_title_layout' ] = 'normal';
					$add_options[ $post_type_name . '_title_height' ] = array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					);
					$add_options[ $post_type_name . '_title_inner_layout' ] = 'standard';
					$add_options[ $post_type_name . '_title_background' ] = array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					);
					$add_options[ $post_type_name . '_title_featured_image' ] = false;
					$add_options[ $post_type_name . '_title_overlay_color' ] = array(
						'color' =&gt; '',
					);
					$add_options[ $post_type_name . '_title_top_border' ] = array();
					$add_options[ $post_type_name . '_title_bottom_border' ] = array();
					$add_options[ $post_type_name . '_title_align' ] = array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					);
					$add_options[ $post_type_name . '_title_font' ] = array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
						'color'   =&gt; '',
					);
					$add_options[ $post_type_name . '_title_breadcrumb_color' ] = array(
						'color' =&gt; '',
						'hover' =&gt; '',
					);
					$add_options[ $post_type_name . '_title_breadcrumb_font' ] = array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					);
					$add_options[ $post_type_name . '_title_meta_color' ] = array(
						'color' =&gt; '',
						'hover' =&gt; '',
					);
					$add_options[ $post_type_name . '_title_meta_font' ] = array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					);
					$add_options[ $post_type_name . '_title_elements' ] = array( 'categories', 'title', 'breadcrumb', 'meta' );
					$add_options[ $post_type_name . '_title_element_categories' ] = array(
						'enabled'    =&gt; false,
						'style'      =&gt; 'normal',
						'divider'    =&gt; 'vline',
						'taxonomies' =&gt; '',
					);
					$add_options[ $post_type_name . '_title_element_title' ] = array(
						'enabled' =&gt; true,
					);
					$add_options[ $post_type_name . '_title_element_breadcrumb' ] = array(
						'enabled'    =&gt; false,
						'show_title' =&gt; true,
					);
					$add_options[ $post_type_name . '_title_element_meta' ] = array(
						'id'                     =&gt; 'meta',
						'enabled'                =&gt; false,
						'divider'                =&gt; 'dot',
						'author'                 =&gt; true,
						'authorImage'            =&gt; false,
						'authorEnableLabel'      =&gt; true,
						'authorLabel'            =&gt; '',
						'date'                   =&gt; true,
						'dateTime'               =&gt; false,
						'dateEnableLabel'        =&gt; false,
						'dateLabel'              =&gt; '',
						'dateUpdated'            =&gt; false,
						'dateUpdatedTime'        =&gt; false,
						'dateUpdatedDifferent'   =&gt; false,
						'dateUpdatedEnableLabel' =&gt; false,
						'dateUpdatedLabel'       =&gt; '',
						'comments'               =&gt; false,
						'commentsCondition'      =&gt; false,
					);
					$add_options[ $post_type_name . '_archive_title_height' ] = array(
						'size' =&gt; array(
							'mobile'  =&gt; '',
							'tablet'  =&gt; '',
							'desktop' =&gt; '',
						),
						'unit' =&gt; array(
							'mobile'  =&gt; 'px',
							'tablet'  =&gt; 'px',
							'desktop' =&gt; 'px',
						),
					);
					$add_options[ $post_type_name . '_archive_title_elements' ] = array( 'breadcrumb', 'title', 'description' );
					$add_options[ $post_type_name . '_archive_title_element_title' ] = array(
						'enabled' =&gt; true,
					);
					$add_options[ $post_type_name . '_archive_title_element_breadcrumb' ] = array(
						'enabled' =&gt; false,
						'show_title' =&gt; true,
					);
					$add_options[ $post_type_name . '_archive_title_element_description' ] = array(
						'enabled' =&gt; true,
					);
					$add_options[ $post_type_name . '_archive_title_background' ] = array(
						'desktop' =&gt; array(
							'color' =&gt; '',
						),
					);
					$add_options[ $post_type_name . '_archive_title_align' ] = array(
						'mobile'  =&gt; '',
						'tablet'  =&gt; '',
						'desktop' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_title_overlay_color' ] = array(
						'color' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_title_breadcrumb_color' ] = array(
						'color' =&gt; '',
						'hover' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_title_color' ] = array(
						'color' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_description_color' ] = array(
						'color' =&gt; '',
						'hover' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_layout' ] = 'normal';
					$add_options[ $post_type_name . '_archive_content_style' ] = 'boxed';
					$add_options[ $post_type_name . '_archive_columns' ] = '3';
					$add_options[ $post_type_name . '_archive_item_image_placement' ] = 'above';
					$add_options[ $post_type_name . '_archive_sidebar_id' ] = 'sidebar-primary';
					$add_options[ $post_type_name . '_archive_elements' ] = array( 'feature', 'categories', 'title', 'meta', 'excerpt', 'readmore' );
					$add_options[ $post_type_name . '_archive_element_categories' ] = array(
						'enabled' =&gt; false,
						'style'   =&gt; 'normal',
						'divider' =&gt; 'vline',
						'taxonomy' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_element_title' ] = array(
						'enabled' =&gt; true,
					);
					$add_options[ $post_type_name . '_archive_element_meta' ] = array(
						'id'                     =&gt; 'meta',
						'enabled'                =&gt; false,
						'divider'                =&gt; 'dot',
						'author'                 =&gt; true,
						'authorLink'             =&gt; true,
						'authorImage'            =&gt; false,
						'authorImageSize'        =&gt; 25,
						'authorEnableLabel'      =&gt; true,
						'authorLabel'            =&gt; '',
						'date'                   =&gt; true,
						'dateTime'               =&gt; false,
						'dateEnableLabel'        =&gt; false,
						'dateLabel'              =&gt; '',
						'dateUpdated'            =&gt; false,
						'dateUpdatedTime'        =&gt; false,
						'dateUpdatedDifferent'   =&gt; false,
						'dateUpdatedEnableLabel' =&gt; false,
						'dateUpdatedLabel'       =&gt; '',
						'categories'             =&gt; false,
						'categoriesEnableLabel'  =&gt; false,
						'categoriesLabel'        =&gt; '',
						'comments'               =&gt; false,
						'commentsCondition'      =&gt; false,
					);
					$add_options[ $post_type_name . '_archive_element_feature' ] = array(
						'enabled' =&gt; true,
						'ratio'   =&gt; '2-3',
						'size'    =&gt; 'medium_large',
					);
					$add_options[ $post_type_name . '_archive_element_excerpt' ] = array(
						'enabled'     =&gt; true,
						'words'       =&gt; 55,
						'fullContent' =&gt; false,
					);
					$add_options[ $post_type_name . '_archive_element_readmore' ] = array(
						'enabled' =&gt; true,
						'label' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_item_title_font' ] = array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; '',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_item_meta_color' ] = array(
						'color' =&gt; '',
						'hover' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_item_meta_font' ] = array(
						'size' =&gt; array(
							'desktop' =&gt; '',
						),
						'lineHeight' =&gt; array(
							'desktop' =&gt; '',
						),
						'family'  =&gt; 'inherit',
						'google'  =&gt; false,
						'weight'  =&gt; '',
						'variant' =&gt; '',
					);
					$add_options[ $post_type_name . '_archive_background' ] = '';
					$add_options[ $post_type_name . '_archive_content_background' ] = '';
				}
			}
			self::$cpt_options = $add_options;
			self::$options = wp_parse_args( self::get_options(), self::$cpt_options );
			self::$default_options = wp_parse_args( self::defaults(), self::$cpt_options );
		}
	}

	/**
	 * Get Default for option.
	 *
	 * @param string $key option key.
	 */
	public function default( $key, $backup = null ) {

		$defaults = self::defaults();
		$value    = ( isset( $defaults[ $key ] ) &amp;&amp; '' !== $defaults[ $key ] ) ? $defaults[ $key ] : null;
		if ( is_null( $value ) ) {
			$value = $backup;
		}

		return $value;
	}

	/**
	 * Get Option
	 *
	 * @param string $key option key.
	 * @param mix    $default option default.
	 */
	public function option( $key, $default = '' ) {
		$defaults = self::defaults();
		if ( ! empty( $opt_name_key = apply_filters( 'kadence_settings_key_custom_mapping', '', $key ) ) ) {
			$options = self::get_custom_options( $opt_name_key );
			$value   = ( isset( $options[ $key ] ) &amp;&amp; '' !== $options[ $key ] ) ? $options[ $key ] : null;
		} else {
			if ( 'option' === $this-&gt;get_option_type() ) {
				$options = self::get_options();
				$value   = ( isset( $options[ $key ] ) &amp;&amp; '' !== $options[ $key ] ) ? $options[ $key ] : null;
			} else {
				$value = get_theme_mod( $key, null );
			}
		}
		// Fallback to defaults array.
		if ( is_null( $value ) || ( isset( $value ) &amp;&amp; '' === $value ) ) {
			$value = ( isset( $defaults[ $key ] ) &amp;&amp; '' !== $defaults[ $key ] ) ? $defaults[ $key ] : null;
		}
		// Fallback to default.
		if ( is_null( $value ) || ( isset( $value ) &amp;&amp; '' === $value ) ) {
			$value = $default;
		}

		return $value;
	}

	/**
	 * Get setting of option array.
	 *
	 * @param string $key option key.
	 * @param string $first_key option array first key.
	 * @param string $second_key option array second key.
	 * @param string $third_key option array third key.
	 */
	public function sub_option( $key, $first_key = '', $second_key = '', $third_key = '' ) {
		$value = $this-&gt;option( $key );
		if ( ! empty( $first_key ) ) {
			if ( isset( $value[ $first_key ] ) &amp;&amp; ( ! empty( $value[ $first_key ] ) || 0 === $value[ $first_key ] ) ) {
				$value = $value[ $first_key ];
			} else {
				$value = null;
			}
			if ( ! empty( $second_key ) ) {
				if ( isset( $value[ $second_key ] ) &amp;&amp; ( ! empty( $value[ $second_key ] ) || 0 === $value[ $second_key ] ) ) {
					$value = $value[ $second_key ];
				} else {
					$value = null;
				}
				if ( ! empty( $third_key ) ) {
					if ( isset( $value[ $third_key ] ) &amp;&amp;( ! empty( $value[ $third_key ] ) || 0 === $value[ $third_key ] ) ) {
						$value = $value[ $third_key ];
					} else {
						$value = null;
					}
				}
			}
		}

		return $value;
	}
	/**
	 * Get Palette
	 */
	public function get_palette_for_customizer() {
		$palette = get_option( 'kadence_global_palette' );
		if ( $palette &amp;&amp; ! empty( $palette ) ) {
			$palette = json_decode( $palette, true );
			if ( isset( $palette['palette'] ) &amp;&amp; is_array( $palette['palette'] ) ) {
				if ( isset( $palette['active'] ) &amp;&amp; ! empty( $palette['active'] ) ) {
					$palette = json_encode( $palette );
				} else {
					$palette = self::palette_defaults();
				}
			} else {
				$palette = self::palette_defaults();
			}
		} else {
			$palette = self::palette_defaults();
		}
		return $palette;
	}
	/**
	 * Get Palette
	 */
	public function get_palette() {
		$palette = get_option( 'kadence_global_palette' );
		if ( ! $palette || empty( $palette ) ) {
			$palette = self::palette_defaults();
		}
		return $palette;
	}
	/**
	 * Get Palette
	 */
	public function get_default_palette() {
		return self::palette_defaults();
	}
	/**
	 * Set default theme option values
	 *
	 * @return default values of the theme.
	 */
	public static function palette_defaults() {
		// Don't store defaults until after init.
		if ( is_null( self::$default_palette ) ) {
			self::$default_palette = apply_filters( 'kadence_global_palette_defaults', '{"palette":[{"color":"#2B6CB0","slug":"palette1","name":"Palette Color 1"},{"color":"#215387","slug":"palette2","name":"Palette Color 2"},{"color":"#1A202C","slug":"palette3","name":"Palette Color 3"},{"color":"#2D3748","slug":"palette4","name":"Palette Color 4"},{"color":"#4A5568","slug":"palette5","name":"Palette Color 5"},{"color":"#718096","slug":"palette6","name":"Palette Color 6"},{"color":"#EDF2F7","slug":"palette7","name":"Palette Color 7"},{"color":"#F7FAFC","slug":"palette8","name":"Palette Color 8"},{"color":"#ffffff","slug":"palette9","name":"Palette Color 9"}],"second-palette":[{"color":"#2B6CB0","slug":"palette1","name":"Palette Color 1"},{"color":"#215387","slug":"palette2","name":"Palette Color 2"},{"color":"#1A202C","slug":"palette3","name":"Palette Color 3"},{"color":"#2D3748","slug":"palette4","name":"Palette Color 4"},{"color":"#4A5568","slug":"palette5","name":"Palette Color 5"},{"color":"#718096","slug":"palette6","name":"Palette Color 6"},{"color":"#EDF2F7","slug":"palette7","name":"Palette Color 7"},{"color":"#F7FAFC","slug":"palette8","name":"Palette Color 8"},{"color":"#ffffff","slug":"palette9","name":"Palette Color 9"}],"third-palette":[{"color":"#2B6CB0","slug":"palette1","name":"Palette Color 1"},{"color":"#215387","slug":"palette2","name":"Palette Color 2"},{"color":"#1A202C","slug":"palette3","name":"Palette Color 3"},{"color":"#2D3748","slug":"palette4","name":"Palette Color 4"},{"color":"#4A5568","slug":"palette5","name":"Palette Color 5"},{"color":"#718096","slug":"palette6","name":"Palette Color 6"},{"color":"#EDF2F7","slug":"palette7","name":"Palette Color 7"},{"color":"#F7FAFC","slug":"palette8","name":"Palette Color 8"},{"color":"#ffffff","slug":"palette9","name":"Palette Color 9"}],"active":"palette"}' );
		}
		return self::$default_palette;
	}
	/**
	 * Get Palette Option.
	 *
	 * @param string $subkey option subkey.
	 * @param string $active_palette the active palette.
	 */
	public function palette_option( $subkey, $active_palette = null ) {
		if ( is_null( self::$palette ) ) {
			$palette = get_option( 'kadence_global_palette' );
			if ( $palette &amp;&amp; ! empty( $palette ) ) {
				self::$palette = json_decode( $palette, true );
			} else {
				self::$palette = json_decode( self::palette_defaults(), true );
			}
		}
		$active = ! empty( $active_palette ) ? $active_palette : apply_filters( 'kadence_active_palette', ( self::$palette &amp;&amp; is_array( self::$palette ) &amp;&amp; isset( self::$palette['active'] ) &amp;&amp; ! empty( self::$palette['active'] ) ? self::$palette['active'] : 'palette' ) );
		$value = '';
		if ( self::$palette &amp;&amp; is_array( self::$palette ) &amp;&amp; isset( self::$palette[ $active ] ) &amp;&amp; is_array( self::$palette[ $active ] ) ) {
			$palette_number = (int) substr( $subkey, -1 ) - 1;
			$palette_item   = ( isset( self::$palette[ $active ][ $palette_number ] ) &amp;&amp; is_array( self::$palette[ $active ][ $palette_number ] ) ? self::$palette[ $active ][ $palette_number ] : array() );
			if ( isset( $palette_item['slug'] ) &amp;&amp; $palette_item['slug'] === $subkey ) {
				$value = ( isset( $palette_item['color'] ) &amp;&amp; ! empty( $palette_item['color'] ) ? $palette_item['color'] : '' );
			}
		}

		return apply_filters( 'kadence_palette_option', $value, $subkey );
	}

	/**
	 * Get Customizer Sidebar Options
	 *
	 * @access public
	 * @return array
	 */
	public function sidebar_options() {
		// Don't store defaults until after init.
		if ( is_null( self::$sidebars ) ) {
			$sidebars = array();
			$nonsidebars = array(
				'header1',
				'header2',
				'footer1',
				'footer2',
				'footer3',
				'footer4',
				'footer5',
				'footer6',
			);
			foreach ( $GLOBALS['wp_registered_sidebars'] as $sidebar ) {
				if ( ! in_array( $sidebar['id'], $nonsidebars, true ) ) {
					$sidebars[ $sidebar['id'] ] = array( 'name' =&gt; $sidebar['name'] );
				}
			}
			self::$sidebars = $sidebars;
		}
		return self::$sidebars;
	}
}
