.custom-banner-container {
    width: 100%;
    background-color: #111; 
    color: #fff; 
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
    height: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-banner-content {
    width: 100%;
    position: relative;
}

.cb-text {
    display: inline-block;
    /* padding: 0 20px; */
    font-size: 15px;
}

.cb-fade {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.cb-fade.active {
    opacity: 1;
}

/* Animation de défilement infini (Marquee) */
.cb-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-scroll linear infinite;
}

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

@media(max-width:768px){
    .cb-text {
    font-size: 12px;
}
}
