/* new map location markers */
.property {
  align-items: center;
  background-color: transparent;
  color: var(--wp--preset--color--custom-map-icon, #000000) !important;
  display: flex;
  font-size: 32px;
  gap: 15px;
  height: 30px;
  justify-content: center;
  padding: 4px;
  position: relative;
  position: relative;
  transition: all 0.3s ease-out;
  width: 30px;
  border: none !important;
}
.property .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #000;
}
.property .icon svg {
  height: 20px;
  width: auto;
}
.property .details {
  display: none;
  flex-direction: column;
  flex: 1;
  font-size: 14px;
  padding:5px auto;
  text-align: center;
  z-index: 1001;
}
.property .details h4{
	margin:0;
	font-size: 1.2rem;
}
.property .details img{
	max-width: 250px;
}
.property .city {
  color: var(--wp--preset--color--contrast, #000000) !important;
  margin-bottom: 10px;
  margin-top: 5px;
}
.property .features {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.property .features > div {
  align-items: center;
  background: var(--wp--preset--color--base) !important;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: flex;
  font-size: 10px;
  gap: 5px;
  padding: 5px;
}
.property.highlight {
  background-color: var(--wp--preset--color--base, #ffffff) !important;
  border-radius: 8px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  height: auto;
  padding: 1.5rem;
  width: auto;
  z-index: 1001;
  position: relative;
  border: none !important;
}
.fa-sr-only{
    display: none;
}
/*
.property.highlight::after {
  border-top: 9px solid #FFFFFF;
}
  */

.property.highlight .details {
  display: flex;
}

.property.highlight .icon {
  display: none;
}


.custom-cluster.cluster-hover {
  background-color: #ff5500 !important;
  transform: scale(1.1);
  transition: all 0.2s ease;
}