/*
Theme Name:   buscadorchild
Description:  buscadorchild
Author:       admin
Author URL:   https://demo.buscadorprofesional.interdigital.biz
Template:     astra
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  buscadorchild
*/

/* Escribe aquí tu propia hoja de estilos personal */

/* agregar nuevo icono de Twitter */

add_filter( 'elementor/widget/render_content', function($output){
	// replace the
	$re = '/(<svg[^>]+class="[^"]*e-fab-twitter".*?<path\s+d=")(.+?)(".+?<\/svg>)/s';
	$output = preg_replace_callback($re, function($matches){
		$path = "M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z";
		return $matches[1].$path.$matches[3];
	}, $output);
	return $output;
}, 10, 2 );