<div class="voucher">
  {{#if title}}
    {{> checkout-section-title}}
  {{/if}}
  <div class="checkout-widget checkout-voucher checkout-voucher_fixed">
    <form id="form-checkout-voucher{{id}}">
      {{> form-row id=(concat 'voucher-code' id) label="Voucher" label-hidden="true" required="true" placeholder="Enter code" info=""}}
      <button class="voucher__btn btn btn-primary">
        <span class="btn__text">Apply</span>
      </button>
    </form>
  </div>
  {{#unless voucherApplied}}
    <div class="checkout-widget checkout-voucher voucher-applied checkout-voucher-hide">
      <div class="voucher-applied__inner">
      <span class="icon icon__check">
        <i class="fas fa-check-circle"></i>
      </span>
        <h5 class="heading-5 text-center">Voucher has been applied</h5>
      </div>
    </div>
  {{/unless}}
</div>
