.elementor-kit-7{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#F8FAFC;--e-global-color-text:#0F172A;--e-global-color-accent:#D5D8DC;--e-global-color-e128465:#F8FAFC;--e-global-color-7e76cf1:#FFFFFF;--e-global-color-639062f:#000000;--e-global-color-7b53e21:#0F172A;--e-global-color-5b60d3a:#D5D8DC;--e-global-typography-primary-font-family:"Inter Tight";--e-global-typography-primary-font-size:3rem;--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Inter Tight";--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-text-text-transform:none;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-4864a55-font-family:"Inter Tight";--e-global-typography-4864a55-font-size:1.8rem;--e-global-typography-4864a55-font-weight:500;--e-global-typography-4864a55-text-transform:none;--e-global-typography-d017670-font-family:"Inter Tight";--e-global-typography-d017670-font-size:5rem;--e-global-typography-d017670-font-weight:700;--e-global-typography-3df5cf3-font-family:"Inter Tight";--e-global-typography-3df5cf3-font-size:1.8rem;--e-global-typography-3df5cf3-font-weight:700;--e-global-typography-3df5cf3-text-transform:none;--e-global-typography-53b0065-font-family:"Roboto";--e-global-typography-53b0065-font-size:5rem;--e-global-typography-53b0065-font-weight:700;--e-global-typography-53b0065-text-transform:none;--e-global-typography-e7a13f3-font-family:"Inter Tight";--e-global-typography-e7a13f3-font-size:3rem;--e-global-typography-e7a13f3-font-weight:700;--e-global-typography-0824585-font-family:"Inter Tight";--e-global-typography-0824585-font-size:1.8rem;--e-global-typography-0824585-font-weight:400;--e-global-typography-0824585-text-transform:none;font-family:"Inter Tight", Sans-serif;font-size:1.6rem;}.elementor-kit-7 button,.elementor-kit-7 input[type="button"],.elementor-kit-7 input[type="submit"],.elementor-kit-7 .elementor-button{background-color:var( --e-global-color-e128465 );}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 h1{font-family:"Inter Tight", Sans-serif;font-size:3.2rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1400px;}.e-con{--container-max-width:1400px;}.elementor-widget:not(:last-child){margin-block-end:15px;}.elementor-element{--widgets-spacing:15px 15px;--widgets-spacing-row:15px;--widgets-spacing-column:15px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1366px){.elementor-kit-7{--e-global-typography-primary-font-size:2.5rem;--e-global-typography-e7a13f3-font-size:2.5rem;}}@media(max-width:1024px){.elementor-kit-7{--e-global-typography-primary-font-size:2.5rem;--e-global-typography-secondary-font-size:2rem;--e-global-typography-text-font-size:1.6rem;--e-global-typography-e7a13f3-font-size:2.5rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-7{--e-global-typography-primary-font-size:2.3rem;--e-global-typography-secondary-font-size:1.7rem;--e-global-typography-text-font-size:16px;--e-global-typography-d017670-font-size:3rem;--e-global-typography-53b0065-font-size:3rem;--e-global-typography-e7a13f3-font-size:2.3rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */html{
font-size:62.5%;    
}


.max-width{
    max-width:1400px;
}

.property .icon.active-marker {
  transform: scale(1.2);
  transition: transform 0.2s ease;
  border-color: #007bff; /* z. B. Blau als Highlight */
  z-index: 10;           /* damit es über anderen Overlays liegt */
}

/* Container: flexbox über volle Viewport-Höhe */
.locations-wrapper {
  display: flex;
  height: 100vh;        /* nimmt die gesamte Bildschirmhöhe ein */
  margin: 0;
  padding: 0;
  overflow: hidden;     /* verhindert, dass Wrapper überläuft */
}

/* Linke Liste: fixe Breite, eigener Scroll für den Inhalt */
.location-list {
      display: flex;
gap:18px;
    flex-direction: column;
    padding: 0px 32px 32px;
    width: 500px;
    overflow-y: auto;
    scrollbar-width:none;
    height: 100vh;
}

/* Rechte Karte: nimmt den Rest (70%) und volle Höhe */
#map {
  flex: 1;              /* füllt den restlichen Platz */
  height: 100vh;         /* damit das div 100vh hoch ist */
  position: relative;   /* kein fixed, damit Flex-Layout greift */
  overscroll-behavior:contain;
  
}

.location-item{
    display:flex;
    flex-direction:column;
    gap:0px;
	    padding: 20px;
    background: rgb(241, 245, 249);
    word-break: break-word;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out;
    a{
    text-decoration: underline;
    color:var(--e-global-color-text);
}
    a:hover{
    color:var(--e-global-color:accent);
}
}


.location-item:is(:hover, :active){
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}


.location-item[active]{
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 15px;
}

.pokr97{
    font-size: 16px;
    font-weight:500;
    line-height: 16px;
    color: rgb(15, 23, 42);
    padding: 8px 14px;
    background-color: rgb(255, 255, 255);
    outline: 0px;
    border: 0px;
    border-radius: 6px;
    margin-top: 16px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 3px;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-regular.eot');
	src: url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-regular.woff2') format('woff2'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-regular.woff') format('woff'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-regular.ttf') format('truetype'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-regular.svg#Inter') format('svg');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-500.eot');
	src: url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-500.eot?#iefix') format('embedded-opentype'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-500.woff2') format('woff2'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-500.woff') format('woff'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-500.ttf') format('truetype'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-500.svg#Inter') format('svg');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-600.eot');
	src: url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-600.eot?#iefix') format('embedded-opentype'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-600.woff2') format('woff2'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-600.woff') format('woff'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-600.ttf') format('truetype'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-600.svg#Inter') format('svg');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-700.eot');
	src: url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-700.eot?#iefix') format('embedded-opentype'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-700.woff2') format('woff2'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-700.woff') format('woff'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-700.ttf') format('truetype'),
		url('https://www.km-kuechenmeile.de/wp-content/uploads/2025/08/inter-v12-latin-700.svg#Inter') format('svg');
}
/* End Custom Fonts CSS */