jQuery(document).ready(function(){
document.querySelectorAll('#stickyBarFooterPart .modal').forEach(function(el) {
var oldId = el.id;
var newId = oldId + '0';
el.id = newId;
document.querySelectorAll('#stickyBarFooterPart a[href="#' + oldId + '"]').forEach(function(a) {
a.setAttribute('href', '#' + newId);
});
});
});