/* .ticker .wrap {
    max-width: 600px;
    margin: auto;
    padding: 20px;
} */

.ticker .items-wrap {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    /* gap: 20px; */
}

/* .ticker .items-wrap:before,
.ticker .items-wrap:after {
    content: "";
    height: 100%;
    top: 0;
    width: 10%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
} */

/* .ticker .items-wrap:before {
    left: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.ticker .items-wrap:after {
    right: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%);
} */

.ticker .items {
    flex-shrink: 0;
    display: flex;
    gap: 20px;
    counter-reset: item;
    justify-content: space-around;
    min-width: 100%;
}

.ticker .item {
    /* background: #ccc;
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    counter-increment: item;
    border-radius: 6px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin: 10px 0; */
    transition: all 0.1s ease-in-out;
}

/* .ticker .item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
} */

/* .ticker .item:before {
    content: counter(item);
} */

.ticker .marquee {
    animation: scroll 20s linear infinite;
}

.ticker .reverce {
    animation-direction: reverse;
}

.ticker .items-wrap:hover .marquee {
    animation-play-state: paused;
}

.ticker .perfscan {
    /* margin: 20px 0;
    text-align: center;
    bottom: 0;
    background: #fff;
    padding: 5px; */
}

.ticker .perfscan hr {
    /* border: solid #999;
    border-width: 1px 0 0 0;
    max-width: 50%;
    margin: 0 auto 20px; */
}

.ticker .perfscan a {
    /* color: #000;
    font-weight: bold; */
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 20px));
    }
}