.timeline::-webkit-scrollbar{width:.6rem;background-color:#E2E8F0;border-radius:20px}.timeline::-webkit-scrollbar-thumb{background-color:#FD8E25;border-radius:.5rem}.slider{width:100%;height:var(--height);overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 10% 90%,transparent)}.slider .list{display:flex;width:100%;min-width:calc(var(--width) * var(--quantity));position:relative}.slider .list .item{width:var(--width);height:var(--height);position:absolute;left:100%;animation:autoRun var(--time) linear infinite;transition:filter .5s;animation-delay:calc((var(--time) / var(--quantity)) * (var(--position) - 1) - var(--time))!important}.slider .list .item img{width:100%}@keyframes autoRun{0%{left:100%}to{left:calc(var(--width) * -1)}}.slider[reverse=true] .item{animation:reversePlay var(--time) linear infinite}@keyframes reversePlay{0%{left:calc(var(--width) * -1)}to{left:100%}}