.eamg-petroleum-ticker {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #0b1220;
    color: #ffffff;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.2;
}

.eamg-petroleum-ticker__track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    min-width: 100%;
    will-change: transform;
    animation-name: eamgPetroleumTickerMove;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    padding-left: 100%;
}

.eamg-petroleum-ticker__item {
    display: inline-flex;
    align-items: center;
    margin-right: 28px;
}

.eamg-petroleum-ticker__item--title {
    margin-right: 18px;
}

.eamg-petroleum-ticker__title,
.eamg-petroleum-ticker__label {
    font-weight: 700;
    margin-right: 8px;
}

.eamg-petroleum-ticker__value {
    margin-right: 8px;
}

.eamg-petroleum-ticker__period {
    opacity: 0.75;
    margin-right: 8px;
    font-size: 12px;
}

.eamg-petroleum-ticker__sep {
    opacity: 0.4;
    margin-left: 20px;
}

.eamg-petroleum-ticker a {
    color: inherit;
    text-decoration: none;
}

.eamg-petroleum-ticker a:hover {
    text-decoration: underline;
}

.eamg-petroleum-ticker__notice {
    padding: 10px 14px;
    border: 1px solid #dcdcde;
    background: #fff;
}

@keyframes eamgPetroleumTickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
