<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

/*--------------------------------------------------------------
# IMMO
--------------------------------------------------------------*/

.immo-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.immo-items .immo-item {
	overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #eee;
    border-radius: 10px;
    text-decoration: none;
}

.immo-items .immo-image img {
    width: 100%;
	height: 250px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: block;
}

.immo-items .immo-item .immo-content {
	padding: 25px 25px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: stretch;
}

.immo-items .immo-name {
	font-size: 22px;
	line-height: 1.2em;
	min-height: 2.4em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}

.immo-items .immo-image {
    position: relative;
}

.immo-items .immo-short-data {
	position: absolute;
    bottom: 25px;
    border-radius: 5px;
    font-size: 14px;
    left: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.immo-items .immo-short-data &gt; * {
    background: #fff;
    padding: 5px 8px;
    border-radius: 3px;
}

.immo-items .immo-info-price {
	padding: 10px 0;
}

.immo-items .immo-info-data {
	display: flex;
	flex-wrap: wrap;
	margin-top: auto;
    gap: 15px 25px;
    padding-top: 15px;
}

.immo-items .immo-info-data &gt; * {
    display: flex;
    flex-direction: column;
}

.immo-items .immo-info-data &gt; * .desc-data {
    font-size: 14px;
}

.immo-items .immo-info-data &gt; *:last-child:after {
	display: none !important;
}


.immo-filter {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;   
}

.immo-filter .immo-filter-item {
    display: flex;
    flex-direction: column;
    gap: 2px;   
}

.immo-filter .immo-filter-item label {
    font-size: 12px;
}

.immo-filter .immo-filter-item select {
    height: 36px;
	min-width: 120px !important;
	width: 40vw !important;
	max-width: 200px !important;
	border: 1px solid #333 !important;
	border-radius: 5px !important;
	padding: 0 10px !important;
	margin-bottom: 0 !important;
}

.immo-filter button {
    background: #f59c00;
    padding: 10px 20px;
    font-size: 16px;
    display: inline-block;
    text-decoration: unset;
    border-radius: 3px;
    line-height: 1em;
    border: 0 !important;
    cursor: pointer;
}

/*--------------------------------------------------------------
# IMMO LISTE
--------------------------------------------------------------*/

.immo-header {
	margin-bottom: 50px;
}

.immo-filters {
	margin: 35px 0;
}

.immo-filters-bar {
	display: flex;
	flex-wrap: wrap;
  	align-items: center;
	gap: 10px;
}

.filter-dropdown {
	position: relative;
}

#dropdown-liste {
	max-height: 400px;
	overflow-y: scroll;
	padding: 10px;
}

#dropdown-liste label {
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: space-between;
	padding-bottom: 8px;
  	margin-bottom: 8px;
  	border-bottom: 1px solid #f2f2f2;
}

#dropdown-liste label:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

#dropdown-liste label input {
	display: none;
}

#dropdown-liste input:checked + span {
    font-weight: bold;
}

.immo-filters-bar input {
	padding: 11px 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background-color: #fff;
	width: 100%;
}

.immo-filters-bar select {
	border-right: 10px solid var(--bg-color);
}

#sortieren {
	margin-left: auto;
}

#aktive-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	margin-top: 10px;	
}

.filter-tag {
	font-size: 14px;
	background: #333;
	padding: 8px 15px;
	color: #fff;
	line-height: 1em;
	border-radius: 100px;
	cursor: pointer;
}

.clear-filters {
	font-size: 14px;
  	text-decoration: underline;
  	cursor: pointer;
	margin-left: 10px;
}

.immo-image a {
	display: block;
	overflow: hidden;
	position: relative;
}

.sold {
	position: absolute;
	background: #333;
	color: #fff;
	text-align: center;
	transform: rotate(40deg);
	right: -45px;
  	top: 45px;
	width: 250px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	z-index: 2;
}

.galerie-img .sold {
	transform: rotate(-40deg);
	left: -40px;
	right: 0;
}


.fake-dropdown {
    position: relative;
    display: inline-block;
    width: calc(14% - 10px);
    cursor: pointer;
}

.fake-dropdown.ort {
	width: calc(26% - 10px);
}

.fake-dropdown.sort {
	width: 18%;
}

.fake-dropdown .select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.fake-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fake-dropdown.active .dropdown-content {
    display: flex !important;
	flex-direction: column;
}

.fake-dropdown .dropdown-content input,
.fake-dropdown .dropdown-content div {
    padding: 10px;
    cursor: pointer;
}

.fake-dropdown .dropdown-content div:hover {
    background-color: #f0f0f0;
}

.dropdown-content.inline {
	padding: 10px;
	flex-direction: unset !important;
	gap: 10px;
	width: 180%;
  	max-width: 320px;
}

.dropdown-content input[type="number"] {
    appearance: none;
	-webkit-appearance: none;
	-moz-appearance: textfield;
}

.immo-filter-btn {
	display: none !important;
}



/*--------------------------------------------------------------
# SINGLE IMMO
--------------------------------------------------------------*/

.breadcrumb {
	margin-bottom: 10px !important;
}

.alle-immobilien {
	display: inline-flex;
	align-items: center;
	padding-left: 12px;
	position: relative;
	text-decoration: underline !important;
}

.alle-immobilien::before {
	content: "";
	height: 6px;
	width: 6px;
	border-left: 1.2px solid;
	border-top: 1.2px solid;
	transform: rotate(-45deg);
	position: absolute;
	left: 0;
	margin-top: 1px;
}

.immo-galerie {
	height: 460px;
	border-radius: 8px;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr); 
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	position: relative;
	margin-bottom: 30px;
}

.open-galerie {
	background: #fff;
	padding: 7px 10px;
	border-radius: 5px;
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 14px;
	line-height: 1em;
	cursor: pointer;
}

.immo-galerie .galerie-img {
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.immo-galerie img {
	display: block;
	position: absolute;
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
	object-position: top right;
}
	
.immo-galerie .galerie-img:nth-child(1){ 
	grid-area: 1 / 1 / 3 / 3; 
}

.immo-galerie .galerie-img:nth-child(2){ 
	grid-area: 1 / 3 / 2 / 4;
}

.immo-galerie .galerie-img:nth-child(3){ 
	grid-area: 2 / 3 / 3 / 4;
}

.immo-galerie .galerie-img:nth-child(4){ 
	grid-area: 1 / 4 / 2 / 5;
}

.immo-galerie .galerie-img:nth-child(5){ 
	grid-area: 2 / 4 / 3 / 5;
}


.immo-galerie.one .galerie-img:nth-child(1) { 
	grid-area: 1 / 1 / 3 / 5;
}



.immo-galerie.two .galerie-img:nth-child(1) { 
	grid-area: 1 / 1 / 3 / 3; /* GroÃŸes Bild links */
}

.immo-galerie.two .galerie-img:nth-child(2) { 
grid-area: 1 / 3 / 3 / 5; /* Bild rechts, das beide Zeilen einnimmt */
}
  

.immo-galerie.three .galerie-img:nth-child(1) { 
	grid-area: 1 / 1 / 3 / 3; /* GroÃŸes Bild links */
  }
  
  .immo-galerie.three .galerie-img:nth-child(2) { 
	grid-area: 1 / 3 / 2 / 5; /* Oberes Bild rechts */
  }
  
  .immo-galerie.three .galerie-img:nth-child(3) { 
	grid-area: 2 / 3 / 3 / 5; /* Unteres Bild rechts */
  }
  


  .immo-galerie.four .galerie-img:nth-child(1) { 
	grid-area: 1 / 1 / 3 / 3; /* GroÃŸes Bild links */
  }
  
  .immo-galerie.four .galerie-img:nth-child(2) { 
	grid-area: 1 / 3 / 2 / 4; /* Kleines Bild oben im mittleren Bereich */
  }
  
  .immo-galerie.four .galerie-img:nth-child(3) { 
	grid-area: 2 / 3 / 3 / 4; /* Kleines Bild unten im mittleren Bereich */
  }
  
  .immo-galerie.four .galerie-img:nth-child(4) { 
	grid-area: 1 / 4 / 3 / 5; /* Bild rechts, das beide Zeilen einnimmt */
  }

  

.immo-single .name {
	display: block;
	
	line-height: 1.2em;
	margin: 0;
	color: #333;
	font-size: 36px;
	font-weight: 600;
}

.immo-single .name:first-letter {
    text-transform: uppercase;
}

.immo-single .immo-short-data {
	display: flex;
	margin-top: -15px;
}

.immo-single .immo-short-data &gt; div {
	background: #eee;
	padding: 3px 10px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	width: fit-content;
	margin-right: 10px;
}

.immo-single .immo-info-data {
	padding: 15px 0;
	margin: 0;
	border-top: 1px solid #e2e5e8;
	border-bottom: 1px solid #e2e5e8;
	display: flex;
}

.immo-single .immo-info-data &gt; div{
	margin-right: 40px;
}

.immo-single .immo-info-data .main-data {
	
	line-height: 1.2em;
	color: #333;
	font-size: 22px;
	font-weight: 600;
}

.immo-single .immo-info-data .desc-data {
	display: block;
	font-size: 14px;
	
	line-height: 1.2em;
}

.immo-single .immo-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}


.immo-single .attributes-list {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	border-bottom: 1px solid #e2e5e8;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.immo-single .attributes-list .key {
	min-width: 160px;
	display: inline-block;
}

.immo-single .title {
	line-height: 1.2em;
	color: #333;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}

.immo-single h2.title {
	font-size: 26px;
	margin-bottom: 15px !important;
    margin-top: 0 !important;
}

.immo-single .full-description {
	border-bottom: 1px solid #e2e5e8;
	padding-bottom: 25px;
}

.immo-single .immo-content-desc {
	width: calc(100% - 450px);
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.immo-single .immo-content-sidebar {
	width: 380px;
	position: relative;
}

.immo-single .sidebar-inner {
	position: sticky;
	top: 10px;
	background: #eee;
	padding: 30px;
	border-radius: 10px;
	transition: top .4s ease;
}

.immo-single .sidebar-inner.scroll-down {
	top: 20px;
}

.immo-single .sidebar-inner .address, .immo-single .sidebar-inner .data, .immo-single .sidebar-inner .office {
	border-bottom: 1px solid #e2e5e8;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.immo-single .sidebar-inner .button {
	margin-top: 0px;
}



.read-more {
	position: relative;
	max-height: 18em;
	overflow: hidden;
	margin-bottom: 1em;
}

.read-more.now::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1em;
	background: #fff;
}

.read-more-btn {
	position: absolute;
	z-index: 3;
	bottom: 5px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	text-decoration: underline;
	font-size: 1em;
	left: 0;
	right: 0;
	justify-content: center;
}

.read-more.now::after {
	content: "";
	position: absolute;
	bottom: 1em;
	left: 0;
	right: 0;
	height: 4.5em;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
}

.read-more.rm-small {
	max-height: 5.5em;
}


.dateien {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 15px;
}

.dateien .datei {
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--bg-color);
	padding: 15px 20px;
	border-radius: 8px;
	transition: all .3s ease;
}

.dateien .datei img {
	height: 30px;
	width: 30px;
}

.immo-map {
	height: 500px;
	border-radius: 8px;
	overflow: hidden;
}


#galerie.popup {
	position: fixed;
	background: #ffffffcf;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	left: 0;
	right: 0;
	overflow: scroll;
	padding: 50px 0;
	height: 100%;
	min-height: 100vh;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease 0.2s, visibility 0.1s ease 0.5s;
	overflow: scroll;
}

#galerie.popup.active {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease;
}

#galerie.popup .close {
	position: fixed;
	top: 20px;
	left: 30px;
	cursor: pointer;
	height: 48px;
	width: 48px;
	background: #4b4c52;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

#galerie.popup .close:after, #galerie.popup .close:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 1.5px;
	background-color: #fff;
	left: 0;
	right: 1.5px;
	margin: auto;
}

#galerie.popup .close::before {
	transform: rotate(45deg);
}

#galerie.popup .close::after {
	transform: rotate(-45deg);
}

#galerie .popup-inner {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	border-radius: 0 !important;
	padding: 0;
  	box-shadow: unset;
  	position: relative;
	background-color: unset !important;
}

#anfrage.popup .popup-inner {
	max-width: 660px;
}

#galerie .popup-inner .swiper-slide {
	text-align: center;
}

#galerie.popup .swiper-slide img {
	max-height: 80vh;
	width: auto;
	max-width: 80%;
	border-radius: 10px;
	overflow: hidden;
}

#galerie .swiper-galerie {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

#galerie .swiper-slide {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

#galerie .swiper-button-next, #galerie .swiper-button-prev {
	z-index: 3 !important;
}

#galerie .swiper-button-next::before, #galerie .swiper-button-prev::before {
	border-right: 2px solid #4b4c52;
	border-top: 2px solid #4b4c52;
}

#galerie .swiper-pagination {
	position: unset;
	align-items: center;
	display: inline-flex;
	z-index: 99;
	justify-content: center;
	margin: 30px auto 0;
	padding: 3px 15px;
	background: var(--grey-bg);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}


#anfrage .headline-h4 {
	margin-bottom: 10px !important;
}

#anfrage .headline-h2 {
	margin-bottom: 40px !important;
}


.ansprechpartner-info {
	border-bottom: 1px solid #e2e5e8;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.ansprechpartner-avatar img {
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	object-fit: cover;
	width: 80px;
    height: 80px;
	margin-bottom: 15px;
}

.avatar-fallback {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 100%;
    color: #fff;
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: 2px;
}

.ansprechpartner-details {
	display: flex;
	flex-direction: column;
}

.ansprechpartner-details .divider {
	height: 10px;
}

.ansprechpartner-name {
	font-weight: 600;
}

.no-border-bottom {
	border-bottom: 0 !important;
}

#immo-map {
  	overflow: hidden;
}

.hinweis {
	width: calc(100% - 450px);
	margin-top: 30px;
}


.button &gt; a.button {
    background: #f59c00;
    padding: 15px 20px;
    display: inline-block;
    text-decoration: unset;
    border-radius: 3px;
    line-height: 1em;
}



#anfrage .title {
	font-size: 26px;
	margin-bottom: 15px !important;
	margin-top: 0 !important;
	line-height: 1.2em;
  	color: #333;
	font-weight: 600;
}

.cf-rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .cf-row {
    grid-template-columns: repeat(12, 1fr);
  }
  .col-1  { grid-column: span 1; }
  .col-2  { grid-column: span 2; }
  .col-3  { grid-column: span 3; }
  .col-4  { grid-column: span 4; }
  .col-5  { grid-column: span 5; }
  .col-6  { grid-column: span 6; }
  .col-7  { grid-column: span 7; }
  .col-8  { grid-column: span 8; }
  .col-9  { grid-column: span 9; }
  .col-10 { grid-column: span 10; }
  .col-11 { grid-column: span 11; }
  .col-12 { grid-column: span 12; }
}

.cf-row input {
	padding: 10px !important;
	border: 1px solid #333 !important;
	border-radius: 3px;
}

.cf-row textarea {
	padding: 10px !important;
	border: 1px solid #333 !important;
	border-radius: 3px;
	min-height: 90px;
}

.success-message {
	text-align: center;
  	background: #333;
  	color: #fff;
  	margin-top: 10px;
  	padding: 10px;
  	border-radius: 3px;	
}

#immoscout-candidate-form button {
    background: #f59c00;
    padding: 15px 20px;
    font-size: 16px;
    display: inline-block;
    text-decoration: unset;
    border-radius: 3px;
    line-height: 1em;
    border: 0 !important;
    cursor: pointer;
	margin-top: 10px !important;
}

@keyframes spin {
  0%   { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

#anfrage .loading-overlay {
	display: none;
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
	background: rgba(255,255,255,0.8);
	align-items: center;
	justify-content: center;
	z-index: 10;
	pointer-events: none;
	border-radius: 30px;
}


#anfrage .loading-overlay .spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #f59c00;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	animation: spin 1s linear infinite;
	position: absolute;
	left: calc(50% - 12px);
	top: calc(50% - 12px);
}


#anfrage.loading #anfrage-form *,
#anfrage.loading .ajax-submit-button {
  	pointer-events: none;
}


/*--------------------------------------------------------------
# POPUP
--------------------------------------------------------------*/

.popup {
	position: fixed;
	width: 100vw;
	z-index: 9999;
  	background: #fff8;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 50px;
	display: flex;
	opacity: 0;
  	visibility: hidden;
	transition: all .2s ease .15s;
	box-sizing: border-box;
}

.popup.active {
	opacity: 1;
	visibility: visible;
	backdrop-filter: blur(2px);
	transition: all .3s ease;
}

.popup-inner {
	max-width: 600px;
	background: #fff;
	border-radius: 30px;
	padding: 50px;
	box-shadow: 0 0 40px #0003;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	outline: 0;
	margin: auto;
	transform: translateY(80px);	
	transition: transform .5s ease;
}

.popup.active .popup-inner {
	transform: translateY(0px);
}

.popup ._close {
	width: 30px;
	height: 30px;
	opacity: 1;
	cursor: pointer;
	position: absolute;
	right: 25px;
	top: 25px;
	z-index: 999;
}

.popup ._close::before, .popup ._close::after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 30px;
	width: 2px;
	border-radius: 5px;
	background-color: #000;
}

.popup ._close::before {
	transform: rotate(45deg);
}

.popup ._close::after {
    transform: rotate(-45deg);
}

.popup .hidden {
	display: none !important;
}

.popup .contactform {
	margin-top: 20px;
}

.popup .headline {
	margin-bottom: 20px;
}





.swiper {
	position: relative;
	overflow: hidden;
	-webkit-text-size-adjust: none;
}

.swiper-wrapper {
	display: flex;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	
}

.swiper-pagination {
	margin-top: var(--el-spacing);
	position: relative;
	align-items: center;
	display: flex;
	z-index: 99;
	justify-content: center;
}

.swiper-pagination-bullet {
	height: 18px;
	width: 18px;
	cursor: pointer;
}

.swiper-pagination-bullet:after {
	content:"";
	height: 12px;
	width: 12px;
	margin: 3px;
	border: 1px solid #333;
	display: block;
	border-radius: 100%;
}

.swiper-pagination-bullet-active:after {
	background: #333;
}


.slider.w .swiper-pagination-bullet:after {
	border: 1px solid #fff;
}

.slider.w .swiper-pagination-bullet-active:after {
	background: #fff;
}


.swiper-button-next, .swiper-button-prev {
	height: 50px;
	width: 50px;
	position: absolute;
	z-index: 1;
	top: 50%;
	cursor: pointer;
	transition: all .3s ease;
	padding: 10px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-button-next::before, .swiper-button-prev:before {
	content: "";
	display: block;
	position: absolute;
	height: 15px;
	width: 15px;
	border-right: 1px solid #333;
	border-top: 1px solid #333;
	z-index: 2;
	margin-right: 3px;
	margin-top: 3px;
}

.slider.w .swiper-button-next, .slider.w .swiper-button-prev {
	border: 1px solid #fff;
}

.slider.w .swiper-button-next::before, .slider.w .swiper-button-prev:before {
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
}

.swiper-button-next {
	right: 40px;
	transform: translateY(-50%) rotate(45deg);
}

.swiper-button-prev {
	left: 40px;
	transform: translateY(-50%) rotate(-135deg);
}

.slider.nav-out .swiper-button-next {
	right: -70px;
}

.slider.nav-out .swiper-button-prev {
	left: -70px;
}

.swiper-button-disabled {
	opacity: 0;
	visibility: hidden;
}

.swiper-slide-active {
	z-index: 2;
}

.slider.cont-out .swiper-slide:first-child {
	margin-left: clamp(calc((100% - var(--width)) / 2), calc((100vw - var(--maxwidth)) / 2), calc((100vw - var(--maxwidth)) / 2)) !important;
}

.slider.cont-out .swiper-slide:last-child {
	margin-right: clamp(calc((100% - var(--width)) / 2), calc((100vw - var(--maxwidth)) / 2), calc((100vw - var(--maxwidth)) / 2)) !important;
}



@media only screen and (max-width: 980px) {
	.immo-galerie {
		height: 220px;
		grid-column-gap: 5px;
  		grid-row-gap: 5px;
	}

	.immo-single .immo-content-desc {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 30px;
	}

	.immo-single .name {
		line-height: 1.2em;
		font-size: 24px;
	}

	.immo-single .immo-info-data .main-data {
		font-size: 16px;
		font-weight: 600;
	}

	.immo-single .immo-info-data &gt; div {
		margin-right: 20px;
	}

	.immo-single .immo-content-sidebar {
		margin-top: 30px;
		width: 100%;
	}

	.hinweis {
		width: 100%;
	}

	.immo-single .attributes-list {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}

	.popup {
		padding: 20px;
	}

	.popup-inner {
		padding: 30px;
	}
}</pre></body></html>