Notice: Limited availability due to exceptionally high demand – registration may close at any time.

USER AGREEMENT

SB2.0 2025-01-27 19:48:45
// Countdown function startTimer(duration, display) { var timer = duration, minutes, seconds; setInterval(function () { minutes = parseInt(timer / 60, 10); seconds = parseInt(timer % 60, 10); minutes = minutes < 10 ? "0" + minutes : minutes; seconds = seconds < 10 ? "0" + seconds : seconds; display.text(minutes + ":" + seconds); if (--timer < 0) { timer = 0; } }, 1000); } (function ($) { let d = new Date(); let month = d.getMonth() + 1; let day = d.getDate(); let output = (day < 10 ? '0' : '') + day + '/' + (month < 10 ? '0' : '') + month + '/' + d.getFullYear(); $('.today-date').html(output); let time = 60 * 6.4, display = $('.countdown'); startTimer(time, display); })(jQuery); $(document).ready(function () { $(".why-item-title").each((i, v) => { $(v).html($(v).html().replace(/(\d){1,2}\s{0,}\./g, '')); }) $('.year').html(new Date().getFullYear()); });