/* GoldChi Price Ticker */

.goldchi-price-ticker {

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #111;

    color: #fff;

    height: 35px;

    width: 100%;

    position: relative;

    z-index: 9999;

}



/* عنوان */

.goldchi-price-ticker-title {

    background: #d4af37;

    color: #000;

    height: 100%;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    white-space: nowrap;

    flex-shrink: 0;

}



/* بخش حرکت */

.goldchi-price-ticker-wrapper {

    overflow: hidden;

    flex: 1;

    direction: ltr;

    min-width: 0;

}



.goldchi-price-ticker-content {

    display: flex;

    align-items: center;

    gap: 50px;

    width: max-content;

    white-space: nowrap;

    animation: goldchiTicker 60s linear infinite;

}



/* آیتم قیمت */

.goldchi-price-item {

    direction: rtl;

    font-size: 14px;

    color: #fff;

    display: inline-flex;

    align-items: center;

}



.goldchi-price-item strong {

    color: #d4af37;

    font-size: 15px;

    margin: 0 5px;

}



/* حرکت */

@keyframes goldchiTicker {

    from {

        transform: translateX(-100%);

    }

    to {

        transform: translateX(100%);

    }

}





/* موبایل */

@media (max-width:768px) {

    .goldchi-price-ticker-content {

        gap:30px;

        animation-duration:50s;

    }
    
    .goldchi-price-ticker {

        height: 40px;

        min-height: 40px;

    }



    .goldchi-price-ticker-title {

        padding: 0 10px;

        font-size: 12px;

    }



    .goldchi-price-item {

        font-size: 12px;

    }



    .goldchi-price-item strong {

        font-size: 13px;

    }



    .goldchi-price-ticker-content {

        gap: 30px;

        animation-duration: 60s;

    }


}

/* Live Indicator */

.goldchi-price-ticker-title {

    gap:8px;

}


.goldchi-live-dot {

    width:10px;

    height:10px;

    background:#ff0000;

    border-radius:50%;

    display:inline-block;

    animation:goldchiLiveBlink 1.2s infinite;

}



@keyframes goldchiLiveBlink {


    0% {

        opacity:1;

        transform:scale(1);

    }


    50% {

        opacity:.3;

        transform:scale(1.5);

    }


    100% {

        opacity:1;

        transform:scale(1);

    }


}