SIGUIENTE EN VIVO:
CENTRO DE LA MISERICORDIA

let timer = document.getElementById('kellyTimerBtn')
if (timer) {
let interval = setInterval(function(){
let currentDate = new Date().getTime()
let countdown = goalDate - currentDate
let countdownFinish = goalDate + 3000 * 60 * 60
let dd = Math.floor(countdown / (1000 * 60 * 60 * 24));
let dh = Math.floor((countdown % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
let dm = Math.floor((countdown % (1000 * 60 * 60)) / (1000 * 60));
timer.innerHTML = dd + " días, " + dh + " hs, " + dm + " mins"
if (countdown 0) {
// finish countdown, theres no time left
// live btn is going to disappear after 3 hs
clearInterval(interval)
timer.innerHTML = 'Ver directo'
}
}, 1000)
}

