.gold-ticker-wrap,
.gold-ticker-wrap .gold-ticker-track,
.gold-ticker-wrap .gold-ticker-item,
.gold-ticker-wrap span,
.gold-ticker-wrap a {
    background: transparent !important;
    color: #000000 !important;
}

.gold-ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #e7c645 !important;
    background: #e7c645 !important;
    border-top: 1px solid #caa62a !important;
    border-bottom: 1px solid #caa62a !important;
    padding: 8px 0 !important;
    box-sizing: border-box;
}

.gold-ticker-track {
    display: inline-block;
    white-space: nowrap;
    min-width: 200%;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    animation: goldTickerMove 45s linear infinite;
}

.gold-ticker-item {
    display: inline-block;
    margin-right: 40px;
    color: #000000 !important;
    background: transparent !important;
}

.gold-ticker-item::after {
    content: " |";
    margin-left: 10px;
    color: #000000 !important;
}

.gold-ticker-item:last-child::after {
    content: "";
}

@keyframes goldTickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}