#cptb-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 15px;
    background-color: #222;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    direction: ltr;
}

.cptb-ticker {
    overflow: hidden;
    white-space: nowrap;
}

.cptb-ticker span {
    display: inline-block;
    animation: cptb-ticker-animation 20s linear infinite;
}

@keyframes cptb-ticker-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
