html {
  overflow-x: hidden;
}

nav {
  background-color: #FFFFFF;
}

body:has(.main-site .bodyPropertySearch) {
  --background-navbar: var(--linear-dark);
  --background-blur: #fafafa4f;
  --text-navbar-link: white;
}

.map_container {
  height: 749px;
  position: relative;
  overflow: hidden;
}

#map-canvas {
  height: 100%;
  width: 100%;
}

.custom-marker {
  background-color: transparent;
  width: 50px;
  height: 50px;
}

.marker-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.previewInfo {
  max-width: calc(100% - 80px);
  width: 459px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -100%;
  background-color: #FFF;
  transition: .5s all ease;
  -webkit-transition: .5s all ease;
  -moz-transition: .5s all ease;
  -ms-transition: .5s all ease;
  -o-transition: .5s all ease;
}

.previewInfo .close-preview {
  position: absolute;
  top: 20px;
  left: -40px;
  height: 40px;
  width: 40px;
  pointer-events: 1;
  cursor: pointer;

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

html[dir="rtl"] .previewInfo .close-preview {
  left: auto;
  right: -40px;
}

.previewInfo.showPreview {
  right: 0;
}

.previewInfo .containerImage {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 250px;
}

.previewInfo .containerImage .imgHouse {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.previewInfo .heart {
  position: absolute;
  z-index: 2;
  background-color: transparent;
  border: none;
  outline: none;
  height: 34px;
  width: 34px;
  top: 25px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.previewInfo .heart img {
  position: absolute;
  left: 0;
  top: 0;
  transition: .5s all ease;
  -webkit-transition: .5s all ease;
  -moz-transition: .5s all ease;
  -ms-transition: .5s all ease;
  -o-transition: .5s all ease;
}

.previewInfo .heart .heartFill {
  opacity: 0;
}

.previewInfo .heart:hover img:not(.heartFill) {
  opacity: 1;
}

.parentSwiper .heart.active img.heartFill,
.previewInfo .heart:hover img.heartFill {
  opacity: 1;
}

.previewInfo .share {
  position: absolute;
  z-index: 2;
  background-color: white;
  border: none;
  outline: none;
  height: 48px;
  width: 48px;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 1px 0 #9f9f9f;
  transition: .5s all ease;
  -webkit-transition: .5s all ease;
  -moz-transition: .5s all ease;
  -ms-transition: .5s all ease;
  -o-transition: .5s all ease;
}


.previewInfo .share:hover {
  box-shadow: 0 0 10px 2px #9f9f9f;

}

@media (max-width:778px) {
  .previewInfo .share {
    width: 32px;
    height: 32px;
  }

  .previewInfo .heart {
    width: 28px;
    height: 28px;
    top: 20px;
  }
}


.previewInfo .containerInfo {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
}

.previewInfo .containerInfo .titleHouse {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 25.3px;
  color: var(--dark-blue);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.previewInfo .containerInfo .positionHouse {
  font-size: clamp(15px, 2.4vw, 17px);
  font-weight: 300;
  line-height: 20.7px;
  color: rgba(32, 58, 69, .6);
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.previewInfo .containerInfo .price {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.previewInfo .containerInfo .price span {
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 300;
  line-height: 20.7px;
  color: rgba(32, 58, 69, .6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.previewInfo .containerInfo .containerPrice {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 32.2px;
  color: var(--dark-blue);
}

.previewInfo .containerInfo .propertyHouse {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.previewInfo .containerInfo .propertyHouse .cardProperty {
  display: flex;
  gap: 10px;
  width: calc(100% / 2 - 24px);
}

.previewInfo .containerInfo .propertyHouse .imgProperty img {
  height: 100%;
}

.previewInfo .containerInfo .propertyHouse .descriptionProperty {}

.previewInfo .containerInfo .propertyHouse h5 {
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 300;
  line-height: 18.4px;
  color: rgba(32, 58, 69, .6);
  margin-bottom: 4px;
}

.previewInfo .containerInfo .propertyHouse p {
  font-size: clamp(16px, 2.4vw, 18px);
  margin-bottom: 0;
}

.previewInfo .containerInfo .custom-learnmore,
.previewInfo .containerInfo .learnMore {
  background-color: var(--light-blue);
  color: #FFF;
  text-align: center;
  outline: none;
  padding-block: 19.5px;
  border-radius: 111px;
  -webkit-border-radius: 111px;
  -moz-border-radius: 111px;
  -ms-border-radius: 111px;
  -o-border-radius: 111px;
  margin-top: 34px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.4px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  transition: .3s all ease-in;
}

.previewInfo .containerInfo .custom-learnmore:hover,
.previewInfo .containerInfo .learnMore:hover {
  background-color: #007aaa;
}

.bannerPropertySearch.customBanner .sectionSelect {
  gap: 12px;
  flex-wrap: wrap;
}

.bannerPropertySearch.customBanner .sectionSelect .container_select {
  flex: 1 1 auto;
  max-width: 350px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

@media(max-width:778px) {
  .bannerPropertySearch.customBanner .sectionSelect .container_select {
    max-width: 100%;
  }
}

.bannerPropertySearch.customBanner .sectionSelect .container_select .search-item .nice-search {
  width: 100%;
  padding: 4px 8px
}

.bannerPropertySearch.customBanner .sectionSelect .container_select .list {
  max-height: 300px;
  overflow-y: auto
}