.top-marquee-container {
    width: 100%;
    overflow: hidden;
    background: #ff5100; /* Цвет темы */
    color: #ffffff;
    padding: 6px 0;
    position: relative;
    z-index: 9999;
}
.top-marquee-content {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.top-marquee-content:hover {
    animation-play-state: paused;
}
.top-marquee-content b, .top-marquee-content strong {
    font-weight: 700;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

@media only screen and (max-width: 768px) {
    .top-marquee-container {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 30px !important;
        line-height: 30px !important;
        padding: 0 !important;
        z-index: 99999 !important;
    }
    .top-panel {
        top: 30px !important;
        margin-top: 0 !important;
    }
    body {
        padding-top: 78px !important;
    }
    .search-box-top {
        top: 78px !important;
        margin-top: 0 !important;
    }
    body.fv-mobile_open .top-marquee-container {
        z-index: 1000 !important;
    }
    body.fv-mobile_open .container {
        z-index: 1050 !important;
    }
    body.fv-mobile_open .fv-parent_bar {
        z-index: 1050 !important;
    }
}


