/******* Do not edit this file *******
Code Snippets Manager
Saved: Oct 16 2025 | 10:44:59 */
.sticky-category {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 0;
  animation: showSticky 1s ease forwards;
  animation-delay: 12s;
}
@keyframes showSticky {
  to {
    opacity: 1;
  }
}
