/* Sticky-after-scroll - pure CSS, no javascript */
div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index:1000;
}