/* GENERAL */
.bookingEngine .flex {
  display: flex;
  align-items: center;
}

.bookingEngine .header {
  padding: 50px 0 100px;
}

@media screen and (min-width: 768px) {
  .bookingEngine .header {
    padding: 50px 0 180px;
  }
}

.bookingEngine a,
.bookingEngine a::after {
  transition: all .3s ease-in-out;
}

/* LOGO */
.bookingEngine .headerV3 .logo a {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: -35px;  
}

.bookingEngine .headerV3 .logo img {
  max-height: 100px;
}

@media screen and (min-width: 550px) {
  .bookingEngine .headerV3 .logo img {
    max-height: 140px;
  }
}

@media screen and (min-width: 768px) {
  .bookingEngine .headerV3 .logo img {
    max-height: 200px;
  }
}

/* MENU ITEMS */
.bookingEngine .header .menu a {
  background-color: transparent;
  color: var(--c-text);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}

.bookingEngine .header .menu a:hover {
  background-color: transparent;
  color: var(--c-primary);
}

.bookingEngine .header .menu a:hover:has(svg) {
  text-decoration: none;
}

/* FOOTER */
.bookingEngine main {
  min-height: calc(100vh - 256px - 209px); /*hier die Höhen von Header und Footer abziehen*/
}

.bookingEngine main p.text-center:has(.fa-cog.fa-spin),
.bookingEngine main .fa-cog.fa-spin {
  display: none !important;
}

.abm-hidden:has(#abmCalendarArea) {
  display: block !important;
  transition: height 5s ease;
}

.bookingEngine footer {
  padding: 30px 0 140px;
}

.bookingEngine footer::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26vh;
  background: transparent linear-gradient(180deg, transparent 0%, #295d4c 100%) 0% 0% no-repeat padding-box;
  opacity: 0.8;
  transition: height .3s ease-in-out;
  z-index: -1;
}

.bookingEngine footer .socialIcons a,
.bookingEngine footer .legals a {
  color: var(--c-text);
  text-decoration: none;
}

.bookingEngine footer .socialIcons a:hover,
.bookingEngine footer .socialIcons a:active,
.bookingEngine footer .socialIcons a:focus,
.bookingEngine footer .legals a:hover,
.bookingEngine footer .legals a:active,
.bookingEngine footer .legals a:focus {
  color: var(--c-primary);
}

.bookingEngine footer svg {
  height: 25px;
  width: 25px;
}

.bookingEngine footer .legals,
.bookingEngine footer .socialIcons {
  width: 100%;
  padding: 5px 15px;
  text-align: center;
}

.bookingEngine footer .legals a:not(:last-child)::after {
  content: '|';
  position: relative;
  top: -1px;
  padding-left: 5px;
}

.bookingEngine footer .legals a:not(:last-child):hover::after {
  color: var(--c-text);
}

@media screen and (max-width:550px) {
  .topBar > .container > .row {
    display: flex;
    align-items: center;    
  }  
  .bookingEngine .header {
    padding: 30px 0 55px;
  }
  .bookingEngine .header .menu a {
    display: block;
  }
  .bookingEngine .headerV3 .menu a:not(:last-child)::after {
    display: none;
  }
}

@media screen and (min-width: 550px) {
  .bookingEngine footer .row {
    display: flex;
    align-items: center;
  }

  .bookingEngine footer .socialIcons {
    width: 30%;
    text-align: left;
  }

  .bookingEngine footer .legals {
    width: 70%;
    text-align: right;
    font-size: 18px;
  }
}