@keyframes category-grid-item-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.category-grid {
  .category-item.show {
    animation: category-grid-item-animation 1s ease 1;
  }
}
