.exchange-rates {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 1.5rem;
    margin-bottom: -4px;
    white-space: nowrap;
}.exchange-rate {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    min-width: 4.9rem;
}.exchange-rate__currency {
    color: rgba(18, 18, 18, 0.58);
}.exchange-rate__value {
    color: #121212;
    display: inline-block;
    min-width: 3.25rem;
    transition: color 180ms ease;
}.exchange-rates.is-loading .exchange-rate__value {
    color: rgba(18, 18, 18, 0.5);
}.exchange-rates.is-ready .exchange-rate__value {
    color: #121212;
}@media (prefers-reduced-motion: reduce) {.exchange-rate__value {
        transition: none;
    }
}
