.smooth-scroll-container{display:flex;width:max-content}.smooth-scroll-content{display:flex;flex-shrink:0}.smooth-scroll-rtl{animation:smoothScrollRTL var(--animation-duration, 30s) linear infinite}.smooth-scroll-ltr{animation:smoothScrollLTR var(--animation-duration, 30s) linear infinite}@keyframes smoothScrollRTL{0%{transform:translate(0)}to{transform:translate(calc(-1 * var(--content-width, 100%)))}}@keyframes smoothScrollLTR{0%{transform:translate(calc(-1 * var(--content-width, 100%)))}to{transform:translate(0)}}
