/*
Theme Name: My Custom Theme
Theme URI: https://example.com/my-custom-theme
Author: Your Name or Company
Author URI: https://example.com
Description: A custom WordPress theme based on a static HTML template.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: responsive, custom-header, custom-background, one-column, two-columns

*/

.marker_googlemap {
    background-color: #212121 !important;
    border: 2px solid #fff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 8px;
    position: relative;
    margin-left: -22px;
    margin-top: -22px;
    overflow: hidden;
    text-align: center;
    z-index: 999;
    color: #fff;
    font-weight: bold;
}

.marker_googlemap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.marker_googlemap::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    display: block;
    margin-left: -5px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    border-top: 8px solid #fff;
    z-index: 2;
}

.marker_googlemap::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    display: block;
    margin-left: -5px;
    position: absolute;
    bottom: -7px;
    left: 50%;
    border-top: 8px solid #212121;
    z-index: 12;
}

.map_infowindowinfo {
    color: #444;
    display: inline-block;
    line-height: 1.3em;
    padding: 7px 0 5px;
    position: relative;
}

.right_mappart {
    float: left;
    width: 70%;
}

.load_map_img {
    float: left;
}

.right_mappart h4 {
    font-size: 14px;
    color: #333;
    font-family: Roboto, Arial;
    font-size: 13px;
    background-color: white;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
    margin-top: 0;
    margin-bottom: 3px;
}

.load_map_img {
    float: left;
    margin-right: 10px;
    border: 1px solid rgba(204, 204, 204, 0.27);
}

.right_mappart span {
    float: left;
    margin-left: 3px;
    padding-left: 4px;
    /* border-left: 1px solid #0b56a4; */
    position: relative;
}

.right_mappart strong {
    text-transform: capitalize;
    color: #0b56a4;
}

.load_map_img img {
    object-fit: contain;
    height: 50px;
}

.right_mappart span::before {
    content: '';
    width: 1px;
    height: 14px;
    background: rgba(11, 86, 164, 0.41);
    position: absolute;
    right: -4px;
    top: 1px;
}

.right_mappart span:nth-of-type(1) {
    padding-left: 0;
    margin-left: 0;
}

.right_mappart span:nth-of-type(3)::before {
    display: none;
}

.right_mappart h4 a {
    color: inherit;
}

.marker_googlemap.already_seen {
    background: #e6e6ff !important;
}

.marker_googlemap.already_seen::before {
    border-top-color: #e6e6ff !important;
}

.marker_googlemap.already_seen:hover,
.marker_googlemap:hover {
    background: #a3a3c2 !important;
    color: #000;
}

.marker_googlemap.pulse::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    margin-left: -22px;
    margin-top: -22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse-ring 1.5s ease-out infinite;
    z-index: 0;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 1;
    }

    80%,
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


.slick-carousel {
    /* display: block; */
    overflow: hidden;
    gap: 20px;
    position: relative;
}

.card.slick-slide {
    margin-right: 20px;
}

.slick-slide:last-child {
    margin-right: 0;
}

.slick-carousel .slick-prev,
.slick-carousel .slick-next{
  position: absolute;
  top: 50%;
  z-index: 2000;
  /* transform: translateY(-50%); */
  z-index: 10;
  background: #000 !important;
  border: none;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  color: #000;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  border-radius: 50%;
}

.slick-prev {
  left: 0.5rem !important; 
}

.slick-next {
  right: 0.5rem !important
}

.slick-prev:hover,
.slick-next:hover {
  background-color: #000;
  color: #fff;
}

.property-img{
    background-color: #000 !important;
}

.property-img>img {
  width: 100%;
  float: left;
  height: 500px;
  object-fit: fill;
}

.property-thumb-imgs {
    float: left;
    width: 100%;
    margin-bottom: 35px;
    overflow: hidden;
    height: 200px;
}
.property-thumb-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}