@charset "UTF-8";
.property-details-header {
  display: flex;
  flex-direction: column;
  gap: var(--number-space-4);
}

.property-details-info-wrapper {
  --accordion-panel-content-pt: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--number-space-4);
}
@media (min-width: 768px) {
  .property-details-info-wrapper {
    gap: var(--number-space-6);
  }
}
.property-details--info {
  display: flex;
  flex-direction: column;
  gap: var(--number-space-4);
}
.property-details--info__gap-small {
  gap: var(--number-space-1);
}
.property-details--headline {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.property-details--headline h4 {
  margin: 0;
}
.property-details--headline svg path {
  fill: var(--color-key-primary);
}

.list-property-detail {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: 0;
  gap: var(--property-highlight-list-gap);
}
.list-property-detail li {
  gap: var(--number-space-1);
}
@media (min-width: 768px) {
  .list-property-detail {
    --property-highlight-list-gap: var(--number-space-5);
    grid-template-columns: repeat(2, 1fr);
  }
}

.list-property-content {
  margin: 0;
}
.list-property-content li {
  display: inline;
  line-height: var(--text-line-height-default);
}
.list-property-content li:not(:last-child)::after {
  position: relative;
  top: -2px;
  margin: 0 0.25ch;
  padding-left: 0.5ch;
  content: "●";
  color: var(--color-static-on-background-light-variant-20);
  font-size: 0.8rem;
}

:root {
  --property-highlight-list-gap: var(--number-space-3);
  --property-highlight-item-direction: column;
  --property-highlight-item-align: auto;
  --property-highlight-item-gap: var(--number-space-2);
  --property-highlight-item-padding: 0px;
  --property-highlight-item-icon-color: var(--color-key-primary);
  --property-highlight-item-text-font-size: var(--font-size-default);
  --property-highlight-item-text-line-height: var(--text-line-height-default);
  --property-hightlight-item-background: transparent;
}

.list-property-highlight,
.list-company-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--property-highlight-list-gap);
}
.list-property-highlight__small,
.list-company-highlight__small {
  --property-highlight-item-direction: row;
  --property-highlight-item-align: center;
  --property-highlight-item-padding: var(--number-space-2);
  --property-highlight-list-gap: var(--number-space-1) var(--number-space-0);
  --property-highlight-item-text-font-size: var(--font-size-small);
  --property-highlight-item-text-line-height: var(--text-line-height-variant-10);
}
.list-property-highlight__small .property-highlight--item:hover,
.list-company-highlight__small .property-highlight--item:hover {
  --property-hightlight-item-background: var(--color-key-variant-20);
}
.list-property-highlight__colored-icon,
.list-company-highlight__colored-icon {
  --property-highlight-item-icon-color: var(--color-key-primary);
}
@media (min-width: 768px) {
  .list-property-highlight__small,
  .list-company-highlight__small {
    --property-highlight-list-gap: var(--number-space-3) var(--number-space-2);
  }
}

.property-highlight--item,
.company-highlight--item {
  display: flex;
  flex-direction: var(--property-highlight-item-direction);
  align-items: var(--property-highlight-item-align);
  padding: var(--property-highlight-item-padding) !important;
  gap: var(--property-highlight-item-gap);
  border-radius: var(--number-corner-1);
  background: var(--property-hightlight-item-background);
}
.property-highlight--item .image-wrapper,
.company-highlight--item .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 2rem;
}
.property-highlight--item svg path,
.company-highlight--item svg path {
  fill: var(--property-highlight-item-icon-color);
}
.property-highlight--text-wrapper,
.company-highlight--text-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--number-space-1);
}
.property-highlight--text-wrapper span:not([class*=headline]),
.company-highlight--text-wrapper span:not([class*=headline]) {
  font-size: var(--property-highlight-item-text-font-size);
  line-height: var(--property-highlight-item-text-line-height);
}
.property-highlight--headline,
.company-highlight--headline {
  color: var(--color-static-on-background-light-primary);
}

.list-property-comment {
  display: flex;
  flex-direction: column;
  gap: var(--number-space-4);
}

.property-comment--item {
  display: flex;
  flex-direction: column;
  padding: var(--number-space-3) var(--number-space-4) !important;
  gap: var(--number-space-4);
  border: 1px solid var(--color-static-background-light-variant-30);
  border-radius: var(--number-corner-2);
}
.property-comment--content {
  display: flex;
  flex-direction: column;
  gap: var(--number-space-2);
}
.property-comment--headline-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--number-space-1) var(--number-space-3);
}
@media (min-width: 576px) {
  .property-comment--headline-wrapper {
    grid-template-columns: 1fr auto;
  }
}
.property-comment--footer {
  display: flex;
  flex-direction: column;
}
.property-comment--date {
  color: var(--color-static-on-background-light-neutral);
}
.property-comment--reply {
  display: flex;
  flex-direction: column;
  padding: var(--number-space-3);
  gap: var(--number-space-1);
  border-radius: var(--number-corner-2);
  background: var(--color-static-background-light-variant-10);
}

.property-details--price--table {
  position: relative;
  width: 100%;
  padding: var(--number-space-3);
  border: 1px solid var(--color-static-background-light-variant-30);
  border-radius: var(--number-corner-2);
}
@media screen and (max-width: 500px) {
  .property-details--price--table::after {
    z-index: 2;
    position: absolute;
    top: var(--number-space-3);
    right: 0px;
    width: 0.75rem;
    min-width: 0.75rem;
    height: 0.75rem;
    transform: translateX(-100%) translateY(50%) rotate(-45deg);
    border-width: 0 var(--accordion-icon-border, 2px) var(--accordion-icon-border, 2px) 0;
    border-style: solid;
    border-color: var(--accordion-icon-color);
    content: "";
    pointer-events: none;
  }
}
.property-details--price--scroll-container {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  overflow-x: auto;
  gap: var(--number-space-1);
}
.property-details--price--body, .property-details--price--header {
  display: flex;
  flex-direction: column;
  min-width: 600px;
  min-width: max-content;
}
.property-details--price--header .property-details--price--entry {
  padding-top: var(--number-space-0);
  border-top: unset;
  color: var(--color-static-on-background-light-neutral);
  font-size: var(--font-size-small);
  text-transform: uppercase;
}
.property-details--price--entry {
  display: grid;
  position: relative;
  grid-template-columns: minmax(180px, 0.5fr) 1fr;
  padding: var(--number-space-1) var(--number-space-0);
  border-top: 1px solid var(--color-static-background-light-variant-10);
}
@media (min-width: 576px) {
  .property-details--price--entry {
    grid-template-columns: minmax(180px, 0.8fr) 1fr;
  }
}
.property-details--price--entry .date-column {
  z-index: 1;
  position: sticky;
  left: 0;
  background-color: var(--color-static-background-light-primary);
}
.property-details--price--entry .price-columns-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: var(--number-space-3);
}
.property-details--price--entry .price-columns-wrapper span {
  min-width: 120px;
  text-align: right;
}
