.currency-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.currency-picker select {
  width: auto;
  min-width: 78px;
  min-height: 30px;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

@media (min-width: 641px) and (max-width: 980px) {
  .currency-picker {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .currency-picker {
    flex: 0 0 min(132px, 40%);
    min-width: 0;
    width: auto;
    justify-content: space-between;
    min-height: 38px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .currency-picker select {
    min-width: 52px;
    padding-inline: 4px;
    font-size: 12px;
  }
}
