/* ==================================================
   PRATIDIN BANGLA - CONTINUOUS NEWS TICKER
   ================================================== */

#pb-news-ticker {

    width: 100%;
    height: 44px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border-bottom: 1px solid #dddddd;

    overflow: hidden;

    position: relative;

    z-index: 999;

    box-sizing: border-box;
}


/* ==================================================
   সর্বশেষ LABEL
   ================================================== */

.pb-ticker-label {

    height: 44px;

    min-width: 104px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d62828;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    flex-shrink: 0;

    box-sizing: border-box;
}


/* ==================================================
   LIVE DOT
   ================================================== */

.pb-live-dot {

    width: 10px;
    height: 10px;

    background: #ffffff;

    border-radius: 50%;

    margin-right: 7px;

    display: inline-block;

    animation: pb-live-blink 1.5s infinite;
}


@keyframes pb-live-blink {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 1;
    }

}


/* ==================================================
   TICKER AREA
   ================================================== */

.pb-ticker-area {

    flex: 1;

    height: 44px;

    overflow: hidden;

    position: relative;

    display: flex;

    align-items: center;

    box-sizing: border-box;
}


/* ==================================================
   CONTINUOUS TRACK
   ================================================== */

.pb-ticker-track {

    display: flex;

    align-items: center;

    width: max-content;

    height: 44px;

    white-space: nowrap;

    animation:
        pb-continuous-news
        60s
        linear
        infinite;

    will-change: transform;
}


/* ==================================================
   NEWS GROUP
   ================================================== */

.pb-ticker-group {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    height: 44px;
}


/* ==================================================
   NEWS HEADLINE
   ================================================== */

.pb-ticker-group a {

    display: inline-flex;

    align-items: center;

    height: 44px;

    color: #222222;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    line-height: 44px;

    white-space: nowrap;

    flex-shrink: 0;
}


/* ==================================================
   NEWS SEPARATOR
   ================================================== */

.pb-ticker-group a::after {

    content: "◆";

    color: #d62828;

    font-size: 10px;

    font-weight: 700;

    margin-left: 28px;

    margin-right: 28px;
}


/* ==================================================
   HOVER
   ================================================== */

.pb-ticker-group a:hover {

    color: #d62828;

}


/* ==================================================
   CONTINUOUS ANIMATION

   প্রথম group শেষ হওয়ার আগেই
   দ্বিতীয় group চলতে থাকবে।

   তাই কোনো ফাঁকা জায়গা থাকবে না।
   ================================================== */

@keyframes pb-continuous-news {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


/* ==================================================
   MOUSE রাখলে NEWS থামবে
   ================================================== */

#pb-news-ticker:hover
.pb-ticker-track {

    animation-play-state: paused;

}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 768px) {

    #pb-news-ticker {

        height: 40px;

    }


    .pb-ticker-label {

        height: 40px;

        min-width: 90px;

        padding: 0 10px;

        font-size: 13px;

    }


    .pb-live-dot {

        width: 8px;

        height: 8px;

        margin-right: 5px;

    }


    .pb-ticker-area {

        height: 40px;

    }


    .pb-ticker-track {

        height: 40px;

    }


    .pb-ticker-group {

        height: 40px;

    }


    .pb-ticker-group a {

        height: 40px;

        font-size: 13px;

        line-height: 40px;

    }


    .pb-ticker-group a::after {

        font-size: 9px;

        margin-left: 18px;

        margin-right: 18px;

    }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 480px) {

    #pb-news-ticker {

        height: 38px;

    }


    .pb-ticker-label {

        height: 38px;

        min-width: 78px;

        padding: 0 8px;

        font-size: 12px;

    }


    .pb-live-dot {

        width: 7px;

        height: 7px;

        margin-right: 4px;

    }


    .pb-ticker-area {

        height: 38px;

    }


    .pb-ticker-track {

        height: 38px;

    }


    .pb-ticker-group {

        height: 38px;

    }


    .pb-ticker-group a {

        height: 38px;

        font-size: 12px;

        line-height: 38px;

    }


    .pb-ticker-group a::after {

        font-size: 8px;

        margin-left: 14px;

        margin-right: 14px;

    }

}


/* ==================================================
   REDUCE MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {

    .pb-ticker-track {

        animation: none;

        transform: translateX(0);

    }

}