.ierg-multistep-form { max-width:700px; margin:auto; }
#progressbar { counter-reset: step; display:flex; justify-content:space-between; margin-bottom:20px; padding:0; list-style:none; }
#progressbar li { counter-increment:step; width:12%; text-align:center; }
#progressbar li:before { content:counter(step); display:block; margin:0 auto 5px; width:30px; height:30px; line-height:30px; border-radius:50%; background:#ccc; }
#progressbar li.active:before { background:#0073aa; color:#fff; }
.form-step { display:none; }
.form-step.active { display:block; }
.ierg-multistep-form .form-step input[type=text],
.ierg-multistep-form .form-step input[type=email],
.ierg-multistep-form .form-step input[type=tel],
.ierg-multistep-form .form-step select { width:50%; box-sizing:border-box; }
.ierg-multistep-form .form-step textarea { width:100%; box-sizing:border-box; }
