.section-property-detail {
  margin-top: 4rem;
}
.swiperImageRealEstate {
  height: 50rem;
  object-fit: cover;
}
.thumbImageRealEstate {
  width: 100% !important;
  height: 10rem;
  object-fit: cover;
}
#contactInfo {
  border: 2px solid #f1913d;
  border-radius: 10px;
  padding: 1.5rem 5rem;
  background: #f1913d;
  cursor: pointer;
}
#contactInfo:hover {
  background-color: #ff6f36;
}
#contactInfo li {
  font-weight: 600;
  gap: 1rem;
  font-size: 1.5rem;
  color: #fff;
}
#contactInfo li span {
  color: #fff;
}
.contactWithZalo {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 10px;
}
.contactWithZalo:hover {
  background-color: #eee;
}
.contactWithZalo a {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 5rem;
  font-weight: 600;
}
.tf-sidebar .sidebar-ads .logo {
  position: absolute;
  top: 0px;
  left: 25px;
  width: 30rem;
  height: 42px;
}
#titleRealEstate {
  font-size: 2.5rem;
  font-weight: 600;
}
.box-short-info-detail {
  display: flex;
  align-items: flex-start;
  gap: 4rem !important;
}
.info-detail-short {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.box-info-detail-description {
  margin-bottom: 3rem;
}
#box-info-detail-video .widget-video {
  margin-bottom: 4rem;
}
.info-title-project {
  display: flex;
  justify-content: space-between;
}
.info-title-project span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c20;
  cursor: pointer;
  text-decoration: underline;
}
.info-title-project span:hover {
  color: #db7676;
}
.info-detail-project {
  gap: 2rem;
}
.box-image-detail-project img {
  width: 13rem;
  height: 7rem;
  object-fit: contain;
  border-radius: 10px;
}
.title-detail-project a {
  font-size: 1.75rem;
  font-weight: 600;
}
.status-project {
  margin-right: 1rem;
}
.acreage-project {
  margin-left: 1rem;
}
#buttonDetailContact:hover {
  cursor: pointer;
}
.description-collapsed {
  max-height: 150px;
  overflow: hidden;
  position: relative;
}

.description-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}
.action-button-list .list-action li .item-action-detail {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--Line);
  border-radius: 10px;
}
.action-button-list .list-action li .item-action-detail:hover {
  cursor: pointer;
  background-color: #f1913d;
  color: #fff;
}
.box-type-report {
  width: 60rem;
  height: 5rem;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #eff1f5;
  padding: 4px;
  border-radius: 2rem;
  overflow: hidden;
  align-items: center;
}

.slider-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 8px);
  height: calc(100% - 8px);
  background-color: #1c1f22;
  border-radius: 2rem;
  transition: all 0.3s ease;
  z-index: 0;
}

.type-realestate,
.type-map {
  width: 50%;
  font-size: 1.75rem;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.type-realestate i,
.type-map i {
  font-size: 2rem;
  margin-right: 1rem;
}

.type-realestate.checked,
.type-map.checked {
  color: #fff;
}

.type-realestate.nochecked,
.type-map.nochecked {
  color: #737d87;
}
.box-content-report > div {
  display: none;
}
.box-content-report > .box-realestate-report {
  display: block;
}
.box-realestate-report,
.box-map-report {
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.report-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.report-reasons {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.report-reasons li {
  margin-bottom: 1rem;
}

/* Custom checkbox animation */
.report-reasons label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  user-select: none;
  font-size: 1.5rem;
}

.report-reasons input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #555;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.report-reasons input[type="checkbox"]::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.2s ease;
}

.report-reasons input[type="checkbox"]:checked {
  background: #f1913d;
  border-color: #f1913d;
}

.report-reasons input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}
.box-contact-report {
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.report-other textarea,
.report-user-info input {
  width: 100%;
  min-height: 36px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 10px;
  outline: none;
  font-size: 14px;
  resize: vertical;
  transition: border-color 0.2s;
}

.report-other textarea {
  min-height: 60px;
}

.report-user-info h4 {
  margin: 15px 0 8px;
  font-size: 15px;
  font-weight: 600;
}

.report-user-info input:focus,
.report-other textarea:focus {
  border-color: #f1913d;
}
.box-info-report {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}
.reported {
  width: 100%;
  font-size: 1.75rem;
  font-weight: 600;
  padding: 1rem;
  background-color: #ccc;
  color: #1c1f22;
}
.reported:hover {
  background-color: #f1913d;
  color: #fff;
}
.item-action-detail.actionShareRealEstate.active {
  background-color: #f1913d;
  color: #fff;
}
.box-share-realestate {
  position: relative;
}
.box-option-sharing {
  display: none;
  position: absolute;
  top: 6rem;
  left: -20rem;
  width: 24rem;
  box-shadow: 0 4px 8px 0 rgba(40, 44, 46, 0.122);
  border-radius: 10px;
  background: #fff;
  z-index: 10;
}
.box-option-sharing:hover {
  color: #1c1f22;
}
.list-option-sharing li {
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}

.list-option-sharing li .fb-share-button {
  width: 100%;
}
.list-option-sharing li .fb-share-button a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
    gap: 2rem;
}
.list-option-sharing li:hover {
  background-color: #ccc;
  cursor: pointer;
  border-radius: 10px;
}
.list-option-sharing li img {
  width: 4rem;
  height: 4rem;
}
