/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 07 2026 | 16:27:57 */
document.querySelectorAll('.open-login').forEach(btn => {

  btn.addEventListener('click', function(e) {

    e.preventDefault();

    document.getElementById('loginPopup').style.display = 'flex';

  });

});

document.querySelector('.close-popup').onclick = function() {

  document.getElementById('loginPopup').style.display = 'none';

};

window.onclick = function(e) {

  if (e.target == document.getElementById('loginPopup')) {

    document.getElementById('loginPopup').style.display = 'none';

  }

};