/* =========================================================
   FLEXTHERM GLOBALE HEADER
   START
   ========================================================= */

#top.ft-site-header {
  --ft-header-blue: #68a2b9;
  --ft-header-blue-dark: #315c6d;
  --ft-header-blue-deep: #244653;
  --ft-header-green: #4caf7d;
  --ft-header-green-dark: #35845c;
  --ft-header-ink: #292b23;
  --ft-header-surface: #f3f5f6;
  --ft-header-surface-blue: #e8f1f3;
  --ft-header-border: #dde3e6;
  --ft-header-font: "Poppins", Arial, Helvetica, sans-serif;
  --topbarHeight: 106px;
  --menuHeight: 53px;
  position: relative;
  z-index: 999;
  color: var(--ft-header-ink);
  font-family: var(--ft-header-font);
  font-size: 14px;
}

#top.ft-site-header,
#top.ft-site-header *,
#top.ft-site-header *::before,
#top.ft-site-header *::after {
  box-sizing: border-box;
}

#top.ft-site-header input,
#top.ft-site-header button,
#top.ft-site-header select,
#top.ft-site-header textarea {
  font-family: var(--ft-header-font);
}

#top.ft-site-header .ft-site-header__wrap {
  width: 100%;
  border-bottom: 1px solid var(--ft-header-border);
  background: #fff;
  box-shadow: 0 6px 20px rgba(36, 70, 83, .06);
}

#top.ft-site-header .ft-site-header__utility {
  min-height: 32px;
  background: var(--ft-header-blue-deep);
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  line-height: 1.3;
}

#top.ft-site-header .ft-site-header__utility > .container {
  min-height: 32px;
  gap: 24px;
}

#top.ft-site-header .ft-site-header__utility p {
  margin: 0;
  color: inherit;
}

#top.ft-site-header .ft-site-header__utility strong {
  color: #fff;
}

#top.ft-site-header .ft-site-header__utility nav {
  gap: 22px;
}

#top.ft-site-header .ft-site-header__utility a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  transition: color .16s ease;
}

#top.ft-site-header .ft-site-header__utility a:hover,
#top.ft-site-header .ft-site-header__utility a:focus-visible {
  color: #fff;
}

#top.ft-site-header .ft-site-header__main {
  margin: 0;
  border: 0;
  background: #fff;
}

#top.ft-site-header .ft-site-header__main-row {
  min-height: 74px;
  gap: 32px;
}

#top.ft-site-header .ft-site-header__brand-area {
  flex: 0 0 auto;
}

#top.ft-site-header .ft-site-header__logo {
  flex: 0 0 auto;
  margin: 0;
}

#top.ft-site-header .ft-site-header__logo > a {
  display: flex;
  align-items: center;
}

#top.ft-site-header .ft-site-header__logo img.desktop-logo {
  width: min(230px, 18vw);
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

#top.ft-site-header #catbtn,
#top.ft-site-header #menubtn {
  margin-left: 18px;
}

#top.ft-site-header #catbtn > .btn,
#top.ft-site-header #menubtn > .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--ft-header-border);
  border-radius: 7px;
  background: var(--ft-header-surface);
  color: var(--ft-header-blue-deep);
  font-family: var(--ft-header-font);
  font-size: 13px;
  font-weight: 700;
}

#top.ft-site-header .ft-site-header__actions {
  min-width: 0;
  flex: 1 1 auto;
  gap: 10px;
}

#top.ft-site-header #showSearch {
  min-width: 260px;
  max-width: 620px;
  height: 46px;
  flex: 1 1 520px;
  order: -1;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid #cbd7dc;
  border-radius: 8px;
  background: #f7f9fa;
  transition: border-color .16s ease, box-shadow .16s ease;
}

#top.ft-site-header #showSearch:hover,
#top.ft-site-header #showSearch:focus-within {
  border-color: var(--ft-header-blue);
  box-shadow: 0 0 0 3px rgba(104, 162, 185, .15);
}

#top.ft-site-header #showSearch input {
  min-width: 0;
  height: 44px;
  flex: 1 1 auto;
  margin: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ft-header-ink);
  font-size: 14px;
}

#top.ft-site-header #showSearch button {
  width: 52px;
  height: 46px;
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  margin: -1px -1px -1px 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--ft-header-blue);
  color: #fff;
  font-size: 18px;
  opacity: 1;
}

#top.ft-site-header .login > a,
#top.ft-site-header .favorites > a,
#top.ft-site-header .cart > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ft-header-blue-deep);
  font-family: var(--ft-header-font);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

#top.ft-site-header .login > a:hover,
#top.ft-site-header .favorites > a:hover,
#top.ft-site-header .cart > a:hover {
  border-color: var(--ft-header-border);
  background: var(--ft-header-surface-blue);
}

#top.ft-site-header .favorites .count,
#top.ft-site-header .cart .count {
  position: relative;
}

#top.ft-site-header .favorites .items,
#top.ft-site-header .cart .count > span {
  position: absolute;
  top: -2px;
  right: 1px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--ft-header-green);
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

#top.ft-site-header .login.with-drop .dropdown,
#top.ft-site-header .cart.with-drop .dropdown {
  margin-top: 9px;
  border: 1px solid var(--ft-header-border);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(36, 70, 83, .14);
}

#top.ft-site-header .ft-site-header__nav {
  margin: 0;
  border-top: 1px solid #eef2f3;
  border-bottom: 1px solid var(--ft-header-border);
  background: var(--ft-header-surface);
}

#top.ft-site-header .ft-site-header__nav > .container,
#top.ft-site-header .ft-site-header__nav .menu,
#top.ft-site-header .ft-site-header__nav .menu > ul {
  min-height: 52px;
}

#top.ft-site-header .ft-site-header__nav .menu > ul {
  justify-content: space-between;
  gap: 4px;
}

#top.ft-site-header .ft-site-header__nav .menu > ul > li {
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

#top.ft-site-header .ft-site-header__nav .itemLink {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 7px;
  color: var(--ft-header-ink);
  font-family: var(--ft-header-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

#top.ft-site-header .ft-site-header__nav .itemLink::after {
  position: absolute;
  right: 8px;
  bottom: -1px;
  left: 8px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
  content: "";
}

#top.ft-site-header .ft-site-header__nav li.active > .itemLink,
#top.ft-site-header .ft-site-header__nav .itemLink.active,
#top.ft-site-header .ft-site-header__nav .itemLink:hover {
  color: var(--ft-header-blue-dark);
}

#top.ft-site-header .ft-site-header__nav li.active > .itemLink::after,
#top.ft-site-header .ft-site-header__nav .itemLink.active::after {
  background: var(--ft-header-blue);
}

#top.ft-site-header .ft-site-header__nav .subnav,
#top.ft-site-header .ft-site-header__nav .subsubnav {
  border: 1px solid var(--ft-header-border);
  background: #fff;
  box-shadow: 0 16px 36px rgba(36, 70, 83, .12);
}

#top.ft-site-header .ft-site-header__quote {
  align-items: center !important;
  margin-left: 8px;
}

#top.ft-site-header .ft-site-header__quote > .itemLink {
  min-height: 38px;
  justify-content: center;
  padding: 0 17px;
  border-radius: 7px;
  background: var(--ft-header-green);
  color: #fff;
}

#top.ft-site-header .ft-site-header__quote > .itemLink:hover {
  background: var(--ft-header-green-dark);
  color: #fff;
}

#top.ft-site-header .ft-site-header__quote > .itemLink::after {
  display: none;
}

#top.ft-site-header .ft-site-header__mobile-menu {
  border-top: 1px solid transparent;
  background: transparent;
}

#top.ft-site-header .ft-site-header__mobile-menu .wrap {
  border-top: 1px solid var(--ft-header-border);
  background: #fff;
}

#top.ft-site-header .ft-site-header__mobile-menu .itemLink,
#top.ft-site-header .ft-site-header__mobile-menu .other > a {
  color: var(--ft-header-ink);
  font-family: var(--ft-header-font);
}

#top.ft-site-header .ft-site-header__mobile-menu li.active > a,
#top.ft-site-header .ft-site-header__mobile-menu a.active {
  color: var(--ft-header-blue-dark);
}

#top.ft-site-header .ft-site-header__usps {
  margin: 0;
  padding: 22px 0 18px;
  border: 0;
  background: #fff;
  box-shadow: none;
  color: #5b6569;
}

#top.ft-site-header .ft-site-header__usps > .container,
#top.ft-site-header .ft-site-header__usps > .container > div {
  min-height: 0;
}

#top.ft-site-header .ft-site-header__usps > .container > div {
  display: block;
}

#top.ft-site-header .ft-site-header__usp-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--ft-header-border);
  border-radius: 8px;
  background: #fff;
  list-style: none;
}

#top.ft-site-header .ft-site-header__usp-grid > li {
  min-width: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 20px;
  border-right: 1px solid var(--ft-header-border);
  color: #5b6569;
  font-family: var(--ft-header-font);
  font-size: 13px;
  font-weight: 450;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
}

#top.ft-site-header .ft-site-header__usp-grid > li:last-child {
  border-right: 0;
}

#top.ft-site-header .ft-site-header__usp-grid > li > i {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 999px;
  background: #ecf8f0;
  color: #20b453;
  font-size: 12px;
}

#top.ft-site-header .ft-site-header__usp-grid > li > i::before {
  color: #20b453 !important;
  content: "✓" !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700;
}

#top.ft-site-header .ft-site-header__usp-copy {
  min-width: 0;
  display: block;
}

#top.ft-site-header .ft-site-header__usp-grid a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

#top.ft-site-header .ft-site-header__usp-grid strong {
  color: var(--ft-header-ink);
  font-weight: 700;
}

#top.ft-site-header .ft-site-header__usps .announcement,
#top.ft-site-header .ft-site-header__usps .announcement a {
  color: #5b6569;
  font-weight: 450;
}

#top.ft-site-header #searchExpanded .search-form,
#top.ft-site-header #searchResults {
  border-color: var(--ft-header-border);
}

#top.ft-site-header #searchResults {
  box-shadow: 0 20px 50px rgba(36, 70, 83, .16);
}

@media (max-width: 1240px) {
  #top.ft-site-header .ft-site-header__main-row {
    gap: 20px;
  }

  #top.ft-site-header .ft-site-header__logo img.desktop-logo {
    width: min(205px, 17vw);
  }

  #top.ft-site-header #showSearch {
    min-width: 220px;
  }

  #top.ft-site-header .ft-site-header__nav .itemLink {
    padding-inline: 5px;
    font-size: 12px;
  }

  #top.ft-site-header .ft-site-header__quote > .itemLink {
    padding-inline: 12px;
  }

  #top.ft-site-header .ft-site-header__usp-grid > li,
  #top.ft-site-header .ft-site-header__usp-grid > li a {
    font-size: 12px;
  }
}

@media (min-width: 1001px) {
  #top.ft-site-header .ft-site-header__wrap.fixed + .below-main,
  #top.ft-site-header .ft-site-header__wrap + .below-main {
    margin-top: 192px !important;
  }

  #top.ft-site-header .ft-site-header__wrap.fixed #menu.ft-site-header__nav,
  #top.ft-site-header #menu.ft-site-header__nav {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 53px !important;
  }

  #top.ft-site-header .ft-site-header__nav > .container {
    width: min(calc(100% - 60px), 1380px) !important;
    max-width: 1380px !important;
    min-height: 53px;
    height: 53px;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  #top.ft-site-header .ft-site-header__nav .menu,
  #top.ft-site-header .ft-site-header__nav .menu > ul {
    width: 100%;
    min-height: 53px;
    height: 53px;
  }

  #top.ft-site-header .ft-site-header__nav .menu > ul {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(5px, .7vw, 12px);
  }

  #top.ft-site-header .ft-site-header__nav .menu.overflow > ul,
  #top.ft-site-header .ft-site-header__nav .menu > ul {
    overflow: visible !important;
    scrollbar-width: none !important;
  }

  #top.ft-site-header .ft-site-header__nav .menu.overflow::before,
  #top.ft-site-header .ft-site-header__nav .menu.overflow::after {
    display: none;
  }

  #top.ft-site-header #menu.ft-site-header__nav ul > li.item,
  #top.ft-site-header #menu.ft-site-header__nav ul > li.item:not(:last-of-type),
  #top.ft-site-header #menu.ft-site-header__nav .menu.overflow > ul > li:last-of-type {
    margin: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  #top.ft-site-header #menu.ft-site-header__nav .itemLink,
  #top.ft-site-header #menu.ft-site-header__nav .menu.overflow .itemLink {
    height: 53px !important;
    padding-inline: 3px;
    font-size: clamp(10.5px, 1vw, 14px);
  }

  #top.ft-site-header .ft-site-header__quote {
    margin-left: 0;
  }

  #top.ft-site-header .ft-site-header__quote > .itemLink {
    min-height: 38px;
    height: 38px;
    padding-inline: 14px;
  }
}

@media (max-width: 1240px) {
  #top.ft-site-header #menu.ft-site-header__nav {
    display: none !important;
  }

  #top.ft-site-header .ft-site-header__wrap.fixed + .below-main,
  #top.ft-site-header .ft-site-header__wrap + .below-main {
    margin-top: 139px !important;
  }

  #top.ft-site-header #mobile-menu-btn {
    width: 44px;
    height: 44px;
    display: flex !important;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 8px;
  }

  #top.ft-site-header .ft-site-header__mobile-menu {
    top: 106px;
  }
}

@media (max-width: 1000px) {
  #top.ft-site-header {
    --topbarHeight: 108px;
  }

  #top.ft-site-header .ft-site-header__wrap.fixed + .below-main,
  #top.ft-site-header .ft-site-header__wrap + .below-main {
    margin-top: 108px !important;
  }

  #top.ft-site-header .ft-site-header__main-row {
    position: relative;
    min-height: 108px;
    display: block;
  }

  #top.ft-site-header .ft-site-header__brand-area {
    min-height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #top.ft-site-header #mobile-menu-btn {
    position: absolute;
    top: 7px;
    left: 0;
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  #top.ft-site-header .ft-site-header__brand-area > a.show-575-flex {
    position: absolute;
    top: 7px;
    right: 48px;
    width: 42px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--ft-header-blue-deep);
  }

  #top.ft-site-header .ft-site-header__logo {
    min-height: 56px;
    justify-content: center;
  }

  #top.ft-site-header .ft-site-header__logo img.mobile-logo {
    width: min(190px, 48vw);
    max-height: 48px;
    object-fit: contain;
  }

  #top.ft-site-header .ft-site-header__actions {
    position: static;
    width: auto;
    min-height: 0;
    display: block;
  }

  #top.ft-site-header .ft-site-header__actions .cart {
    position: absolute !important;
    top: 7px !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    flex: 0 0 44px !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 4;
  }

  #top.ft-site-header .ft-site-header__actions .login,
  #top.ft-site-header .ft-site-header__actions .favorites {
    display: none !important;
  }

  #top.ft-site-header .ft-site-header__actions .cart > a {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px;
    margin: 0 !important;
    padding: 0;
  }

  #top.ft-site-header .ft-site-header__actions #showSearch {
    position: absolute;
    top: 61px;
    right: 0;
    left: 0;
    z-index: 2;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 42px;
    display: flex !important;
    margin: 0;
  }

  #top.ft-site-header #showSearch input {
    height: 40px;
  }

  #top.ft-site-header #showSearch button {
    width: 50px;
    height: 42px;
    flex-basis: 50px;
  }

  /* De oorspronkelijke functionele zoeklaag blijft behouden, maar ligt
     gesloten onzichtbaar boven hetzelfde mobiele zoekveld. */
  #top.ft-site-header .search-autocomplete {
    position: fixed !important;
    top: 61px !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 12;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    background: transparent !important;
    pointer-events: none !important;
  }

  #top.ft-site-header .search-autocomplete #searchExpanded {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    transition: none !important;
  }

  #top.ft-site-header .search-autocomplete.show {
    pointer-events: auto !important;
  }

  #top.ft-site-header .search-autocomplete.show #searchExpanded {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  #top.ft-site-header .search-autocomplete #searchExpanded > .container {
    width: calc(100% - 28px) !important;
    max-width: none !important;
    height: 42px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  #top.ft-site-header .search-autocomplete #formSearch {
    width: 100% !important;
    height: 42px !important;
    border: 1px solid var(--ft-header-border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }

  #top.ft-site-header .search-autocomplete #formSearch input {
    height: 40px !important;
    padding: 0 14px !important;
    font-family: var(--ft-header-font);
    font-size: 14px !important;
  }

  #top.ft-site-header .search-autocomplete #formSearch .search-icon {
    width: 50px !important;
    height: 42px !important;
    flex: 0 0 50px !important;
    justify-content: center;
    background: var(--ft-header-blue);
  }

  #top.ft-site-header .search-autocomplete #formSearch .search-icon i::before {
    color: var(--ft-header-blue-deep) !important;
  }

  #top.ft-site-header .ft-site-header__usps {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    align-items: initial !important;
  }

  #top.ft-site-header .ft-site-header__usps > .container,
  #top.ft-site-header .ft-site-header__usps > .container > div {
    height: auto !important;
    min-height: 0 !important;
  }

  #top.ft-site-header .ft-site-header__usps ul,
  #top.ft-site-header .ft-site-header__usp-grid {
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
  }

  #top.ft-site-header .ft-site-header__usp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 !important;
  }

  #top.ft-site-header .ft-site-header__usp-grid > li {
    min-height: 66px;
    padding: 12px 16px;
  }

  #top.ft-site-header .ft-site-header__usp-grid > li:nth-child(2n) {
    border-right: 0;
  }

  #top.ft-site-header .ft-site-header__usp-grid > li:nth-child(n + 3) {
    border-top: 1px solid var(--ft-header-border);
  }

  #top.ft-site-header .ft-site-header__mobile-menu {
    top: 108px;
  }
}

@media (max-width: 575px) {
  #top.ft-site-header .ft-site-header__wrap.fixed + .below-main,
  #top.ft-site-header .ft-site-header__wrap + .below-main {
    margin-top: 148px !important;
  }

  #top.ft-site-header .ft-site-header__mobile-menu {
    top: 148px;
  }

  #top.ft-site-header .ft-site-header__main > .container {
    width: calc(100% - 28px);
  }

  #top.ft-site-header .ft-site-header__brand-area > a.show-575-flex {
    display: flex !important;
  }

  #top.ft-site-header .ft-site-header__logo img.mobile-logo {
    width: min(170px, 46vw);
  }

  #top.ft-site-header .cart.with-drop .dropdown {
    max-width: calc(100vw - 20px);
  }

  #top.ft-site-header .ft-site-header__usps {
    padding: 10px 0;
  }

  #top.ft-site-header .ft-site-header__usp-grid > li,
  #top.ft-site-header .ft-site-header__usp-grid > li a {
    font-size: 11.5px;
  }

  #top.ft-site-header .ft-site-header__usp-grid > li {
    min-height: 60px;
    gap: 9px;
    padding: 10px;
  }

  #top.ft-site-header .ft-site-header__usp-grid > li > i {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #top.ft-site-header *,
  #top.ft-site-header *::before,
  #top.ft-site-header *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   FLEXTHERM GLOBALE HEADER
   EINDE
   ========================================================= */
