$(function () {
// auto hide flash alerts
let $notifs = $('div.alert').not('.alert-important').addClass('fadeout')
setTimeout(() => {
$notifs.addClass('fade')
$notifs.addClass('hidden')
}, 500)
}, 2500)
})