/* GENERAL */
.bookingEngine .flex {
  display: flex;
  align-items: center;
}

.bookingEngine .header {
  padding: 15px 0;
}

@media screen and (min-width: 550px) {
  .bookingEngine .header {
    padding: 35px 0;
  }
}

.bookingEngine a,
.bookingEngine a::after {
  transition: color .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: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bookingEngine .header .menu a:hover {
  background-color: transparent;
  color: var(--c-secondary);
  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: 0px;
  }
}

/* FOOTER */
.bookingEngine main {
  min-height: calc(100vh - 164px - 114px); /*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: 40px 0;
  background-color: var(--c-secondary-light);
}

.bookingEngine footer .socialIcons a,
.bookingEngine footer .legals a {
  color: var(--c-primary);
  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-secondary);
}

.bookingEngine footer svg {
  height: 20px;
  width: 20px;
}

.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-primary);
}

@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: 16px;
  }
}