@charset "utf-8";





#display_property_listing_list_container {
  max-height: 70vh;
}
#display_property_listing_list {
  table-layout: fixed;
}
#display_property_listing_list_container div+div {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #cccccc;
}
#display_property_listing_list tr th:first-child {
  position:sticky;
  top: 0px;
  background-color:#f2f2f2;
  z-index:2;
}
#display_property_listing_list tr th:nth-child(2) {
  position:sticky;
  top: 0px;
  left:0;
  background-color:#f2f2f2;
  z-index:2;
}
#display_property_listing_list tr th:nth-child(n+3) {
  position:sticky;
  top: 0px;
  background-color:#f2f2f2;
  z-index:1;
}
#display_property_listing_list tr td:nth-child(2) {
  position:sticky;
  left:0px;
  background-color:#f2f2f2;
  z-index:1;
}
@media (min-width: 768px) {
  #display_property_listing_list tr th:first-child {
    position:sticky;
    top: 0px;
    left:0px;
    background-color:#f2f2f2;
    z-index:2;
  }
  #display_property_listing_list tr th:nth-child(2) {
    position:sticky;
    top: 0px;
    left:200px;
    background-color:#f2f2f2;
    z-index:2;
  }
  #display_property_listing_list tr th:nth-child(n+3) {
    position:sticky;
    top: 0px;
    background-color:#f2f2f2;
    z-index:1;
  }
  #display_property_listing_list tr td:first-child {
    position:sticky;
    left: 0px;
    background-color:#f2f2f2;
    z-index:1;
  }
  #display_property_listing_list tr td:nth-child(2) {
    position:sticky;
    left:200px;
    background-color:#f2f2f2;
    z-index:1;
  }

}
.display_property_listing_list_image_container {
  aspect-ratio: 5 / 3;
  background: url("img/default_thumb_550.gif") center center / cover no-repeat;
  background-size: cover;
}




#floating_share_panel {
  position: absolute;
  width: 170px;
  height: 170px;
  color: white;
  z-index: 7000;
  padding: 0;
  top: 0px;
  left: 0px;
}
#floating_share_panel #floating_share_panel_container {
  position: relative;
  width: 100%;
  height: 100%;
  background: RGBA(0, 0, 0, 0.75);
  border-radius: 50% !important;
}
#floating_share_panel .btn {
  position: absolute;
  width: 50px;
  height: 50px;
  padding: 0;
}
#floating_share_panel i.bi {
  font-size: 2rem;
  line-height: 1;
}
#floating_share_panel .btn:nth-child(1) {
  left: 10px;
  top: 35px;
}
#floating_share_panel .btn:nth-child(2) {
  left: 10px;
  top: 85px;
}
#floating_share_panel .btn:nth-child(3) {
  left: 60px;
  top: 10px;
}
#floating_share_panel .btn:nth-child(4) {
  left: 60px;
  top: 110px;
}
#floating_share_panel .btn:last-child {
  left: 110px;
  top: 60px;
}





.project_logo {
  -webkit-filter: drop-shadow(5px 5px 5px var(--bs-body-color));
  filter: drop-shadow(5px 5px 5px var(--bs-body-color));
}





.image_hover_overlay_container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  background: url("img/default_thumb_550.gif") center center / cover no-repeat;
  background-size: cover;
}
.image_hover_overlay_container img {
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.image_hover_overlay_container:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.image_hover_overlay_container .overlay_icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: RGBA(0, 0, 0, 0.5);
  z-index: 1000;
}
.image_hover_overlay_container:hover .overlay_icon {
  opacity: 1; 
}
.image_hover_overlay_container .overlay_icon i {
  color: white;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
