.crypto-ticker-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.crypto-ticker-marquee::before,
.crypto-ticker-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.crypto-ticker-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000000, transparent);
}

.crypto-ticker-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000000, transparent);
}

.crypto-ticker-track {
    display: flex;
    width: max-content;
    animation: cryptoTickerScroll 70s linear infinite;
}

.crypto-ticker-marquee:hover .crypto-ticker-track {
    animation-play-state: paused;
}

.crypto-ticker-set {
    display: flex;
    flex-shrink: 0;
}

.crypto-ticker-item {
    flex: 0 0 auto;
    padding: 0 48px;
    min-width: 210px;
    text-align: center;
    position: relative;
}

.crypto-ticker-item::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    height: 36px;
    margin-top: -18px;
    width: 2px;
    background-color: rgba(204, 163, 84, 0.75);
}

@keyframes cryptoTickerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .crypto-ticker-item {
        min-width: 180px;
        padding: 0 32px;
    }
}
