Version 1.0.1
    Fixed:
        - Update plugins to their latest versions
        - Compatibility with Elementor 2.7.3
        - Compatibility with Slider Revolution 6.1.2
        - Improve theme styles

Version 1.0.0
Plugin TRX Addons has been edited
- \css\trx_addons.scss
	$xl_grid_gap: 50px; => $xl_grid_gap: 30px;
	$lg_grid_gap: 50px; => $lg_grid_gap: 30px;
	$xs_page: 280px; => $lg_grid_gap: 300px;
	add @import "../components/widgets/video/_video.scss";

- \components\cpt\layouts\layouts_elementor.php
  if ( !function_exists( 'trx_addons_cpt_layouts_elm_load_scripts_front' ) ) {
	add_action("wp_enqueue_scripts", 'trx_addons_cpt_layouts_elm_load_scripts_front');
		function trx_addons_cpt_layouts_elm_load_scripts_front() {
			if ( trx_addons_exists_elementor() ) {
				global $TRX_ADDONS_STORAGE;
				$TRX_ADDONS_STORAGE['cur_page_built_with_elementor'] = is_singular() && \Elementor\Plugin::$instance->db->is_built_with_elementor( get_the_ID() );
				if ( apply_filters('trx_addons_filter_force_load_elementor_styles', !$TRX_ADDONS_STORAGE['cur_page_built_with_elementor']) ) {
					\Elementor\Plugin::$instance->frontend->register_styles();
					\Elementor\Plugin::$instance->frontend->enqueue_styles();
					\Elementor\Plugin::$instance->frontend->register_scripts();
					\Elementor\Plugin::$instance->frontend->enqueue_scripts();
					\Elementor\Plugin::$instance->frontend->print_fonts_links();
				}
			}
		}
	}

	=>

	if ( !function_exists( 'trx_addons_cpt_layouts_elm_load_styles_front' ) ) {
    add_action("wp_enqueue_scripts", 'trx_addons_cpt_layouts_elm_load_styles_front');
    function trx_addons_cpt_layouts_elm_load_styles_front() {
        if ( trx_addons_exists_elementor() ) {
            global $TRX_ADDONS_STORAGE;
            $TRX_ADDONS_STORAGE['cur_page_built_with_elementor'] = is_singular() && \Elementor\Plugin::instance()->db->is_built_with_elementor( get_the_ID() );
            $TRX_ADDONS_STORAGE['force_load_elementor_styles'] = apply_filters('trx_addons_filter_force_load_elementor_styles', !$TRX_ADDONS_STORAGE['cur_page_built_with_elementor'] );
            if ( $TRX_ADDONS_STORAGE['force_load_elementor_styles'] ) {
                \Elementor\Plugin::instance()->frontend->enqueue_styles();
                \Elementor\Plugin::instance()->frontend->print_fonts_links();
            }
        }
    }
}
if ( !function_exists( 'trx_addons_cpt_layouts_elm_load_scripts_front' ) ) {
    add_action("wp_footer", 'trx_addons_cpt_layouts_elm_load_scripts_front');
    function trx_addons_cpt_layouts_elm_load_scripts_front() {
        if ( trx_addons_exists_elementor() ) {
            global $TRX_ADDONS_STORAGE;
            if ( !empty($TRX_ADDONS_STORAGE['force_load_elementor_styles']) ) {
                \Elementor\Plugin::instance()->frontend->enqueue_scripts();
            }
        }
    }
}