.news-area{
    width: 100%;
    overflow: hidden;
    background: #222425;
    position: relative;
}

.ticker{
    background: #222425;
    z-index: 1;
}

.ticker-animation{
    display: inline-block;
    white-space: nowrap;
    animation: ticker 800s linear infinite;

}

@keyframes ticker{
    0%{
        transform: translate3d(0,0,0);
    }
    100%{
        transform: translate3d(-100%,0,0);
    }
}

.ticker-animation:hover{
    animation-play-state: paused;
}

.ticker-item{
    display: inline-block;
    padding: 10px 0;
    font-family: Lato, sans-serif;
    font-size: 15px;
    color: white;
}

.ticker-item .ticker-quote {
    font-weight: 900;
}

.ticker-item .num {
    font-weight: 500;
}


#ticker-wrapper {
    display:flex;
}

.left-block {
    position: absolute;
    top: 0;
    left: 0;

    background: #333; /* Add your desired background color */
    color: white; /* Add your desired text color */
    padding: 10px; /* Add padding as needed */
    box-sizing: border-box; /* Include padding in width calculation */
    z-index:2
}
