.property-list-item-container {
  --compact-height: 50px;
  --full-height: 115px;
}

.property {
  width: 100%;
  overflow: auto;
  border: 1px solid #2b879e;
  background-color: white;
  margin-bottom: 10px;
  position: relative;
  border-radius: 5px;
  min-height: var(--compact-height);
  cursor: pointer;
}

.property-list-item-container.compact-mode .property {
  cursor: auto;
}

.property.active {
  background-color: #f7f7c9;
  border: 1px solid #6596a2;
}

property-list-item:last-child > .property {
  margin-bottom: 0px;
}

.property .image > .image {
  background-position: 50%;
  background-size: cover;
  height: var(--full-height);
  text-align: center;
  background-color: #e6f2ff;
}

.property-list-item-container.compact-mode .property .image > .image {
  height: var(--compact-height);
}

.property .data {
  padding: 5px;
  height: var(--full-height);
}

.property-list-item-container.compact-mode .property .data {
  padding: 5px;
  height: var(--compact-height);
}

.property.map .data {
  padding: 5px;
  height: auto;
}

.property .title {
  font-weight: bold;
  width: 100%;
}

.property .address {
  color: #007e80;
}

.property-list-item-container .property .price {
  color: #2b879e;
  font-weight: bold;
  display: inline-block;
  width: calc(100% - 154px);
  vertical-align: top;
  min-height: 40px;
}

.property-list-item-container .property .price.compact {
  min-height: 20px;
}

.property-list-item-container .property .amenities-detail {
  min-height: 20px;
}

.property-list-item-container.compact-mode .property .price {
  width: 100%;
}

.property-list-item-container .property .price .tags-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}

.property-list-item-container .property .price .tags-container .reference-tag {
  white-space: nowrap;
}

.property-list-item-container .property .price .tags-container .tag {
  margin-right: 2px;
}

.property .owner-logo {
  width: 150px;
  display: inline-block;
  vertical-align: top;
}

.property .owner-logo .logo {
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.property .contact-details {
  color: #004853;
  font-weight: bolder;
}

.property .delete-from-owner {
  position: absolute;
  color: #ff0707;
  z-index: 1;
  font-size: 30px;
  border-radius: 50%;
  background-color: grey;
  width: 35px;
  text-align: center;
  height: 35px;
  margin-top: -5px;
  margin-left: -5px;
  cursor: pointer;
}

.property-owner-percentage {
  position: absolute;
  z-index: 1;
  width: 110px;
  cursor: pointer;
  left: -30px;
  margin-top: 45px;
}

.property-list-item-container {
  position: relative;
}
