{% for item in module.content_module.tab_column_repeater %}
	{% if item.swap_column %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="title_text" value="" %}
	{% inline_rich_text field="right_side_content" value="" %}
	{% for item2 in item.cta_group %}
		
		
		{% inline_text field="button_text" value="" %}
		{% set href = item2.btn_link.url.href %}
		{% if item2.btn_link.url.type is equalto "EMAIL_ADDRESS" %}
		  {% set href = "mailto:" + href %}
		{% endif %}
		<a
		  {% if item2.btn_link.url.type is equalto "CALL_TO_ACTION"  %}
		    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
		  {% else %}
		    href=""
		  {% endif %}
		  {% if item2.btn_link.open_in_new_tab %}
		    target="_blank"
		  {% endif %}
		  {% if item2.btn_link.rel %}
		    rel=""
		  {% endif %}
		  >
		  Link text
		</a>
		{% cta guid="" %}
	{% endfor %}
	{% if item.image_field.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image_field.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image_field.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image_field.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
{% endfor %}