﻿.ads-bar {
    width: 100%;
    height: 40px;
    background: #222;
    color: #fff;
    overflow: hidden;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.ads-track {
    width: 100%;
    white-space: nowrap;
    position: relative;
    animation: scrollAds 20s linear infinite;
}

@keyframes scrollAds {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
