.smooth-scroll-container{display:flex;width:-moz-max-content;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:translateX(0)}to{transform:translateX(calc(-1 * var(--content-width, 100%)))}}@keyframes smoothScrollLTR{0%{transform:translateX(calc(-1 * var(--content-width, 100%)))}to{transform:translateX(0)}}