@charset "utf-8";

.clntv-banner-roll {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin: 28px 0 18px;
    padding: 14px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.clntv-banner-roll-viewport {
    overflow: hidden;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.clntv-banner-roll-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    height: 50px;
    padding-left: 40px;
    animation: clntvBannerRoll 150s linear infinite;
    will-change: transform;
}

.clntv-banner-roll:hover .clntv-banner-roll-track {
    animation-play-state: paused;
}

.clntv-banner-roll-item {
    flex: 0 0 auto;
    width: 183px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.clntv-banner-roll-item a,
.clntv-banner-roll-link {
    display: block;
    width: 183px;
    height: 50px;
    overflow: visible;
}

.clntv-banner-roll-item img,
.clntv-banner-roll-img {
    display: block;
    width: 183px;
    height: 50px;
    max-width: none;
    max-height: none;
    object-fit: fill;
}

@keyframes clntvBannerRoll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

