// source --> https://pflegegeldrechner.net/wp-content/plugins/scroll-to-top/js/script-scroll-btn.js?ver=7.0.2 
jQuery(document).ready(function($) {

// Add Scroll to the top button

    $(window).scroll(function() {
		
	// Calculate distance from the bottom of the page
       let totalHeight = $(document).height();
       let windowHeight = $(window).height();
       let scrollPosition = $(this).scrollTop();
       let distanceFromBottom = totalHeight - windowHeight - scrollPosition;
		
     if ($(this).scrollTop() > 300) {
		
		$('.scrltoTop').show().fadeIn();
		$('.scrltoTop').css({'visibility': 'visible'});
		
	  }

     else {
		  
        $('.scrltoTop').fadeOut();
		
      }
	  
    });
	
	$(document).on('click', '.scrltoTop', function() {
   
      $('html, body').animate({ scrollTop: 0 }, 800);
      return false; // prevent default behavior of button or link / prevent propagation 
	  
    });
	
});