{{#each contactRadioForm}}
  <div class="{{componentClass}}-wrap {{blockMod}} form-row {{#if error}}form-row_validation-error{{/if}}" data-row-required>
    <label class="form-row__label form-row__label_required title-help" for="title">{{mainTitle}}</label>
    {{#each contactRadioField}}
      <div class="{{componentClass}}-radio{{#if @last}}__last{{/if}} {{radioMod}}">
        {{> radiobutton label=label name=name id=id}}
        {{#if notification}}
          {{> notifications classModifier=classModifier warning=true text=text}}
        {{/if}}
      </div>
      {{#if extendedRow}}
        <div class="{{componentClass}}-inner-wrap {{innerRowClass}}">
          {{#each innerRadioBlock}}
            <div class="{{componentClass}}-inner">
              <label class="form-row__label {{#if @../last}}{{#if @first}}sub-label{{/if}}{{/if}} form-row__label_required" for="title">{{innerTitle}}</label>
              <div class="{{componentClass}}-radio{{#if @../last}}{{#if @last}}__last-sub{{/if}}{{/if}}{{#if (and displayOneByOne (isGreaterThan (lookup radioButton "length") 3))}} one-by-one{{/if}}">
                {{#each radioButton}}
                  {{> radiobutton label=label name=name id=id }}
                {{/each}}
              </div>
              <p class="error-msg">{{errorMsg}}</p>
            </div>
          {{/each}}
        </div>
      {{/if}}
    {{/each}}
  </div>
{{/each}}
