.clm-marker {
  position: absolute;
  transform: translate(-50%, -100%);
}
.clm-marker .pin-label {
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.clm-frontend-map {
  width: 100%;
  height: 700px;
}
.pin-label {
    position: absolute;
    background: #fff;
    padding: 3px 6px;
    font-weight: 500;
    white-space: nowrap;
    transition: 300ms all;
}
	
/* .pin-wrap img, .pin-wrap svg{
	width: 32px;
    height: 32px;
} */

.label-right {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.label-left {
    right: 100%;
    top: 50%;
    transform: translate(0px, -50%);
}
.label-top {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.label-bottom {
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0px);
}

/* LIST VIEW MAP */

  .custom-map-list {
        grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    display: grid;
    list-style:none;
}

	.custom-map-list li a {
    display: flex;
    align-items: center;
    gap: 0;
	        color: #100E0E;
        font-weight: 600;
        line-height: 20px;
		padding: 12px 15px;
    text-decoration:none;
}
	
	.custom-map-list li a:hover {
    color: #11693e;
}
	
	.custom-map-list li {
    background: #fff;
}

.clm-frontend-map[data-view="list"] .custom-map-list li {
    background: #fff;
    border: 1px solid #11693e;
}
	
	.clm-frontend-map[data-view="list"] .custom-map-list li:hover {
    background: #fff;
}
	
		.clm-frontend-map[data-view="list"] .custom-map-list li a:hover {
    color: #11693e;
}

