/home/blackyak/www/wordpress/wp-content/themes/travivu/includes/elementor/hooks.php
<?php
function travivu_elementor_load_css_header(){
	if (!class_exists( 'Elementor\Core\Files\CSS\Post')){
		return;
	}
   
	$header_id = apply_filters('travivu_get_header_layout', null);
   $footer_id = apply_filters('travivu_get_footer_layout', null);

	if($header_id){
		$css_file = new Elementor\Core\Files\CSS\Post($header_id);
		$css_file->enqueue();
	}
   if($footer_id){
      $css_file = new Elementor\Core\Files\CSS\Post($footer_id);
      $css_file->enqueue();
   }
}

add_action('wp_enqueue_scripts', 'travivu_elementor_load_css_header', 500);