<!-- Monthly Offer Price and Disclaimer Structure Starts -->

	{%- assign on_sale = false -%}
	{%- if product.compare_at_price > product.price -%}
 	 {%- assign on_sale = true -%}
	{%- endif -%}


    {% if product.tags contains "imap_promo" %}
      {%- assign on_sale = 'imap_modified' -%}
	{% endif %}  
  
<!-- PRICES -->
<div class="selection-wrapper price product-single__price-{{ section.id }}">    
{% if on_sale == true %}
	<span class="money" id="ProductPrice-{{ section.id }}" data-ProductPrice itemprop="price" 
          content="{{ current_variant.price | money_without_currency | remove: ',' }}">{{ current_variant.price | money }}</span>
	<p id="ComparePrice-{{ section.id }}" data-ComparePrice style="display:block;">Original price: <span class="money">{{ current_variant.compare_at_price | money }}</span></p>
{% else %}
	{% if on_sale == 'imap_modified' %}
       <p id="ComparePrice-{{ section.id }}" data-ComparePrice style="display:block;">
		Original price: <span class="money">{{ current_variant.compare_at_price | money }}</span>
  		</p>
	{% else %}
      <span class="money" id="ProductPrice-{{ section.id }}" data-ProductPrice 
            itemprop="price" content="{{ current_variant.price | money_without_currency | remove: ',' }}">{{ current_variant.price | money }}</span>
	{% endif %}
{% endif %}
</div>
<!-- end PRICES -->
 
<!-- promoCentral --->   
<p id="promoCentralRedText" style="color:#a6192e;color:red;margin-top:5px"></p>
<script>
$("#promoCentralRedText").load("https://ipp.minnesotainteractive.com/promoCentralText.php?siteId=cd&msg=pdp&product_tag={{promoTags[0]}}");
</script>  
<!-- end promoCentral ---> 



<!-- Monthly Offer Price and Disclaimer Structure Ends -->