.fl-locations-map {
	display: block;
	position: relative;
	
	--marker-border-size: 3px;
}

.fl-locations-map img {
	display: block;
	width: 100%;
	height: auto;
}




.fl-location-map-point {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	font-size: var(--fl-font-size-p);
	line-height: var(--fl-font-size-p);
	font-weight: bold;
	position: absolute;
	cursor: help;
}
.fl-location-map-point span.location-code,
.fl-location-map-point span.location-count {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	text-align: center;
}
.fl-location-map-point span.location-code {
	font-size: 0.6em;
	line-height: 0.6em;
	margin-bottom: 2px;
}
.fl-location-map-point span.location-marker {
	position: absolute;
	z-index: 0;
	background: var(--fl-colour-yellow);
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 9000px;
}




@media screen and (min-width: 992px) {
	
		.fl-location-map-point {
			width: 50px;
			height: 50px;
			font-size: var(--fl-font-size-h6);
		}
	
	.fl-locations-map {
		display: block;
		position: relative;

		--marker-border-size: 5px;
	}
	
}