/* 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;
  font-weight: 400;
}

/* 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-secondary);
  font-family: var(--font-secondary);
  /* font-style: italic; */
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.bookingEngine .header .menu a:hover {
  background-color: transparent;
  color: var(--c-grey);
  text-decoration: none;
}

.bookingEngine .header .menu a:focus {
  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;
  } 
}

/* FOOTER */
.bookingEngine main {
    min-height: calc(100vh - 87px);
  }

.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: 10px 0;
  margin-top: 30px;
  background-color: var(--c-secondary);
}

.bookingEngine footer .socialIcons a {
  color: var(--c-white);
  text-decoration: none;
  padding-right: 5px;
}

.bookingEngine footer .legals a {
  color: var(--c-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-primary);
}

.bookingEngine footer .socialIcons a:hover,
.bookingEngine footer .socialIcons a:active,
.bookingEngine footer .socialIcons a:focus {
  color: var(--c-grey);
}

.bookingEngine footer .legals a:hover,
.bookingEngine footer .legals a:active,
.bookingEngine footer .legals a:focus {
  color: var(--c-grey);
}

.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(:first-child) {
  padding-left: 15px;
}

@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;
  }
}
