Christmas Sale
.lll-linkto-footer-subscribe{
cursor: pointer;
}
@keyframes subscribetwinkle {
0%{
box-shadow: unset;
}
50%{
box-shadow: inset 0 0 20px orange;
}
100%{
box-shadow: unset;
}
}
.lll-subscribebox-twinkle{
animation: subscribetwinkle 1.5s linear 5;
}
jQuery(‘.lll-linkto-footer-subscribe’).click(function(){
jQuery(‘html,body’).animate({scrollTop: jQuery(‘#custom_html-10’).offset().top – 120},500);
jQuery(‘#custom_html-10’).addClass(‘lll-subscribebox-twinkle’);
setTimeout(function(){
jQuery(‘#custom_html-10’).removeClass(‘lll-subscribebox-twinkle’);
},8000);
});