jQuery(function($){
$(document).ready(function(){
$('#top').click(function(event){
event.preventDefault();
$('html, body').animate({ scrollTop: 0 }, 200);
});
$(window).on("scroll", function(){
const scrollTop=$(this).scrollTop();
const rightElement=$("#top");
const navigationElement=$('#navigation');
if(scrollTop < 500){
rightElement.hide();
}else if(scrollTop > 500&&!navigationElement.hasClass("scrll")){
rightElement.css("display", "flex");
}});
});
});