{{#if addFloor}}
    <div class="ti-floor__add-floor">
        <i class="fas fa-arrow-down"></i>
        {{#unless flooring}}
            Add another Wall/floor
        {{else}}
            Add another Floor
        {{/unless}}
    </div>
{{else}}
    <div class="ti-floor">
        <div class="ti-floor__close">
            <i class="far fa-times"></i>
        </div>
        <h4 class="ti-floor__title-main">
            {{#unless flooring}}
                Enter the dimensions of your Wall/floor
            {{else}}
                Enter the dimensions of your floor up to skirting board
            {{/unless}}
        </h4>
        <h4 class="ti-floor__title">
            {{#unless flooring}}
                Wall/floor <span class="ti-floor__title-count"></span>
            {{else}}
                Floor <span class="ti-floor__title-count"></span>
            {{/unless}}
        </h4>
        <div class="ti-floor__form">
            <div class="ti-floor__form-row">
                <label>
          <span class="ti-floor__specification">
              Width (<span class="ti-unit_small">m</span>):
          </span>
                    <input type="number" class="ti-floor__input tbx" name="tile-width">
                </label>
            </div>
            <div class="ti-floor__form-row">
                <label>
          <span class="ti-floor__specification">
              {{#unless flooring}}
                  Length/Height
              {{else}}
                  Length
              {{/unless}}
              (<span class="ti-unit_small">m</span>):
          </span>
                    <input type="number" class="ti-floor__input tbx" name="tile-length">
                </label>
            </div>
            <div class="ti-floor__result">
                <span class="ti-floor__result-specification">Area: </span>
                <span class="ti-floor__result-outcome">
                      <span class="ti-floor__result-value">0</span>
                    {{#unless flooring}}
                        <span class="ti-floor__result-sqm">SQ<span class="ti-unit_big">M</span></span>
                    {{else}}
                        <span class="ti-floor__result-sqm fi__unit">m</span>
                        <span class="ti-floor__result-squared"><sup>2</sup></span>
                    {{/unless}}

                  </span>
            </div>
        </div>
    </div>
{{/if}}
