.text-shadow-white {
  text-shadow: -1.5px -1.5px 0 white, 1.5px -1.5px 0 white, -1.5px 1.5px 0 white, 1.5px 1.5px 0 white;
  color: var(--inn-neutral);
  letter-spacing: 3px;
}
h1,
h2,
h3 {
  font-weight: 700;
}
h1 {
  font-size: 3em;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 2em;
  }
}
h2 {
  font-size: 3em;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2.25em;
  }
}
.h1-font-size {
  font-size: 3em;
}
@media only screen and (max-width: 767px) {
  .h1-font-size {
    font-size: 2em;
  }
}
.h2-font-size {
  font-size: 3em;
}
@media only screen and (max-width: 767px) {
  .h2-font-size {
    font-size: 2.25em;
  }
}
.h3-font-size {
  font-size: 1.5em;
}
.h4-font-size {
  font-size: 1.2em;
}
.reset-br br {
  display: inline;
  content: ' ';
  padding: 0 3px;
}
.v-bold {
  font-weight: 700;
}
.small-dot-styling {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 100%;
  min-width: 12px;
}
.ul-points ul {
  list-style: none;
  padding: 0;
  padding-left: 20px;
}
.ul-points ul li {
  position: relative;
}
.ul-points ul li:before {
  content: "";
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 100%;
  min-width: 12px;
  display: block;
  position: absolute;
  left: -20px;
  top: 0.4em;
}
.v-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
  box-sizing: border-box;
}
.v-popup-overlay.v-popup-visible {
  opacity: 1;
}
.v-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.v-popup-container {
  position: relative;
  background: #fff;
  border: 4px solid var(--inn-primary);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}
.v-popup-visible .v-popup-container {
  transform: translateY(0);
}
.v-popup-content {
  padding-right: 100px;
}
.v-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: var(--inn-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: background 0.2s ease;
}
.v-popup-close svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.v-popup-close:hover {
  background: #102442;
}
.v-popup-image {
  width: 100%;
  overflow: hidden;
}
.v-popup-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.v-popup-body {
  padding: 30px 40px 40px;
}
.v-popup-headline {
  font-family: var(--inn-head-font);
  font-size: 2em;
  margin: 0 0 15px;
  color: var(--inn-neutral);
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 500;
}
.v-popup-text {
  margin-bottom: 25px;
  line-height: 1.6;
  color: var(--inn-neutral);
}
.v-popup-text p:last-child {
  margin-bottom: 0;
}
.v-popup-button {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .v-popup-overlay {
    padding: 15px;
  }
  .v-popup-container {
    max-height: 85vh;
    border-width: 3px;
  }
  .v-popup-close {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .v-popup-body {
    padding: 20px 25px 30px;
  }
  .v-popup-headline {
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .v-popup-container {
    max-width: 600px;
  }
  .v-popup-body {
    padding: 25px 30px 35px;
  }
  .v-popup-headline {
    font-size: 1.7em;
  }
}
body .v-button {
  display: inline-flex;
  background: none;
  border: none !important;
  padding: 0;
}
body .v-button.block {
  display: flex;
  width: 100%;
}
body .v-button.v-left {
  justify-content: flex-start;
}
body .v-button.v-centered {
  justify-content: center;
}
body .v-button.v-right {
  justify-content: flex-end;
}
body .v-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 0.6rem 1.5rem !important;
  font-size: 15px !important;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  border-radius: 0 !important;
  box-sizing: border-box;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  min-width: 220px !important;
}
body .v-button.v-primary a {
  background-color: var(--inn-primary);
  color: white !important;
  border: 1px solid var(--inn-primary);
}
body .v-button.v-primary a:hover {
  background-color: transparent;
  color: var(--inn-primary) !important;
}
body .v-button.v-secondary a {
  background-color: transparent !important;
  color: var(--inn-primary) !important;
  border: 1px solid var(--inn-primary) !important;
}
body .v-button.v-secondary a:hover {
  background-color: var(--inn-primary) !important;
  color: white !important;
}
body .v-button.v-white a {
  background-color: white;
  color: var(--inn-primary);
  border: 1px solid white;
}
body .v-button.v-white a:hover {
  background-color: transparent;
  color: white;
}
body .v-button.v-neutral a {
  background-color: var(--inn-neutral);
  color: white;
  border: 1px solid var(--inn-neutral);
}
body .v-button.v-neutral a:hover {
  background-color: transparent;
  color: var(--inn-neutral);
}
body .v-button.v-outline a {
  background-color: transparent;
  color: var(--inn-primary);
  border: 1px solid var(--inn-primary);
}
body .v-button.v-outline a:hover {
  background-color: var(--inn-primary);
  color: white;
}
body .v-button.v-outline-white a {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
body .v-button.v-outline-white a:hover {
  background-color: white;
  color: var(--inn-primary);
}
body .a-mietobjekte .button-wrapper .v-button {
  border: none;
  background: none;
  color: inherit;
  width: auto;
}
body .a-mietobjekte .button-wrapper .v-button:hover {
  background-color: transparent;
  color: inherit;
}
body .a-mietobjekte .button-wrapper .v-button a {
  border: solid 1px var(--inn-primary);
  color: var(--inn-primary);
  width: 230px;
  font-size: 12px;
  padding: 0.5rem 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
}
body .a-mietobjekte .button-wrapper .v-button a:hover {
  background-color: var(--inn-primary);
  color: white;
}
body .a-ueber-uns .ce_rsce_button .v-button {
  border: none;
  background: none;
}
body .a-ueber-uns .ce_rsce_button a {
  border-radius: unset;
  padding: unset;
  width: 227px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-transform: unset;
}
body .a-suchboxen .col_1 .ce_rsce_button .v-button,
body .a-suchboxen .col_2 .ce_rsce_button .v-button {
  border: none;
  background: none;
}
body .a-suchboxen .col_1 .ce_rsce_button a,
body .a-suchboxen .col_2 .ce_rsce_button a {
  background-color: white;
  color: var(--inn-primary);
  width: 242px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  transition: 0.3s all ease-in-out;
}
body .a-suchboxen .col_1 .ce_rsce_button a:hover,
body .a-suchboxen .col_2 .ce_rsce_button a:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}
body .schwindspalten .button-wrapper .schwindspalten__button {
  background-color: transparent;
  color: inherit;
  width: auto;
  height: auto;
  padding: 0;
}
body .schwindspalten .button-wrapper .schwindspalten__button a {
  background-color: var(--inn-primary);
  color: white;
  font-size: 15px;
  width: 242px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3rem;
  border: 1px solid var(--inn-primary);
  transition: 0.3s all ease-in-out;
}
body .schwindspalten .button-wrapper .schwindspalten__button a:hover {
  background-color: transparent;
  color: var(--inn-primary);
}
body .schwindspalten .button-wrapper .schwindspalten__button {
  justify-content: flex-start;
  margin-left: 0 !important;
}
body .schwindspalten .button-wrapper.button-margin-small {
  margin-top: 34px !important;
}
body .schwindspalten .pagination-inside {
  align-items: center;
}
body .schwindspalten .pagination-inside:before {
  position: relative;
  top: unset;
  left: unset;
  width: auto !important;
  flex-grow: 1;
}
body .schwindspalten .swiper-slide video.swiper-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1000px) {
  li.v-nav-show-only-mobile {
    display: none !important;
  }
}
@media (max-width: 1000px) {
  .v-show-only-desktop {
    display: none !important;
  }
}
@media only screen and (max-width: 1300px) {
  body #header .inside .v-logo {
    max-width: 20%;
  }
  body #header .inside .v-logo img {
    width: 100% !important;
    height: auto !important;
  }
}
body #header .header-right-lower {
  display: flex;
  grid-gap: 20px;
}
body #header .header-right-lower .v-button {
  width: auto;
}
@media (max-width: 1000px) {
  body #header .header-right-lower .v-button {
    display: none !important;
  }
}
@media only screen and (max-width: 1200px) {
  body #header .header-right-lower .v-button a {
    min-width: unset !important;
  }
}
@media only screen and (max-width: 1200px) {
  body #header .inside .header-nav .level_1 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  body #header #header-nav-mod #header-nav-inh {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  body #header #header-nav-mod #header-nav-inh-mobile {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  body #header #header-nav-mod #header-nav-inh-mobile .burger {
    display: inline-block !important;
  }
}
