body::before {
    content: "Prosimy o realizację max. 3 wysyłek w kwartale";
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #051160;
    color: #FFFFFF;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    z-index: 1000;
    border-radius: 25px;
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(50vw);
    }
    to {
        transform: translateX(-50vw);
    }
}

@media (max-width: 768px) {
    body::before {
        display: block;
        top: unset;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        font-size: 11px; /* mobilka */
        animation: none; 
    }
}

/*  */
.form-control.m--hidden-mobile.mr-3.max-width-215.categories-search-bar {
    display: none !important;
}