.promotion-link {
    padding: 0.5rem 1rem !important;
    display: block !important;
    font-size: 14px;
    background-color: var(--bc_green);
    color: var(--bc-primary-block-bg) !important;
    text-align: center !important;
    font-weight: bold;
}

#promotion-row {
    height: 35px;
    background-color: var(--bc_green);
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .promotion-scroll {
        top: 0;
        left: 100%;
        width: max-content;
        flex-wrap: nowrap;
        overflow: hidden;
        white-space: nowrap;
        animation: promotion-scroll 55s linear infinite;
        background-color: var(--bc_green);
        display: flex !important;
        padding-block: 1rem;
        gap: 2rem;
        color: var(--bc-primary-block-bg) !important;
    }

    @keyframes promotion-scroll {
        from {
            left: 50px;
        }
        to {
            transform: translate3d(-100%, 0, 0)
        }
    }
}
