header svg {
  height: 20px;
}

header {
  padding: 15px 0;
  background-color: #fff;
}

ul.menu-items {
  list-style: none;
  display: flex;
  padding: 0px;
  margin: 0px;
  margin-left: 45px;
}

ul.menu-items li {
  margin-right: 30px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left nav {
  display: flex;
  align-items: center;
}

.menu-items .active a {
  font-weight: 700;
  color: #00ADCB;
}

.header-right ul {
  list-style: none;
  display: flex;
  padding: 0px;
  margin: 0px;
  align-items: center;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.header-right input {
  height: 40px;
  width: 300px;
  padding: 15px;
  padding-left: 40px;
}

.header-right ul li {
  margin: 0 7.5px;
}

.header-right ul li a {
  fill: #002647;
}

.header-right ul li:last-child a {
  fill: #FF6B6B;
}

.header-right ul li:hover a {
  fill: #00ADCB;
}

.header-right ul li::hover:last-child a {
  fill: #00ADCB;
}

.search-wrap svg {
  height: 15px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.search-wrap svg {
  height: 15px;
  fill: #002647;
}

.search-wrap {
  position: relative;
}

::placeholder {
  color: #002647;
  opacity: 1;
  font-size: 14px;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #002647;
  font-size: 14px;
}

/*** INNER HEADER ***/

.inner-header {
  color: #fff;
  position: relative;
  z-index: 9;
}

.logged-in-user {
  font-weight: 700;
  font-size: 26px;
}

.breadcrumbs {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 7.5px 15px;
  border-radius: 8px;
  width: fit-content;
  margin-top: 10px;
  font-size: 14px;
}

.breadcrumbs ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
}

.breadcrumbs a {
  color: #fff;
}

.breadcrumbs li {
  display: flex;
}

.breadcrumbs span {
  margin-right: 7.5px;
  margin-left: 5px;
}

.search-small {
  display: none;
}

.search-bar.hidden {
  display: none;
}

/* XXL > 1400 */

/* XL */
@media (max-width: 1400px) {
  ul.selector_alpha.tab_select {
    display: flex;
    color: #fff;
    list-style: none;
    padding: 0px;
    margin: 30px -0px 0px -0px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .white-box {
    height: 100%;
  }

  .col-l {
    width: 50% !important;
  }

  .row-add,
  .times-row {
    margin-top: 15px;
    position: relative;
  }

  .col-s {
    width: 16.5% !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -22.25px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }

  .bookings-list li {
    padding: 7.5px 10px;
    border-radius: 24px;
    font-size: 14px;
    margin-top: 15px;
  }

}

/* L */
@media (max-width: 1200px) {
  .header-right input {
    height: 40px;
    width: auto;
    padding: 15px;
    padding-left: 40px;
  }

  ul.menu-items {
    margin-left: 35px;
  }

  img.logo-header {
    width: 225px;
  }

}

/* M */
@media (max-width: 992px) {

  .search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-wrap form {
    position: relative;
  }

  .search-wrap input {
    height: 40px;
    width: 450px;
    padding: 15px;
    padding-left: 40px;
  }

  .search-main {
    display: none;
  }

  ul.menu-items {
    margin-left: 15px;
  }

  .search-small {
    display: block;
  }
}

/* S */
@media (max-width: 768px) {
  .header-left {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  ul.menu-items {
    margin-left: 0;
    margin-top: 15px;
  }

  /*

  .header-right {
    margin-top: 10px;
  }

  */

  .hidden-xs {
    display: none !important;
  }
}

/* XS */
@media (max-width: 576px) {
  .search-wrap input {
    width: auto;
  }

  img.logo-header {
    width: 80%;
  }
}












#xs-menu-wrap {
  display: none;
}

.hidden--above {
  display: none;
}

@media (max-width: 768px) {

  .hidden--above {
    display: block;
  }

  .header-bars-wrap {
    cursor: pointer;
    position: relative;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  /* Menu Items */
  #xs-menu-wrap {

    position: fixed;
    background: #002647;
    z-index: -1;
    right: -100%;
    top: 0;
    bottom: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 300px;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    height: 100vh;
    transition-duration: 500ms;
    display: flex;

    .header-bars-wrap {
      position: absolute;
      top: 30px;
      right: 30px;
    }

    li {
      /* opacity: 0; */
      opacity: 1;
    }

    li.active {
      opacity: 1;
    }

    li:nth-of-type(1).active {
      transition-duration: 1000ms;
    }

    li:nth-of-type(2).active {
      transition-duration: 2000ms;
    }

    li:nth-of-type(3).active {
      transition-duration: 3000ms;
    }

    li:nth-of-type(4).active {
      transition-duration: 4000ms;
    }

  }

  ul.menu-items.menu-items--slider {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  #xs-menu-wrap.open {
    opacity: 1;
    z-index: 99999999;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Bar Items */
  .bar1,
  .bar2,
  .bar3 {
    height: 3px;
    background-color: #002647;
    margin: 2.75px 0;
    transition: 0.4s;
    cursor: pointer;
  }

  .bar1 {
    width: 34px;
  }

  .bar2 {
    width: 28px;
  }

  .bar3 {
    width: 38px;
  }

  .bar1.change {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
    transform: rotate(-45deg) translate(-5px, 5px);
    -moz-transform: rotate(-45deg) translate(-5px, 5px);
    -ms-transform: rotate(-45deg) translate(-5px, 5px);
    -o-transform: rotate(-45deg) translate(-5px, 5px);
    background-color: #fff;
    width: 35px;
  }

  .slider--btn {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;

    a {
      margin: 0px 30px;
      display: flex;
      background-color: #FF6B6B;
      border-radius: 36px;
      -webkit-border-radius: 36px;
      -moz-border-radius: 36px;
      -ms-border-radius: 36px;
      -o-border-radius: 36px;
      padding: 10px;
      margin-top: 30px;
      color: #fff;
      font-weight: 700;
      font-size: 20px;
      text-align: center;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    a:hover {
      background-color: #fff;

      svg {
        fill: #00ADCB;
      }
    }

    svg {
      width: 20px;
      height: 20px;
      fill: #fff;
      margin-right: 10px;
    }
  }

  .blackover--wrap {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9999999;
    display: none;
  }

  .disable-scroll {
    .blackover--wrap {
      display: block;
    }
  }

  .bar2.change {
    opacity: 0;
  }

  .bar3.change {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
    background-color: #fff;
    width: 35px;
  }

  .hidden-menu--small {
    display: none;
  }

  ul.menu-items.menu-items--slider {
    margin-top: 75px;
    width: 100%;

    a {
      color: #fff;
      font-size: 16px;
      margin: 15px 0;
      display: block;
    }

    a:hover,
    .active a {
      color: #00ADCB;
    }

    li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.6);
      margin: 0px 30px;
    }
  }
}