/* assets/customer-count-bar.css */
.tac-customer-bar {
    /* full-width black strip */
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    transform: translateY(100%);
    /* start off-screen */
    animation: barSlideUp .8s ease-out .4s forwards;
    /* slide up */
}

@keyframes barSlideUp {
    to {
        transform: translateY(0);
    }
}