Lost password

Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.

Scroll to Top
jQuery(function ($) { const buyNowBtn = $('.elementor-buy-now'); // Disable initially buyNowBtn.prop('disabled', true).css({ opacity: '0.5', pointerEvents: 'none' }); $('form.variations_form').on('found_variation', function () { buyNowBtn.prop('disabled', false).css({ opacity: '1', pointerEvents: 'auto' }); }); $('form.variations_form').on('reset_data', function () { buyNowBtn.prop('disabled', true).css({ opacity: '0.5', pointerEvents: 'none' }); }); });