body.blocked {
  overflow: hidden;
}
#property-table {
	display: none;
}
.flats-table-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: ease 0.3s all;
}

.flats-table-popup.visible {
  visibility: visible;
  opacity: 1;
}

.flats-table-popup-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.flats-table-popup-content h2 {
  text-align: center;
}

.flats-table-popup-content p {
  text-align: center;
}

.flats-table-popup .close {
  position: fixed;
  right: 20px;
  top: 20px;
  background: rgba(0, 0, 0, 0.04);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: ease 0.3s all;
  cursor: pointer;
}
.flats-table-wrapper {
	
}
.flats-table-container {
	width: 100%;
}
@media (max-width: 799px) {
  .flats-table-container {
    overflow: auto;
  }
  .flats-table {
    min-width: 550px;
  }
  .flats-table * {
    font-size: 14px;
  }
}
.flats-table-header {
  background-color: #AB9783;
}

.flats-table-header * {
  color: #fff;
  font-weight: 600;
}

.flats-table-row {
  display: flex;
}

.flats-table-row .status {
  font-weight: 600;
}

.flats-table-row.zarezerwowany .status {
  color: orange;
}

.flats-table-row.wolny .status {
  color: green;
}

.flats-table-row.sprzedany .status {
  color: red;
}

.flats-table-body .flats-table-row {
  border-bottom: 1px solid #f4f4f4;
}

.flats-table-body .flats-table-row:nth-child(odd) {
  background-color: #fafafa;
}

.flats-table-body .flats-table-row:hover {
  display: flex;
  background-color: #f4f4f4;
}

.flats-table-cell {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  min-width: 0;
  padding: 12px 16px;
  line-height: 1;
  text-align: center;
}

.flats-table-cell.has-price {
  cursor: pointer;
}

@media (max-width: 880px) {
  .flats-table-row {
    padding-left: 5px;
    padding-right: 5px;
  }
  .flats-table-cell {
    padding-left: 5px;
    padding-right: 5px;
  }
  .flats-table-cell.name {
    max-width: 90px;
  }

  .flats-table-cell.garden,
  .flats-table-cell.plot {
    max-width: 80px;
  }
}
@media (max-width: 799px) {
  .flats-table-cell.name {
    max-width: 60px;
  }

  .flats-table-cell.garden,
  .flats-table-cell.plot {
    max-width: 80px;
  }
  .flats-table-cell.card {
    max-width: 60px;
  }
}

.flats-table-cell span {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.flats-table-cell svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}



.price-history {
  margin: 0;
  padding: 0;
}

.price-history li {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
  padding: 10px;
}

@media (max-width: 47.99em) {
  .price-history li {
    padding-left: 0;
    padding-right: 0;
  }
}

.price-history li:first-child span {
  font-weight: 600;
}

.price-history li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-history li::before {
  display: none;
}

.price-history li span {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  align-items: center;
  line-height: 1.2;
}

@media (max-width: 31.25em) {
  .price-history li span {
    font-size: 0.875rem;
  }
}

.price-history li .percent {
  font-size: 0.875rem;
}

.price-history li .percent.up {
  color: red !important;
}

.price-history li .percent.down {
  color: green !important;
}