.ct-container-full.gm-immo-single {
  width: calc(100% - 4rem);
  margin: 0 auto;
  max-width: 1300px;
}

.gm-immo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.gm-immo-gallery .gm-immo-gallery-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 5px;
}
.gm-immo-gallery .gm-immo-gallery-small .gm-immo-gallery__item {
  aspect-ratio: 4/3;
}
.gm-immo-gallery__item {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
}
.gm-immo-gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gm-immo-gallery__item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.gm-immo-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1rem;
  border: 1px solid var(--theme-palette-color-1);
}
.gm-immo-facts__item strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}
.gm-immo-facts__item span {
  display: block;
  line-height: 1;
  opacity: 0.5;
  margin-top: 5px;
}

.gm-immo-cols {
  display: flex;
  gap: 4rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.gm-immo-cols__large {
  flex: 1 1 30rem;
}
.gm-immo-cols__small {
  flex: 1 1 10rem;
}

.gm-immo-offer {
  background-color: var(--theme-palette-color-5);
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
}
.gm-immo-offer__mobile {
  position: sticky;
  display: flex;
  gap: 0.5rem;
  bottom: 0;
  background-color: #fff;
  padding: 0.5rem;
  z-index: 5000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.gm-immo-offer__mobile .gm-immo-btn {
  width: 100%;
  text-align: center;
  display: block;
}

.gm-immo-address {
  margin: 2rem 0;
  border: 1px solid var(--theme-palette-color-1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.gm-immo-address__text {
  padding: 1.5rem;
  flex: 1 1 5rem;
}
.gm-immo-address__text p {
  margin-bottom: 0.5rem;
}
.gm-immo-address__text p:last-child {
  margin-bottom: 0;
}
.gm-immo-address__map {
  flex: 1 1 20rem;
  overflow: hidden;
}

#gm-immo-map {
  height: 300px;
  width: 100%;
}

.gm-immo-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}
.gm-immo-table__item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--theme-palette-color-1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.gm-immo-table__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.gm-immo-table__item__title {
  text-align: left;
  opacity: 0.5;
}
.gm-immo-table__item__value {
  text-align: right;
}

.gm-immo-content {
  margin: 2rem 0;
}

.gm-immo-floorplans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.gm-immo-floorplans__item {
  aspect-ratio: 16/9;
  background-color: var(--theme-palette-color-1);
  overflow: hidden;
  border: 1px solid var(--theme-palette-color-1);
  position: relative;
}
.gm-immo-floorplans__item__desc {
  color: #fff;
  padding: 0.25rem 0.5rem;
  display: block;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  background-color: var(--theme-palette-color-1);
  line-height: 1;
}
.gm-immo-floorplans__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gm-immo h1 {
  font-size: 1.5rem;
}
.gm-immo h2 {
  margin: 3rem 0 1.5rem;
  font-size: 1.25rem;
}

.toggle-link {
  display: block;
  margin-top: 0.5rem;
  background-color: transparent;
  border: none;
  color: var(--theme-palette-color-1);
}

.gm-immo-offer-form input,
.gm-immo-offer-form select,
.gm-immo-offer-form textarea {
  margin-bottom: 1rem;
  border-radius: 0;
}

.gm-immo-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  background-color: var(--theme-palette-color-1);
}
.gm-immo-btn.disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.gm-immo-offer-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  overflow: auto;
}
.gm-immo-offer-popup__heading {
  position: sticky;
  top: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--theme-form-field-border-initial-color);
  justify-content: space-between;
}
.gm-immo-offer-popup__wrapper {
  position: relative;
  max-width: 600px;
  margin: 5rem auto;
  padding: 0 2rem 2rem 2rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.gm-immo-offer-popup__close {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.gm-immo-offer-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.gm-immo-units {
  margin: 0 1rem;
  display: grid;
  gap: 2rem 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}

.gm-immo-unit {
  color: inherit;
  font-size: 0.9rem;
  color: #000;
  line-height: 1;
}
.gm-immo-unit__link {
  color: inherit;
}
.gm-immo-unit__link:hover {
  color: inherit;
}
.gm-immo-unit__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--theme-palette-color-1);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  z-index: 10;
}
.gm-immo-unit__heading {
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  margin: 0.5rem 0 0.25rem 0;
}
.gm-immo-unit__image {
  aspect-ratio: 1/1;
  background-color: var(--theme-palette-color-1);
  position: relative;
}
.gm-immo-unit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.gm-immo-unit__facts {
  display: flex;
  gap: 1rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.gm-immo-overview {
  display: flex;
}
.gm-immo-overview__title {
  max-width: calc(100% - 2rem);
  margin: 0 auto 2rem auto;
}
.gm-immo-overview__list {
  flex: 1 1 20rem;
}
.gm-immo-overview__map {
  flex: 1 1 5rem;
  position: relative;
  transition: all 0.3s ease-out;
}
.gm-immo-overview__map.expanded {
  flex: 10 1 5rem;
}
.gm-immo-overview__map__btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  padding: 10px;
  transition: all 0.2s ease-out;
}
.gm-immo-overview__map__btn.rotated {
  transform: rotate(180deg);
}
.gm-immo-overview__no-results {
  padding: 1rem;
}

.gm-immo-filter {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
  width: calc(100% - 2rem);
  align-items: end;
  gap: 0.5rem;
}
.gm-immo-filter__group {
  flex: 1 1 8rem;
}

#gm-immo-map-overview {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
}

.pswp__custom-caption {
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

@media screen and (min-width: 1024px) {
  .gm-immo-offer__mobile {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .gm-immo-gallery {
    grid-template-columns: 1fr;
  }
  .gm-immo-gallery .gm-immo-gallery-large .gm-immo-gallery__item {
    aspect-ratio: 4/3;
  }
  .gm-immo-gallery .gm-immo-gallery-small {
    grid-template-columns: repeat(auto-fit, minmax(min(50px, 100%), 1fr));
  }
  .gm-immo-table {
    grid-template-columns: 1fr;
  }
  .gm-immo-table__column {
    border-bottom: 1px solid var(--theme-palette-color-1);
    margin-bottom: 0.5rem;
  }
  .gm-immo-table__column:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .gm-immo-overview {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .gm-immo-overview #gm-immo-map-overview {
    height: 50vh;
  }
  .gm-immo-overview .gm-immo-overview__map__btn {
    display: none;
  }
}/*# sourceMappingURL=gm-immo.css.map */