{##
# Product fitment info
#}
{% apply spaceless %}
<div class="product-fitment {{ this.getProductFitmentClass() }}">
{% if this.showProductFitmentIcon() %}
{{ widget('XLite\\View\\Icon', icon=this.getProductFitmentIcon(), class='product-fitment__checkbox-icon') }}
{% endif %}
<span class="product-fitment__label">{{ this.getProductFitmentLabel()|raw }}</span>
{% if this.isNeedShowCheckPartsFitsYourVehicle() %}
<div class="product_vehicle_mmys_popup">
{{ t('Check if this part fits your vehicle.') }}
</div>
{% endif %}
</div>
{% if this.getProductFitmentNote() and this.showProductFitmentNote() %}
<div class="fitment-note">
<div>{{ widget('XLite\\View\\Icon', icon=this.getFitmentNoteIcon(), class='product-fitment__fitment-note-icon') }}</div>
<div>{{ this.getProductFitmentNote()|raw }}</div>
</div>
{% endif %}
{% endapply %}