.card-animation-wrapper{position:relative;display:flex;flex-direction:column;gap:1rem;align-items:flex-start;justify-content:center}.card-animation-wrapper .card-animation{position:relative;transition:all .3s ease-in-out}.card-animation-wrapper .card-animation:after{content:"";position:absolute;left:-6px;top:10%;width:6px;height:80%;background-color:rgba(0,0,0,0);transition:background-color .3s ease-in-out;border-radius:3px}.card-animation-wrapper .card-animation.active{background:var(--background-8)!important}.card-animation-wrapper .card-animation.active:after{background-color:var(--color-primary-500)}.card-animation-wrapper.auto-cycle .card-animation:after{animation:cycleThroughCards calc(var(--total-cards, 4)*2s) infinite;animation-delay:calc(var(--card-index, 0)*2s)}@keyframes cycleThroughCards{0%,12.5%{background-color:var(--color-primary-500)}25%,to{background-color:rgba(0,0,0,0)}}