/* HEADER V7 */
.bookingEngine .headerV7 {
  padding: 30px 0 200px;

  @media (width <= 549px) {
      padding: 30px 0 170px;
  }

  @media (width <= 374px) {
      padding: 20px 0 130px;
  }  
}

.col-xs-6.col-sm-3.col-md-2.text-right.menu {
  margin-bottom: 10px;
  order: 3;
}

@media screen and (min-width: 768px) {
  .bookingEngine .headerV7 {
    padding: 30px 0 195px;
  }
  .col-xs-6.col-sm-3.col-md-2.text-right.menu {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .bookingEngine .headerV7 {
    padding: 30px 0 230px;
  }
}

.bookingEngine .headerV7 .menu * {
  vertical-align: middle;
}

.bookingEngine .headerV7 .menu svg {
  height: 22px;
  width: 22px;
}

@media screen and (max-width:549px) {
  .bookingEngine .headerV7 .menu a:not(:last-child)::after {
    display: none;
  }  
  .bookingEngine .headerV7 .menu a {
    margin: 0 0 0 5px;
  }
}

.bookingEngine .headerV7 .menu a:not(:last-child):hover::after {
  color: var(--c-white);
}

.bookingEngine .headerV7 .menu .home span,
.bookingEngine .headerV7 .menu a.lastMinute span {
  text-transform: none;
  display: none;
}

@media screen and (min-width: 550px) {
  .bookingEngine .headerV7 .menu .home span {
    display: initial;
  } 
}

@media screen and (min-width: 750px) {
  .bookingEngine .headerV7 .menu a.lastMinute span {
    display: initial;
  } 
}

/* LOGO */
.bookingEngine .headerV7 .logo a {
  margin-left: auto;
  margin-right: auto; 
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;  
}

.bookingEngine .headerV7 .logo img {
  max-height: 140px;
}

@media screen and (min-width: 550px) {
  .bookingEngine .headerV7 .logo img {
    max-height: 160px;
  }
}

@media screen and (min-width: 768px) {
  .bookingEngine .headerV7 .logo img {
    max-height: 220px;
  }
}

@media screen and (min-width: 992px) {
  .bookingEngine .headerV7 .logo a {
    top: -40px;  
  
      img {
      max-height: 220px;
      }
  }  
}

.headerBackground {
  width: 100vw;
  height: 300px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background-image: url(/assets/abm/img/bg.jpg); 
  background-position: center 70%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (width >= 550px) {
  .headerBackground {
    height: 320px;
  }
}

@media (width >= 768px) {
  .headerBackground {
    height: 320px;
  }
}

@media (width >= 992px) {
  .headerBackground {
    height: 370px;
  }
}

.blur {
  backdrop-filter: blur(2px);
  height: 100%;
	width: 100%;  
}

.blur::before {
  width: 100%;
  height: 50%;
  background: linear-gradient(rgba(0,0,0,0.5) 0%,rgba(84,84,84,0) 100%);
  opacity: 1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  content: "";
}

.blur::after {
  width: 100%;
  height: 50%;
  background: linear-gradient(rgba(0,0,0,0.5) 0%,rgba(84,84,84,0) 100%);
  opacity: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 50;
  content: "";
  transform: rotate(180deg);
}

.navbar.navbar-default.navbar-fixed-top.abm-navbar {
  border-color: transparent;
}