.flag{
    width:45px;
    margin-right:10px;
}

.ticker-wrapper{
    height:500px;
    overflow:hidden;
    position:relative;
}

.ticker-inner{
    position:absolute;
    width:100%;
}

.buy-offer-item,
.product-item{
    padding:15px;
    border-bottom:1px solid #e9e9e9;
    background:#fff;
}

.product-item img{
    width:70px;
    height:70px;
    object-fit:cover;
    border:1px solid #ddd;
}

/* LEFT SIDE */
.up-scroll{
    animation:scrollUp 25s linear infinite;
}

/* RIGHT SIDE */
.down-scroll{
    animation:scrollDown 25s linear infinite;
}

/* Hover Pause */
.up-scroll:hover,
.down-scroll:hover{
    animation-play-state:paused;
    cursor:pointer;
}

@keyframes scrollUp{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(-50%);
    }
}

@keyframes scrollDown{
    from{
        transform:translateY(-50%);
    }
    to{
        transform:translateY(0);
    }
}