Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php if ( ! defined( 'ABSPATH' ) ) {
	die( 'Direct access forbidden.' );
}

/**
 * Overlay helper methods.
 *
 * Class ET_Builder_Module_Helper_Overlay
 */
class ET_Builder_Module_Helper_Overlay {
	/**
	 * Get an overlay html tag's attributes.
	 *
	 * @since 3.29
	 *
	 * @param array $args
	 *
	 * @return array
	 */
	public static function get_attributes( $args ) {
		$attributes = array();

		if ( ! empty( $args['icon'] ) ) {
			$attributes['data-icon'] = et_pb_extended_process_font_icon( $args['icon'] );
		}

		if ( ! empty( $args['icon_tablet'] ) ) {
			$attributes['data-icon-tablet'] = et_pb_extended_process_font_icon( $args['icon_tablet'] );
		}

		if ( ! empty( $args['icon_phone'] ) ) {
			$attributes['data-icon-phone'] = et_pb_extended_process_font_icon( $args['icon_phone'] );
		}

		if ( ! empty( $args['icon_sticky'] ) ) {
			$attributes['data-icon-sticky'] = et_pb_extended_process_font_icon( $args['icon_sticky'] );
		}

		return $attributes;
	}

	/**
	 * Render an overlay html tag's attributes.
	 *
	 * @since 3.29
	 *
	 * @param array $args
	 *
	 * @return string
	 */
	public static function render_attributes( $args ) {
		$attributes = self::get_attributes( $args );
		$html       = array();

		foreach ( $attributes as $attribute => $value ) {
			$html[] = sprintf(
				'%1$s="%2$s"',
				et_core_intentionally_unescaped( $attribute, 'fixed_string' ),
				et_core_esc_previously( $value )
			);
		}

		return implode( ' ', $html );
	}

	/**
	 * Render an overlay html tag.
	 *
	 * @since 3.29
	 *
	 * @param array $args
	 *
	 * @return string
	 */
	public static function render( $args ) {
		$attributes = et_core_esc_previously( self::render_attributes( $args )