.map-legend {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.map-legend ~ .map-legend {
  margin-top: 4px;
}
.map-legend__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--legend-color, var(--main));
}
.map-legend__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
}
.map-legend__text {
	line-height: 1.2;
}
.map-legends--row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.map-legends--row span {
	font-size: calc(14 / 16 * 1rem);
}
.map-legends--row .map-legend ~ .map-legend {
	margin-top: 0;
}