/** Shopify CDN: Minification failed

Line 6:0 Unexpected "<"

**/
<div class="belt-addon-modal" id="belt-addon-modal-{{ product.id }}" hidden>
  <div class="belt-addon-modal__overlay" data-belt-close></div>

  <div class="belt-addon-modal__dialog" role="dialog" aria-modal="true" aria-labelledby="belt-addon-title-{{ product.id }}">
    <button type="button" class="belt-addon-modal__close" data-belt-close aria-label="Sluiten">
      ×
    </button>

    <h3 class="belt-addon-modal__title" id="belt-addon-title-{{ product.id }}">
      Maak je look compleet
    </h3>

    <p class="belt-addon-modal__text">
      Wil je een riem toevoegen aan je bestelling?
    </p>

    <div class="belt-addon-modal__options">
      <label class="belt-addon-modal__option">
        <input
          type="radio"
          name="belt-addon-choice-{{ product.id }}"
          value=""
          checked
        >
        <span>Geen riem</span>
      </label>

      <label class="belt-addon-modal__option">
        <input
          type="radio"
          name="belt-addon-choice-{{ product.id }}"
          value="riem-goud"
          data-belt-handle="riem-goud"
        >
        <span>Gouden riem</span>
      </label>

      <label class="belt-addon-modal__option">
        <input
          type="radio"
          name="belt-addon-choice-{{ product.id }}"
          value="riem-zilver"
          data-belt-handle="riem-zilver"
        >
        <span>Zilveren riem</span>
      </label>

      <label class="belt-addon-modal__option">
        <input
          type="radio"
          name="belt-addon-choice-{{ product.id }}"
          value="riem-luxe"
          data-belt-handle="riem-luxe"
        >
        <span>Luxe riem</span>
      </label>
    </div>

    <div class="belt-addon-modal__actions">
      <button type="button" class="belt-addon-modal__secondary" data-belt-skip>
        Verder zonder riem
      </button>

      <button type="button" class="belt-addon-modal__primary" data-belt-confirm>
        Toevoegen aan winkelwagen
      </button>
    </div>
  </div>
</div>