#steam-fa-section .steam-fa-destaque-content {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

#steam-fa-section .steam-fa-thumbs-row {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

#steam-fa-section .steam-fa-thumbs-row::-webkit-scrollbar {
  height: 6px;
}

#steam-fa-section .steam-fa-thumbs-row::-webkit-scrollbar-track {
  background: transparent;
}

#steam-fa-section .steam-fa-thumbs-row::-webkit-scrollbar-thumb {
  background: var(--border, rgba(128, 128, 128, 0.3));
  border-radius: 3px;
}

#steam-fa-section .steam-fa-destaque-content:not(.steam-fa-in):not(.steam-fa-out-next) {
  opacity: 0;
  transform: translateX(-24px) scale(0.97);
}

#steam-fa-section .steam-fa-destaque-content.steam-fa-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

#steam-fa-section .steam-fa-destaque-content.steam-fa-out-next {
  opacity: 0;
  transform: translateX(24px) scale(0.97);
  pointer-events: none;
}