{% if module.right_content.add_drop_shadow %}
	<!-- HTML to show when checked -->
{% endif %}

{% if module.right_content.image.src %}
	{% set sizeAttrs = 'width="" height=""' %}
	{% if module.right_content.image.size_type == 'auto' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% elif module.right_content.image.size_type == 'auto_custom_max' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% endif %}
	 {% set loadingAttr = module.right_content.image.loading != 'disabled' ? 'loading=""' : '' %}
	<img src="" alt=""  >
{% endif %}

{% inline_rich_text field="right_content.video.video_url" value="" %}

{% if module.right_content.video.display_as_lightbox %}
	<!-- HTML to show when checked -->
{% endif %}
{% if module.right_content.video.video_thumb.src %}
	{% set sizeAttrs = 'width="" height=""' %}
	{% if module.right_content.video.video_thumb.size_type == 'auto' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% elif module.right_content.video.video_thumb.size_type == 'auto_custom_max' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% endif %}
	 {% set loadingAttr = module.right_content.video.video_thumb.loading != 'disabled' ? 'loading=""' : '' %}
	<img src="" alt=""  >
{% endif %}