<div class="shop-colour">
  {{#if title}}
    <h2>{{title}}</h2>
  {{/if}}
  <div class="shop-colour__wrapper">
    {{#each filters.colors}}
      <div
        class="shop-colour__item tooltip-trigger"
        data-toggle="tooltip"
        data-placement="top"
        title="{{label}}"
        data-container=".shop-colour"
        data-trigger="hover"
      >
        <label for="{{id}}-plp" class="chb-round">
          <input type="checkbox" value="{{label}}" id="{{id}}-plp" name="{{id}}">
          <ins>
            <span style="background: {{color}}"></span>
          </ins>
        </label>
      </div>
    {{/each}}
  </div>
</div>
