/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 25 2026 | 16:37:42 */
/* =========================
   Sticky Slider on right side of job application page
   ========================= */

/* Desktop & tablet */
@media (min-width: 768px) {
  .sticky-cats {
    position: sticky;
    top: 1rem;            /* scroll DOWN = tighter */
    align-self: start;
    height: fit-content;
    z-index: 3;
  }

  /* scroll UP = header B is showing → give it room */
  body.show-scroll-header .sticky-cats {
    top: 5rem;            /* match your --header-h */
  }
}

/* Phones: turn off */
@media (max-width: 767.98px) {
  .sticky-cats {
    position: static;
  }
}

