$.toast({
text: 'Your bookmarks should finish importing in about 30 seconds. Perhaps longer if you have a ton of bookmarks!
Please refresh your browser once importing is finished to see your imported bookmarks.',
position: 'top-center',
loaderBg: '#0d6efd',
bgColor: '#0d6efd',
textColor: '#ffffff',
icon: 'success',
hideAfter: 12000,
stack: 2
});
// Force blue color (because jquery.toast is stubborn)
setTimeout(() => {
$('.jquery-toast-container .toast').css({
'background-color': '#0d6efd',
'color': '#ffffff'
});
}, 50);