/* GENERAL */
.bookingEngine .flex {
  display: flex;
  align-items: center;
}

.bookingEngine .header {
  padding: 15px 0;
}

.bookingEngine a,
.bookingEngine a::after {
  transition: color .3s ease;
}

/* LOGO */
.bookingEngine .header .logo img {
  max-height: 55px;
  max-width: 100%;
}

@media screen and (min-width: 550px) {
  .bookingEngine .header .logo img {
    max-height: 71px;
  }
}

/* MENU ITEMS */
.bookingEngine .header .menu a {
  background-color: transparent;
  color: var(--c-black);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 22px;
}

.bookingEngine .header .menu a:hover {
  background-color: transparent;
  color: var(--c-primary-dark);
  text-decoration: none;
}

@media screen and (min-width: 550px) {
  .bookingEngine .header .menu a,
  .bookingEngine .header .menu .home span,
  .bookingEngine .header .menu a:not(:last-child)::after {
    display: initial;
  } 

  .bookingEngine .header .menu a:not(:last-child)::after {
    content: '|';
    position: relative;
    top: -1px;
  }
}

/* FOOTER */
.bookingEngine main {
  min-height: calc(100vh - 151px - 75px - 108px); /*hier die Höhen von Header und Footer abziehen*/
  margin-top: 50px;
}

.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;
  background-color: var(--c-secondary-light);
  position: relative;
}

.bookingEngine footer .socialIcons a,
.bookingEngine footer .legals a {
  color: var(--c-text);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}

.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-red);
}

.bookingEngine footer svg {
  height: 30px;
  width: 30px;
}

.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: 0px;
  margin-left: 4px;
  margin-right: 4px;
}

svg.wave {
  position: relative;
  top: 5px;
  width: 100%;
  height: auto;
  max-height: 75px;
}

svg.wave path {
  fill: var(--c-secondary-light);
}


@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;
  }
}