/* Отменяем отключение анимаций на мобильных */
@media (max-width: 768px) {
  body.t-disable-animation-onmobile .t-records {
    opacity: 1 !important;
    transform: none !important;
    animation-play-state: running !important;
  }
  
  /* Если анимации зависят от класса .t-animate */
  .t-records.t-animate {
    animation: your-animation-name 1s forwards !important;
  }
}