@charset "utf-8";
/* CSS Document */

:root {
/*  --house-color: #247086;*/
--house-color: #ffffff;
}

/*
 * Optional: Makes the sample page fill the window.
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/*
 * Always set the map height explicitly to define the size of the div element
 * that contains the map.
 */
#map {
  height: 100%;
  width: 100%;
}

/*
 * Property styles in unhighlighted state.
 */
.property {
  align-items: center;
  background-color: #FF0000;
  border-radius: 50%;
  color: #000000;
  display: flex;
  font-size: 14px;
  gap: 15px;
  height: 25px;
  justify-content: center;
  padding: 4px;
  position: relative;
  transition: all 0.3s ease-out;
  width: 25px;
}

.property::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFFFFF;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 95%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}

.property .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #ffffff;
}

.property .icon svg {
  height: 1px;
  width: auto;
}

.property .details {
  display: none;
  flex-direction: column;
  flex: 1;
}

.property .address {
  color: #000000;
  font-size: 12px;
  /*margin-bottom: 10px;*/
  margin-top: 5px;
}
.property .myverified {
  color: #247086;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.property .cname {
  font-weight: 600;
  margin-top: 5px;
}


/*
 * Property styles in highlighted state.
 */
.property.highlight {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  height: 105px;
  padding: 8px 15px;
  width: auto;
}

.property.highlight::after {
  border-top: 9px solid #ffffff;
}

.property.highlight .details {
  display: flex;
}

.property.highlight .icon svg {
  width: 0px;
  height: 0px;
}


/*
 * House icon colors.
 */
.property.highlight:has(.fa-house) .icon {
  color: var(--house-color);
}

.property:not(.highlight):has(.fa-house) {
  background-color: var(--house-color);
  border: 2px solid red;
}

.property:not(.highlight):has(.fa-house)::after {
  /*border-top: 9px solid var(--house-color);*/
border-top: 8px solid red;
/*  border-style: solid;
  border-color: red;*/
}

/*
