  /*
   * 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: #ff8c00;
    border-radius: 50%;
    color: #263238;
    display: flex;
    font-size: 14px;
    gap: 15px;
    height: 30px;
    justify-content: center;
    padding: 4px;
    position: relative;
    transition: all 0.3s ease-out;
    width: 30px;
  }
  
  .property::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #ff8c00;
    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 .address {
    color: #808080;
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 5px;
  }
  
  .property .features {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
  
  .property .features > div {
    align-items: center;
    color: #808080;
    font-size: 12px;
    gap: 5px;
    padding: 5px;
  }
  
  /*
   * Property styles in highlighted state.
   */
  .property {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    height: 170px;
    padding: 8px 15px;
    width: auto;
  }
  
  .property::after {
    border-top: 9px solid #FFFFFF;
  }
  
  .property .img {
    display: flex;
  }
  .property .details {
    display: flex;
  }

  .property .img img {
    width: 110px;
  }

  /* OriginalCSS edit */
  .gm-style-iw-chr {
    height: 30px;
  }  
  .gm-style-iw-ch {
    padding: 5px !important;
    margin: 5px !important;
  }
