.real-estate-detail .main-image {
  position: relative;
}
.real-estate-detail .main-image img {
  width: 100%;
}
.real-estate-detail .main-image .information {
  position: relative;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .real-estate-detail .main-image .information {
    background: rgba(0 0 0 0.3);
    background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--white-color);
    padding: 48px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.real-estate-detail .main-image .information .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .real-estate-detail .main-image .information .title {
    flex-direction: row;
  }
}
.real-estate-detail .main-image .information .title h2 {
  margin: 0;
}
@media (min-width: 768px) {
  .real-estate-detail .main-image .information .title h2 {
    color: var(--white-color);
  }
}
.real-estate-detail .main-image .information .title .price {
  font-size: 30px;
  line-height: 140%;
  background-color: var(--primary-500);
  font-weight: 900;
  color: var(--white-color);
  padding: 10px 20px;
}
.real-estate-detail .main-image .information .separator {
  height: 1px;
  background-color: var(--gray-300);
}
.real-estate-detail .main-image .information .features {
  display: flex;
  gap: 24px;
  align-items: center;
}
.real-estate-detail .main-image .information .features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
}
.real-estate-detail .main-image .information .features .fa-solid {
  font-size: 18px;
}
.real-estate-detail .main-image .information .features font {
  display: none;
}
@media (min-width: 768px) {
  .real-estate-detail .main-image .information .features font {
    display: block;
  }
}
.real-estate-detail .main-image .information .link .alternate-button {
  background-color: transparent;
  border-color: var(--white-color);
  color: var(--white-color);
}
.real-estate-detail .main-image .information .link .alternate-button:hover {
  background-color: var(--white-color);
  color: var(--default-font-color);
}
.real-estate-detail .images-gallery {
  display: flex;
  padding: 12px;
  justify-content: center;
  gap: 12px;
  background-color: var(--gray-100);
  flex-wrap: wrap;
}
.real-estate-detail .detail-left .features {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.real-estate-detail .detail-left .features .feature {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  .real-estate-detail .detail-left .features .feature {
    font-size: 16px;
  }
}
.real-estate-detail .detail-left > div > h4 {
  margin: 0;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 12px;
  font-weight: 900;
}
.real-estate-detail .detail-left .video iframe {
  width: 100%!important;
  height: 300px!important;
}
@media (min-width: 768px) {
  .real-estate-detail .detail-left .video iframe {
    height: 600px!important;
  }
}
.real-estate-detail .detail-left .map {
  position: relative;
  background-color: white;
}
.real-estate-detail .detail-left .map iframe {
  width: 100%!important;
  height: 300px!important;
  pointer-events: none;
}
@media (min-width: 768px) {
  .real-estate-detail .detail-left .map iframe {
    height: 600px!important;
  }
}
.real-estate-detail .detail-left .map::after {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--primary-500);
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .real-estate-detail .detail-left .map::after {
    width: 300px;
    height: 300px;
  }
}
.real-estate-detail .detail-right .sticky-panel {
  position: sticky;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.real-estate-detail .detail-right .sticky-panel > div {
  padding: 24px;
  background-color: var(--gray-100);
}
.real-estate-detail .detail-right .sticky-panel .price-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.real-estate-detail .detail-right .sticky-panel .price-intro .code {
  color: var(--gray-300);
  font-size: 14px;
}
.real-estate-detail .detail-right .sticky-panel .price-intro .price {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-500);
  text-align: end;
}
.real-estate-detail .detail-right .sticky-panel .price-intro .price .old-price {
  font-size: 20px;
  font-weight: 400;
  text-decoration: line-through;
  text-align: end;
  color: var(--default-font-color);
}
.real-estate-detail .detail-right .sticky-panel .price-intro .vip-credit {
  display: inline-block;
  background-color: #0057ff;
  color: var(--white-color);
  padding: 3px 15px;
  border-radius: 100px;
  font-weight: 400;
}
.real-estate-detail .detail-right .sticky-panel .calculator {
  display: flex;
  flex-direction: column;
  gap: 8;
}
.real-estate-detail .detail-right .sticky-panel .calculator h4 {
  margin: 0;
  font-weight: 900;
}
