.nt-cf425202-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #f5f5f5;
    padding: 10px 0;
    box-sizing: border-box;
}

.nt-cf425202-track {
    display: inline-block;
    white-space: nowrap;
    animation: nt-cf425202-marquee 20s linear infinite;
}

.nt-cf425202-wrapper:hover .nt-cf425202-track {
    animation-play-state: paused;
}

.nt-cf425202-item {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    font-family: inherit;
    font-size: 16px;
    color: #333;
}

.nt-cf425202-item a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.nt-cf425202-item a:hover {
    opacity: 0.8;
}

.nt-cf425202-separator {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #d1d5db;
    border-radius: 50%;
    margin-left: 20px;
}

@keyframes nt-cf425202-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}