/* Table */

tr.row-hidden {
  display: none;
}

tr.active + tr.row-hidden {
  display: table-row;
}
table td .status.reserved:before {
  background-color: #ff9800;
}

/* SVG */

.section-table .picture-plan {
  height: 100%;
  margin: 0 auto 6rem;
  max-width: 176rem;
}
@media screen and (max-width: 830px) {
  .section-table .picture-plan {
    margin-bottom: 4rem;
  }
}
#appartements svg .lot {
  cursor: pointer;
}
svg .lot.available .area {
  fill: #7f7c15;
}
svg .lot.reserved .area {
  fill: #ff9800;
}
svg .lot.sold .area {
  fill: #c70000;
}
svg .lot.available circle {
  fill: #46ce86;
}
svg .lot.reserved circle {
  fill: #ff9800;
}
svg .lot.sold circle {
  fill: #c70000;
}

svg .lot .area {
  opacity: 0;
  fill: white;
}
svg .lot:hover .area {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .form-col {
    flex: 0 0 100%;
    width: 100%;
  }
}

.section-map .map-block {
  border: unset;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}