/* BASE */
.header_wrapper {
  position: relative;
  padding: 26px 0;
}
.header_wrapper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-bottom {
  position: relative;
  border-top: 1px solid rgb(var(--header-border-color));
  border-bottom: 1px solid rgb(var(--header-border-color));
}
.header-bottom .row > div {
  padding: 0;
}
.header__logo-link img {
  /* margin-left: auto;
  margin-right: auto; */
}
.header__secondary-links {
  gap: 20px;
  margin-left: 34px;
}
/* END */

/* CSS VERTICAL */
.vertical-title {
  display: flex;
  align-items: center;
  color: rgb(var(--header-text-color));
  background-color: var(--bg-btn-vertical);
  padding: 12px 30px;
  gap: 0;
  border-radius: 30px;
  width: 100%;
  justify-content: space-between;
  transition: all 0.4s;
}
.menu-vertical{
  width: 17%;
}
.menu-vertical:hover .vertical-title {
  background-color: var(--primary);
}
.menu-vertical:hover .vertical-title svg path,
.menu-vertical:hover .vertical-title .icon-title_vertical svg path {
  /* fill: #fff; */
}
.menu-vertical:hover .vertical-title .nav-vertical-title {
  /* color: #fff; */
}
.icon-title_vertical-left {
  line-height: 1;
}
.vertical-nav__item > .vertical-nav__link-1,
.vertical-nav__item > .header__linklist-link {
  font-size: 14px;
  text-transform: capitalize;
  line-height: 36px;
  padding: 0;
  font-weight: 500;
  font-family: var(--body-font-family);
}
.vertical-nav__item:not(:last-child) > .vertical-nav__link-1 {
  border-bottom: 1px solid rgb(var(--border-color));
}
.icon-title_vertical svg {
  width: 10px;
  height: 8px;
}
.nav-vertical-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  font-family: var(--hd-font-family);
  text-transform: capitalize;
}
.icon-title_vertical {
  line-height: 1;
  margin-left: 70px;
}
.icon-title_vertical svg path {
  fill: rgb(var(--header-text-color));
}
.menu-vertical .header__icon-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 15px;
}
.vertical-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.icon-title_vertical {
  display: none;
}
.menu-vertical .drawer__content {
  border: 1px solid #E9E9E9;
  padding: 8px 30px;
  border-radius: 20px;
}
.vertical-menu-child-title {
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.drawer__content > .vertical-nav > .vertical-nav__item {
  position: relative;
}
.vertiacl-nav-1_1_1 .vertical-nav__link {
  line-height: 35px;
}
.menu-vertical .link--animated.menu-item--active:after {
  transform: scaleX(0);
  background: var(--primary);
  height: 2px;
}
.menu-vertical .link--animated.menu-item--active:hover:after {
  transform: scaleX(1);
}
/* END  */

/* CUSTOM */
.header-search {
  display: flex;
  align-items: center;
  width: 100%;
  background: #F4F4F4;
  border-radius: 30px;
  padding: 13px 24px;
  margin-left: 15px;
}

.header-search .predictive-search__form input{
  flex: 1;
}
.search-icon-text .predictive-search__input{
  flex: 1;
}

.header__search-bar.predictive-search{
  width: 100%;
}
.header__inline-navigation {
  justify-content: left;
  padding: 0 15px;
}
.icon-header .fa-magnifying-glass {
  font-size: 16px;
}
/* END */

@media (min-width: 1200px) {
  /* CSS VERTICAL */
  .header-bottom .container > .row {
    margin: 0;
  }
  .header-3 .drawer {
    max-width: 100%;
  }
  .header__logo,
  .header-contact,
  .header__secondary-links {
    /* flex: 1; */
  }

  .menu-vertical .drawer__content {
    padding: 24px 30px;
  }
  .menu-vertical:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100px;
    left: 0;
    z-index: -1;
  }
  .menu-vertical .drawer__content {
    position: relative;
  }
  #vertical-menu-drawer {
    opacity: 0;
    visibility: hidden;
    transform: none;
    position: absolute;
    height: max-content;
    top: 100%;
    bottom: unset;
    left: 0;
    right: 0;
    display: block;
    z-index: 99999;
    transition: all 0.4s;
  }
  .vertical-nav__images-wrapper {
    padding: 0 40px 40px;
  }
  .menu-vertical {
    position: relative;
  }
  .menu-vertical:hover #vertical-menu-drawer {
    opacity: 1;
    visibility: visible;
  }
  .menu-vertical .drawer__header--shadowed,
  .collapsible > .vertical-nav button.vertical-nav__link,
  .menu-vertical .drawer__footer {
    display: none;
  }
  .header-3 .collapsible {
    display: block;
    height: auto;
    overflow: visible;
    visibility: visible;
  }
  .menu-vertical
    .drawer__content
    > .vertical-nav
    > .vertical-nav__item.item-hover:hover
    > .collapsible.collapsible-mega {
    display: block;
  }
  .drawer__content > .vertical-nav > .vertical-nav__item:before {
    content: "";
    display: block;
    position: absolute;
    width: 33px;
    height: 100%;
    right: -33px;
  }
  .menu-vertical
    .drawer__content
    > .vertical-nav
    > .vertical-nav__item
    > .collapsible {
    display: none;
    height: auto;
    position: absolute;
    left: calc(100% + 32px);
    top: 0;
    background-color: #fff;
    transition: all 0.4s;
    overflow: visible !important;
    box-shadow: 0 0 50px #00000012;
    width: 100%;
  }
  .menu-vertical .drawer__content {
    overflow: visible;
  }
  .vertical-nav__link.d-xl-none {
    display: none;
  }
  .list-link_mega:before {
    content: "+";
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 700;
    line-height: 0.5;
    font-size: 16px;
    display: inline-block;
    margin-left: 0;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__linklist-link {
    width: 100%;
  }
  .collapsible-mega > .vertical-nav {
    display: flex;
    justify-content: space-between;
    padding: 8px 30px 22px;
  }
  .vertical-nav__images-scroller {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .vertical-nav__image-push {
    width: 100%;
  }
  .collapsible-mega > .vertical-nav > .vertical-nav__item {
    padding: 0;
    width: 100%;
  }
  .vertical-nav__image-push img.mega-menu__image {
    width: 100%;
  }
  .menu-vertical:hover {
    overflow: visible;
  }
  .menu-vertical {
    overflow: hidden;
  }
  .icon-title_vertical {
    display: block;
  }
  .vertical-heading {
    margin: 0 0 5px 0;
  }
  /* END  */
}

@media (max-width: 1199px) {
  .header-bottom .menu-vertical {
    width: 100%;
  }
  .header__icon-menu,
  .header__logo,
  .header__secondary-links {
    flex: 1;
  }
  .header__secondary-links {
    padding-right: 15px;
  }
  .vertical-title {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header__icon-menu {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .header_wrapper {
    padding: 26px 0 0;
  }
  .header__icon-menu,
  .header__secondary-links {
    order: 1;
  }
  .header__logo {
    order: 0;
    width: 100%;
    flex: unset;
  }
  .header_wrapper-row {
    flex-wrap: wrap;
  }
  .header__secondary-links {
    padding: 0;
  }
}
