.guesty-results {
  display: flex;
  flex-wrap: wrap;
  margin: 70px 0;
  gap: 20px;
}

.guesty-results-search {
  margin-top: 100px;
}
.guesty-property {
  position: relative;
}
.guesty-property-unavailable .guesty-property__image-box, .guesty-property-unavailable .guesty-property__info {
opacity: 0.6;
}
.guesty-property__unavailable-info {
  position: absolute;
  padding: 4px 25px;
  background-color: #FA3134;
  top: 20px;
  left: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}
.guesty-property__image-box {
  height: 350px;
  width: 100%;
  overflow: hidden;
  display: block;
}
.guesty-property__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  transition: 0.3s;
}
.guesty-property__image:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
.guesty-property__info {
  margin-top: 24px;  
}
.guesty-property__heading {
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 14px;
  overflow: unset;
  max-height: unset;
}
.guesty-property__heading:after {
  content: '';
  width: 100px;
  height: 1px;
  background-color: black;
  bottom: -3px;
  left: 0;
  position: absolute;
}
.guesty-property__heading-link { 
  color: #1A1A18;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-decoration: none !important;
}
.guesty-property__tag {
  background: #1A1A18;
  height: 32px;
  padding: 4px 25px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  display: inline-block;
  margin-top: 15px;
}
.guesty-property__place {
  display: flex;
  gap: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.guesty-property__place div {
  position: relative;
  margin-left: 15px;
}
.guesty-property__place div:after {
  content: '';
  position: absolute;
  left: -13px;
  top: 10px;
  background-color: #7ebdaf;
  width: 5px;
  height: 5px;
  border-radius: 10px;
}

@media (max-width: 1000px) {
  .guesty-property {
    width: 100%;
  }
}

.guesty-results-with-map {
  display: flex;
  gap: 20px;
}

.guesty-results-with-map .guesty-results {
  flex: 1 1 50%;
}
.guesty-results-with-map .guesty-property__image-box {
  max-height: 250px;
}
.guesty-results-map {
  flex: 1 1 50%;
  margin: 70px 0;
  padding-left: 20px;
  position: sticky;
  height: fit-content;
  top: 120px;
}


.leaflet-popup-content {
  font-size: 14px !important;
}
.guesty-map-preview .guesty-property {
  margin-top: 50px;
}
.guesty-map {
  height: 700px; width: 100%;
}

@media (max-width: 1000px) {
  .guesty-results-with-map {
    flex-wrap: wrap-reverse;
  }
  .guesty-results-map {
    padding-left: 0;
    margin: 30px 0;
  }
  .guesty-map {
    height: 400px; width: 100%;
  }
  .guesty-map-preview .guesty-property {
    margin-top: 40px;
  }
  .guesty-results-with-map .guesty-results {
    margin-top: unset;
  }
}

@media (max-width: 500px) {
  .guesty-results {
    flex-direction: column;
  }
  .guesty-property-wrapper {
    width: 100% !important;
  }
}


.guesty-input__guests::-webkit-outer-spin-button,
.guesty-input__guests::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.guesty-input__guests {
  -moz-appearance: textfield;
}

.guesty-property-wrapper {
  display: block;
  width: calc(50% - 10px);
  margin-bottom: 30px;
  position: relative;
}