/**
* Theme Name: Partdo Child
* Description: This is a child theme of Partdo, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/KlbTheme">KlbTheme (Sinan ISIK)</a>
* Template: partdo
* Version: 1.4.0
/* 🎯 Bannière défilante Injecteur Auto */
.banner-scroll {
    background: #010DDF;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    z-index: 9999;
    position: relative;
}

.banner-scroll-content {
    display: inline-block;
    padding-left: 100%;
    color: #FFA300;
    font-size: 18px;
    font-weight: 700;
    animation: bannerScroll 15s linear infinite;
}

@keyframes bannerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
