.location-payments {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 8px 0;
}

.location-payments > b {
  color: var(--lv-foreground);
  font-family: Jost, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.location-payments > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 12px;
  flex-wrap: wrap;
}

.location-payments span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--lv-muted-foreground);
  font-size: 12px;
}

.location-payments svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--lv-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-payments span b {
  color: inherit;
  font-family: Jost, sans-serif;
  font-size: inherit;
  font-weight: 400;
}

@media (max-width: 480px) {
  .location-payments > div {
    max-width: 100%;
    gap: 8px 14px;
  }
}
