



  .module-units-overview {
    --table-padding-top: calc(40 * var(--px));
  }

  .module-units-overview .module-inner {
    padding-left: 0;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 calc(38 * var(--px));
    width: 100%;
  }
  
  .module-units-overview .module-wrap {
    width: 100%;
  }
  
  .module-units-overview .filter-button {
    flex-shrink: 0;
    padding-block: var(--table-padding-top);
  }
  
  .module-units-overview .filter-button .btn {
    position: sticky;
    top: calc(var(--header-padding-top) + max(50px, (70 * var(--px))));
  }
  
  .module-units-overview .col-set {
    display: flex;
    flex-flow: row nowrap;
    gap: 0 calc(46 * var(--px));
  }
  
  .module-units-overview .houses {
    display: flex;
    flex-flow: column nowrap;
    gap: calc(95 * var(--px)) 0;
  }
  
  
  
  
  
  
  
  
  
  
  
  .module-units-overview section[data-type="urban"] {
    --house-background: #b67a74;
    --background-url: url(../../imgs/signet--urban.svg);
  }
  
  .module-units-overview section[data-type="garden"] {
    --house-background: #87998f;
    --background-url: url(../../imgs/signet--garden.svg);
  }
  
  .module-units-overview section[data-type="icon"] {
    --house-background: #918381;
    --background-url: url(../../imgs/signet--icon.svg);
  }
  
  .module-units-overview section[data-type="light"] {
    --house-background: #c1ba9e;
    --background-url: url(../../imgs/signet--light.svg);
  }
  
  .module-units-overview .col-set > .col-1 {
    width: calc(544 * var(--px));
    flex-shrink: 0;
  }
  
  .module-units-overview figure.col-1 > div {
    position: sticky;
    top: 0;
  }
  
  .module-units-overview figure.col-1 a {
    display: flex;
    flex-flow: column nowrap;
  }
  
  .module-units-overview figure.col-1 .house-title {
    background: var(--house-background, var(--base-color-gray));
    padding: max(15px, calc(65 * var(--px))) max(15px, calc(20 * var(--px))) max(15px, calc(20 * var(--px)));
  }
  
  .module-units-overview figure.col-1 .house-title .title {
    display: block;
    margin-top: .70588235294117647058em;
    --min-font-size: 9;
  }
  
  .module-units-overview figure.col-1 .house-title .signet {
    display: block;
    width: max(32px, calc(45 * var(--px)));
    aspect-ratio: 1;
    background: var(--background-url, url(../../imgs/signet--passagen.svg)) no-repeat center center;
    background-size: contain;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .module-units-overview .col-set > .col-2 {
    width: 100%;
    padding-top: var(--table-padding-top);
  }
  
  .units-table {
    border-spacing: 0;
    text-align: left;
    vertical-align: top;
    width: 100%;
  }
  
  .units-table span.abbr {
    display: none;
  }
  
  .units-table :is(th, td) {
    padding: 0.5em 2em 0.6em 0;
    border-bottom: 1px solid currentColor;
  }
  
  .units-table th {
    font-weight: normal;
  }
  
  .units-table thead th {
    text-transform: uppercase;
    padding-block: 1.2em;
  }
  
  .units-table .td-cta {
    text-align: right;
    padding-right: 0;
  }
  
  .units-table tbody .td-cta > span {
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 0 0.75em;
    align-items: center;
  }
  
  .status-display {
    display: inline-block;
    width: 1em;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #1ab249;
  }
  
  .status-display[data-value="0"] {
    background: #a00;
  }
  
  .status-display[data-value="2"] {
    background: #e90;
  }
  
  
  
  
  
  
  
  
  
  .units-overview-filter {
    position: fixed;
    inset: 0;
    display: block;
    z-index: 1000;
    color: var(--base-color-white);
    visibility: hidden;
    transition: 750ms var(--ttf-7);
    transition-property: visibility;
    overflow: hidden;
  }
  
  body.units-overview-filter-shown .units-overview-filter {
    visibility: visible;
  }
  
  .units-overview-filter .background-shade {
    position: absolute;
    inset: 0;
    background: var(--base-color-black);
    z-index: 1;
    opacity: 0;
    transition: 750ms var(--ttf-7);
    transition-property: opacity;
  }
  
  body.units-overview-filter-shown .units-overview-filter .background-shade {
    opacity: 0.8;
  }
  
  .units-overview-filter .pane {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    background: var(--base-color-green);
    --padding-right: var(--page-padding-right);
    transition: 750ms var(--ttf-7);
    transition-property: opacity, transform;
    transition-delay: 0ms, 750ms;
    opacity: 0;
    transform: translateX(10vw);
  }
  
  body.units-overview-filter-shown .units-overview-filter .pane {
    opacity: 1;
    transform: none;
    transition-delay: 0ms, 0ms;
  }
  
  .units-overview-filter .pane-inner {
    padding-inline: calc(138 * var(--px));
    padding-block: max(92px, calc(135 * var(--px))) max(35px, var(--padding-right));
    min-height: 100%;
    box-sizing: border-box;
    transition: 750ms var(--ttf-7) 50ms;
    transition-property: opacity, transform;
    transition-delay: 0ms, 750ms;
    opacity: 0;
    transform: translateX(10vw);
    display: flex;
  }
  
  body.units-overview-filter-shown .units-overview-filter .pane-inner {
    opacity: 1;
    transform: none;
    transition-delay: 0ms, 0ms;
  }
  
  .units-overview-filter .pane-header {
    position: fixed;
    top: var(--padding-right);
    right: var(--padding-right);
  }
  
  .units-overview-filter form {
    display: flex;
    flex-flow: column nowrap;
    flex-grow: 1;
    gap: 3em 0;
    justify-content: space-between;
    transition: opacity 150ms;
  }
  
  .units-overview-filter.is-loading form {
    opacity: 0.5;
    pointer-events: none;
  }
  
  .units-overview-filter.is-loading {
    cursor: wait;
  }
  
  
  
  
  
  
  
  
  
  
  .units-overview-filter .col-set {
    display: flex;
    flex-flow: row nowrap;
    gap: 0 max(30px, calc(47 * var(--px)));
  }
  
  .units-overview-filter .col-set > div {
    min-width: calc(222 * var(--px));
    display: flex;
    flex-flow: column nowrap;
    gap: max(38px, calc(62 * var(--px))) 0;
  }
  
  .units-overview-filter legend {
    display: block;
    margin-bottom: 1em;
  }
  
  
  
  
  
  
  
  
  
  @media (max-width: 1200px) {
    
    .module-units-overview .col-set > .col-1 {
      width: 250px;
    }
    
  }
  
  
  
  
  @media (max-width: 1100px) {
    
    .units-table .td-house {
      display: none; 
    }
    
    .units-table :is(th, td) {
      padding-right: 0.75em;
    }
    
  }
  
  
  
  
  @media (max-width: 1000px) {
    
    .units-table .cpy-17 {
      font-size: .8125rem;
    }
    
  }
  




  @media (max-width: 770px) {
    
    .module-units-overview {
      --table-padding-top: 0;
    }
    
    .module-units-overview .module-inner {
      padding-inline: 0;
      gap: 0;
    }
    
    .module-units-overview .houses {
      gap: 0;
    }
    
    .module-units-overview .filter-button {
      width: 0px;
    }
    
    .module-units-overview .filter-button .btn {
      margin-left: calc((40px + var(--page-padding-right)) * -1);
      margin-block: 20px;
      background: var(--base-color-black);
      color: var(--base-color-white);
      border-color: var(--base-color-black);
      z-index: 5;
    }
    
    .module-units-overview .col-set {
      flex-flow: column nowrap;
      gap: 0;
    }
    
    .module-units-overview .col-set > .col-1 {
      width: 100%;
    }
    
    .module-units-overview figure.col-1 a {
      display: flex;
      flex-flow: row nowrap;
    }
    
    .module-units-overview figure.col-1 .house-title {
      width: calc(136 * var(--px-mobile));
      box-sizing: border-box;
      flex-shrink: 0;
      display: flex;
      flex-flow: column nowrap;
      justify-content: flex-end;
    }
    
    .units-table :is(th, td):first-child {
      padding-left: 15px;
    }
    
    .units-table :is(th, td):last-child {
      padding-right: 15px;
    }
    
    
    
  }
  
  
  
  
  
  @media (max-width: 500px) {
    
    .units-table :is(th, td) {
      padding-block: 0.75em;
      padding-inline: 0.25em;
    }
    
    .units-table th.td-cta span,
    .units-table th.td-status span,
    .units-table th.td-rooms span {
      display: none;
    }
    
    .units-table th.td-rooms span.abbr {
      display: inline;
    }
    
    .module-units-overview figure.col-1 .house-title .title {
      margin-top: 12px;
    }
    
    .module-units-overview .col-set > .col-1 {
      position: sticky;
      top: 0;
      z-index: 3;
    }
    
    .units-table thead {
      position: sticky;
      top: var(--house-image-height, 0px);
      z-index: 2;
      background: var(--base-color-off-white);
    }
    
    .units-overview-filter .pane-inner {
      padding-inline: 15px;
    }
    
    .units-overview-filter .pane {
      width: 100%;
    }
    
  }