  .acf-map {
    width: 100%;
    height: 600px;
    border: 0;
    margin: 0;
		border-radius: 20px;
		overflow: hidden;
		background: var(--color-lightblue);
		color:  var(--color-lightblue);
  }
  /* fixes potential theme css conflict */
  
  .acf-map img {
    max-width: inherit !important;
  }

.acf-map .marker {
	display: none;
}

.acf-map .gm-style .gm-style-iw-c {
	border-radius: 2px;
	color: var(--color-black);
padding: 20px !important;
    box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}
.acf-map .gm-style .gm-style-iw-chr {
	position: absolute;
	top: 4px;
	right: 4px;
}
.gm-style-iw-ch {
	display: none !important;
}
.acf-map button.gm-ui-hover-effect {
    width: 16px !important;
    height: 16px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	background: black;
	color: white;
}
.acf-map button.gm-ui-hover-effect span {
    margin: 0 !important;
	    width: 16px !important;
    height: 16px !important;
}
.infowindow {
	padding: 0px;
	padding-right: 0px;
	min-width: 150px;
	max-width: 300px;
}
.infowindow h6 {
	margin-bottom: 20px;
}
.infowindow p {
	line-height: 1.2;
	font-size: 14px;
}
.infowindow *+* {
	margin-top: 0.5em;
}
.infowindow img {
	width: 100%;
	max-width: 250px !important;
	height: auto;
}

.checkbox-filter {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.checkbox-filter label {
	display: flex;
	padding: 4px 0;
	gap: 8px;
	align-items: center;
	line-height: 1.2;
	cursor: pointer;
}
.checkbox-filter label input {
	height: 13px;
	width: 13px;
	accent-color: var(--color-blue);
}

.remove-filter {
	color: #B2B2B2;
	font-size: 16px;
	text-decoration: underline;
	font-weight: 700;
	transition: 100ms ease-in-out all;
}
.remove-filter:hover {
	color: var(--color-black-60);
}


@media screen and (max-width: 768px) {
	.checkbox-filter {
        columns: 2;
        column-gap: 32px;
        display: block;
		margin-bottom: 20px;
}
	.remove-filter {
		margin-bottom: 20px;
	}
	.acf-map {
		aspect-ratio: 16 / 9;
		height: auto;
	}
}

@media screen and (max-width: 500px) {
	.checkbox-filter {
        columns: 1;
}
}