{% if form.sticky_cta_and_skip == 'false' %}
{% if form.firstSection.allowMultiSelection == "true" or form.secondSection.allowMultiSelection == "true" and global.proceedBtn != '' %}
{{global.proceedBtn}}
{% endif %}
{% from "../_CTABtn/_CTABtn.html" import CTA %}
{{ CTA (
wrapCTA = false,
ctaID = "nextStep",
ctaHref = global.mainBtn_link,
ctaTarget = "_self",
dataParam = 'true',
ctaParam = 'true',
ctaText = global.mainBtn,
ctaClass = 'nextStep nextStep--gradient',
hasIcon = 'false',
hideCta = 'false',
bgColor = ''
)
}}
{% from "../_CTABtn/_CTABtn.html" import CTA %}
{{ CTA (
wrapCTA = false,
ctaID = "",
ctaHref = global.mainBtn_link,
ctaTarget = "_self",
dataParam = 'true',
ctaParam = 'true',
ctaText = form.skip,
ctaClass = 'skip skip--section',
hasIcon = 'false',
hideCta = 'false',
bgColor = ''
)
}}
{% endif %}