
/* 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: 600;
  font-size: 18px;
  letter-spacing: 3px;
  text-decoration: none;

  span {
    position: relative;
  }

  &:hover {
    background-color: transparent;
    color: var(--c-text);
  }

  span::after {
    content: "";
    width: 100%;
    border-bottom: 1px solid var(--c-text);
    position: absolute;
    bottom: -1px;
    left: -10px;
    opacity: 0;
    transition: all 500ms ease-in-out;;    
  }

  &:hover span::after {
    opacity: 1;
    left: 0;
  }
}

@media screen and (min-width: 550px) {
  .bookingEngine .header .menu a,
  .bookingEngine .header .menu .home span {
    display: initial;
  } 
}

/* FOOTER */
.bookingEngine main {
  min-height: calc(100vh - 55px - 130px - 89px); /*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: 38px 0;
  background-color: var(--c-grey-light);
}

.bookingEngine footer .socialIcons a,
.bookingEngine footer .legals a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 2px;
  position: relative;
  margin-left: 8px;

  &::after {
    content: "";
    width: 100%;
    border-bottom: 1px solid var(--c-text);
    position: absolute;
    bottom: -1px;
    left: -10px;
    opacity: 0;
    transition: all 500ms ease-in-out;;    
  }
}

.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-text);

    &::after {
    opacity: 1;
    left: 0;
  }
}

.bookingEngine footer svg {
  height: 30px;
  width: 30px;
}

.bookingEngine footer .legals,
.bookingEngine footer .socialIcons {
  width: 100%;
  padding: 5px 15px;
  text-align: center;
}

@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;
  }
}