/* GENERAL */
.bookingEngine .flex {
  display: flex;
  align-items: center;
}

.bookingEngine .header {
  padding: 15px 0;
  margin-bottom: 40px;
}

@media screen and (min-width: 550px) {
  .bookingEngine .header {
    padding: 25px 0;
  }
}

.bookingEngine a,
.bookingEngine a::after {
  transition: all .3s ease;
}

/* LOGO */
.bookingEngine .header .logo img {
  max-height: 40px;
  max-width: 100%;
}

@media screen and (min-width: 550px) {
  .bookingEngine .header .logo img {
    max-height: 55px;
  }
}

/* MENU ITEMS */
.bookingEngine .header .menu a {
  background-color: transparent;
  color: var(--c-text);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  display: inline;
}

.bookingEngine .header .menu a:hover {
  background-color: transparent;
  color: var(--c--text);
  text-decoration: none;
}

.bookingEngine .header .menu a:hover span {
  color: var(--c--text);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.bookingEngine .header .menu a.langSwitch.active {
  color: var(--c-black);
}

@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 - 145px - 91px); /*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;
}

.bookingEngine footer .socialIcons a,
.bookingEngine footer .legals a {
  color: var(--c-text);
  text-decoration: none;
}

.bookingEngine footer .legals a:hover span,
.bookingEngine footer .legals a:active span,
.bookingEngine footer .legals a:focus span {
  color: var(--c-text);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.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: -1px;
  padding-left: 5px;
}

.bookingEngine footer .legals a:not(:last-child):hover::after {
  color: var(--c-text);
}

@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: 100%;
    text-align: right;
    font-size: 18px;
  }
}