JSFiddle - React, Tailwind, and code Playground
HTML
...
<td> </td>
<td class="cart2Varekode">{if $item.Product.sku}
<span name="SKU">{$item.Product.sku}</span>
{else}
<span>{img src=$item.Product.DefaultImage.paths.1 alt=$item.Product.name_lang|escape}</span>
{/if}
</td>
<td> </td>
<td class="cart2Produkt"> {if $item.Product.ID}
<a href="{productUrl product=$item.Product}" target="_blank" class="animtool" name="PRODUCT NAME">
{$item.Product.name_lang}</a>
<div class="tooltip">
{img src=$item.Product.DefaultImage.paths.2 alt=$item.Product.name_lang|escape}
<br />
<span>Gå til produkt side.</span>
</div>
{else}
<span>{$item.Product.name_lang}</span>
{/if}
<p>
{include file="order/itemVariations.tpl"}
{include file="order/block/itemOptions.tpl"}
{if $multi}
{include file="order/selectItemAddress.tpl" item=$item}
{/if}
</p>
</td>
<td class="cart2Price"><span class="actualPrice"name="ACTUAL PRICE" PRICE>{$item.formattedPrice}</span>
...
</td>