// Event listener to modify the appearance of December 31st link based on user criteria
document.addEventListener("DOMContentLoaded", function () {
const december31Link = document.querySelector('a[href="https://keystonepros.squarespace.com/store/p/saturday-december-20th-j5gyj-4npp5-6flrh-k22gp-tsze9-89z4w-yxr3f-f58my-x74s3-w448d-a6trn"]');
// Check if the December 31st link exists
if (december31Link) {
// Add custom styles or logic for December 31st if necessary
december31Link.style.fontWeight = "bold"; // Example style change for December 31st link
december31Link.style.color = "green"; // Example: Changing the text color to green
}
});
// Function to get a specific cookie by name
function getCookie(name) {
let match = document.cookie.match(new RegExp('(^| )' + name + '=([^;]+)'));
if (match) {
return match[2];
}
return null;
}