{% for item in module.icon_box_item_ibox_s3 %}
	{% if item.animation.enable_disable_animation %}
		<!-- HTML to show when checked -->
	{% endif %}
	
	
	
	
	{% if item.animation.enable_disable_duration %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="animation.duration" value="" %}
	
	{% icon
		name=""
		style=""
		unicode=""
		icon_set=""
	%}
	{% if item.ibox_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.ibox_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.ibox_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.ibox_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="ibox_title" value="" %}
	{% if item.ibox_enable_disable_description %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_rich_text field="ibox_description" value="" %}
	{% if item.enable_disable_box_link %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% set href = item.box_link.url.href %}
	{% if item.box_link.url.type is equalto "EMAIL_ADDRESS" %}
		{% set href = "mailto:" + href %}
	{% endif %}
	<a href=""
		{% if item.box_link.open_in_new_tab %}target="_blank"{% endif %}
		{% if item.box_link.rel %}rel=""{% endif %}
		>
		Link text
	</a>
	{% if item.show_cta_ %}
		<!-- HTML to show when checked -->
	{% endif %}
{% endfor %}