.currency-marquee {
    height: 50px;
    line-height: 50px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    @media (max-width: 1920px){
        max-width: var(--grid-container-width);
        margin-left: auto; margin-right: auto;
    }

}
.js-marquee-wrapper .js-marquee{ margin-top: -9px; }
.currency-marquee-code {
    margin-right: 50px;
    display: inline-flex;
    align-items: center;
}
.currency-marquee-buy-rate {
    margin-left: 1rem;
    margin-right: 1rem;
}
.currency-marquee-trend-up {
    color: green;
}
.currency-marquee-trend-down {
    color: red;
}
.currency-marquee-flag {
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}
.currency-marquee-nav{
    position: absolute;
    background-color: #ffffff;
    height: 100%;
    aspect-ratio: 1 / 1;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.currency-marquee-nav > a {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/pause.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
}
.currency-marquee-nav > a.is-paused {
    background-image: url(../img/play.svg);
}