/* GENERAL */
.bookingEngine .flex-center {
  display: flex;
  align-items: center;
}

.bookingEngine .header {
  padding: 0 0 15px;
}

@media screen and (min-width: 550px) {
  .bookingEngine .header {
    padding: 0 0 35px;
  }
}

/* LOGO */
.bookingEngine .header .logo {
  background-color: var(--c-primary);
  padding: 12px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
}

.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-primary);
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 20px;
  transition: all .3s ease;
}

.bookingEngine .header .menu a:hover {
  background-color: transparent;
  color: var(--c-primary-light);
  text-decoration: none;
}

.bookingEngine .header .text-right.menu {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}

.bookingEngine .header .menu a.langSwitch {
  font-weight: 600;
  font-size: 24px;
  margin-left: 10px;
}

/* FOOTER */
.bookingEngine main {
  min-height: 800px;
}

@media screen and (min-width: 768px) {
  .bookingEngine main {
    min-height: 700px;
  }
}

@media screen and (min-width: 1024px) {
  .bookingEngine main {
    min-height: 730px;
  }
}

.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;
}

.bookingEngine footer {
  padding: 30px 0;
}

.bookingEngine footer * {
  color: var(--c-primary);
}

.bookingEngine footer svg {
  height: 30px;
  width: 30px;
}

.themeBookingEngine footer .socialIcons a:hover {
  text-decoration: none;
}

.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 .socialIcons a:hover {
    text-decoration: none;
  }

  .bookingEngine footer .legals {
    width: 70%;
    text-align: right;
    font-size: 18px;
  }
}