File: //proc/self/cwd/wp-content/plugins/elementskit/widgets/hotspot/style/tultip_style.php
<div class="ekit-location elementor-repeater-item-<?php echo esc_attr( $location[ '_id' ] ); ?> <?php echo esc_attr($ekit_hotspot_tigger_on_hover_or_click == 'yes' ? 'ekit-location-on-hover' : 'ekit-location-on-hover click'); ?> <?php echo esc_attr($ekit_hotspot_all_time_show_hide == 'yes' ? 'ekit-all-activated active' : ''); ?> <?php echo ($ekit_hotspot_all_time_show_hide != 'yes' && $location['ekit_hotspot_active'] == 'yes') ? 'active' : ''; ?>">
<div class="ekit-location_outer">
<div class="<?php echo esc_attr($ekit_hotspot_location_wraper_image_position); ?> ekit-location_inner">
<?php
if($location['ekit_hotspot_logo']['id'] !='') :
?>
<div class="ekit_hotspot_image">
<?php
echo \Elementskit_Lite\Utils::get_attachment_image_html($location, 'ekit_hotspot_logo', 'full' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
?>
</div>
<?php endif;
if($location['ekit_hotspot_address'] || $location['ekit_hotspot_title']) :
?>
<div class='media-body'>
<?php if ($location['ekit_hotspot_title'] != '') : ?>
<h3 class="ekit-hotspot-title"><?php echo esc_html($location['ekit_hotspot_title'], 'elementskit-lite')?></h3>
<?php endif; ?>
<?php if ($location['ekit_hotspot_address'] != '') : ?>
<div class="ekit-location-des">
<?php echo do_shortcode( \ElementsKit_Lite\Utils::kses( $location['ekit_hotspot_address'] ) ); ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
</div>
<div class="ekit-location_indicator">
<?php if ($ekit_hotspot_show_glow == 'yes') { ?>
<div class="ekit_hotspot_pulse_1"></div>
<div class="ekit_hotspot_pulse_2"></div>
<?php }; ?>
<?php if ($ekit_hotspot_show_caret == 'yes') { ?>
<div class="ekit_hotspot_arrow"></div>
<?php } ?>
</div>
</div>