/** Shopify CDN: Minification failed

Line 138:15 Expected identifier but found "`"
Line 143:17 Expected identifier but found "`"
Line 159:0 Unexpected "}"
Line 210:0 Unexpected "{"
Line 210:1 Expected identifier but found "%"
Line 224:2 Unexpected "{"
Line 224:3 Expected identifier but found "%"

**/
.o-list-bare {
    list-style: none;
    overflow: visible;
  }
  .container, .o-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 20px;
  }

  .c-header__links {
    padding:  0;
    background: #10182a;
    display: none;
  }
  
  @media screen and (min-width: 768px) {
    .c-header__links {
      display: block;
    }
  }


  .c-menu__item {
    display: inline-block;
    margin-right: 15px;
    padding: 0;
    margin-bottom: 0;
    vertical-align: middle;
    position: relative;
  }
  
  @media screen and (min-width: 1024px) {
    .c-menu__item {
      margin-right: 30px;
    }
  }

  .c-menu__item--sub {
    display: block;
    margin-right: 0;
  }

  .c-menu__item--sub .c-menu__text {
    padding: 0;
    font-weight: 400;
    color: black;
  }

  .c-menu__item.c-menu__item--wide {
    position: inherit;
    padding: 0;
  }

  .c-menu__item--dropdown:hover .c-menu__dropdown-wrapper,   .c-menu__item--dropdown:hover .c-menu__dropdown {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    -ms-transform-origin: top center;
    transform-origin: top center;
    transition: opacity .2s, transform .2s;

    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* De muis kan nu wel interactie hebben */
  }


  .c-menu__item--wide-mega .c-menu__dropdown-wrapper {
    padding: 30px;
    padding-top: 10px;
     pointer-events: none; /* Voorkomt hover-activatie als hij onzichtbaar is */
  }


  .megamenu__heading {

  }

  .c-menu__heading {
    color: #ff6128;
    font-weight: 700;
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .megamenu__list {
  }


.c-menu__link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  height: 100%;
  text-decoration: none;
  /* white-space: nowrap; */
  padding: 0;
  line-height: 1.5;
  font-weight: 700;
  padding: 0;
}

.c-menu__text {
  padding: 15px 0;
  display: inline-block;
      color: white;
}



.c-menu__text:hover, .c-menu__link:hover {
  text-decoration: underline;
}



.c-menu__link--sub {
  display: block;
  font-weight: 400;
  padding: 0;
  color: black;`
}

.c-menu__link--sub .c-menu__text {
    padding: 5px 0;
    color: black;`
}


.c-menu__link--sub .c-menu__link {
  margin: 0;
  padding: 0;
  font-weight: 400;
}


      .c-menu__item--dropdown:hover .c-menu__chevron, .menu__item--dropdown:hover .c-menu__chevron {
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        transition: transform .5s;
    }
}

.c-menu__text {
display: inline-block;
    color: white;
}

.c-menu__chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  vertical-align: middle;
  transition: transform .5s;
  color: #fff;
}

.c-menu__chevron path {
    fill: #fff;
}


  .c-mega-menu__primary-container {
    grid-column: span 3/span 3;
        background: red;
  }

  .c-mega-menu__secondary-container {
    grid-column: span 9/span 9;
  }

  .new-mega-menu--primary-item  {
    padding: 10px 0;
  }

  .new-mega-menu--primary-item.active {
  background-color: #FFF;
}

  .new-mega-menu--secondary-title {
    font-weight: 700;
    color: #ec621c;
  }

  a.new-mega-menu--secondary-title:hover {
    text-decoration: underline;
  }




{% comment %} .new-mega-menu--secondary-blocks {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  background-color: #FFF;
  height: 0;
}

.new-mega-menu--secondary-blocks.active {
  opacity: 1;
  visibility: visible;
  padding: 40px 40px 40px 70px;
  height: 100%;
} {% endcomment %}

/* Verwijder de oude .new-mega-menu--secondary-blocks styling en gebruik dit: */
.new-mega-menu--secondary-blocks {
  width: 100%;
  display: none; /* Verbergt het blok volledig zonder ruimte in te nemen */
  background-color: #FFF;
}

.new-mega-menu--secondary-blocks.active {
  display: flex;
  padding: 40px;
  padding-top: 10px;
  height: 100%;
  min-height: 400px; /* Optioneel: geeft een stabiele hoogte aan je menu */
}



.new-mega-menu--secondary-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 40px;
  height: fit-content;
}

.new-mega-menu--secondary-title {
  font-size: 16px;
  margin-bottom: 14px;
}

/* Zorg dat de wrapper een solide blok is zonder gaten */
.c-menu__dropdown-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw; /* Gebruik viewport width om gaten aan zijkanten te voorkomen */
    margin-left: calc(-50vw + 50%); /* Centreert de 100vw wrapper op de parent */
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
    max-width: 1280px;
    margin: 0 auto;

opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Voeg dit toe: de muis 'voelt' het menu nu niet */
    transition: all 0.2s ease;

}

/* De container die de links vasthoudt */
.c-mega-menu__primary-container {
    grid-column: span 3;
    background: #f9f9f9; /* Lichtgrijze achtergrond in plaats van rood */
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Zorg dat de items tegen elkaar aan liggen (geen gaten) */
.new-mega-menu--primary-item {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.new-mega-menu--primary-link {
  display: block;
  padding: 15px 25px;
  width: 100%;
  text-decoration: none;
  color: #000;
  font-weight: 700;
}

.new-mega-menu--primary-link.active {
  color: #ec621c;
}

.new-mega-menu--primary-item.active {
    background-color: #fff; /* Maakt het wit als het actief is om aan te sluiten bij de rechterkant */
}

/* Rechterkant */
.c-mega-menu__secondary-container {
    grid-column: span 9;
    background: #fff;
    min-height: 450px; /* Forceer hoogte zodat het menu niet inklapt bij wisselen */
}

.new-mega-menu--secondary-blocks {
    display: none;
    width: 100%;
    padding: 40px;
}

.new-mega-menu--secondary-blocks.active {
    display: flex;
}

.new-mega-menu--third-item {
  display: block;
}

.new-mega-menu--third-item:hover {
  text-decoration: underline;
}

.megamenu__column {
  grid-column: span 3;
  margin-bottom: 30px;
}

.c-menu__dropdown {
  display: block;
  background: #fff;
  position: absolute;
  /* width: 100vw; */
  /* margin-left: calc(-50vw + 50%); */
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 999;
  padding: 0 20px;
  border-radius: 0 0 5px 5px;
  margin: 0 -20px;
      padding-bottom: 10px;
}

.c-menu-toggle {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fcfcfc;
  border-radius: 100%;
  padding: 17px 10px;
  appearance: none;
  margin-right: 15px;
}

@media screen and (min-width: 768px) {
  .c-menu-toggle {
    display: none;
  }
}


.c-menu-toggle__bar {
  background-color: black;
  border-radius: 0;
  display: block;
  height: 2px;
  overflow: hidden;
  position: relative;
  transition: background-color .2s ease-in-out;
  width: 24px;
  flex: 1 0 100%;
}

.c-menu-toggle__bar:first-of-type {
  animation: animate-line-1-rev .25s ease-in-out;
}

.c-menu-toggle__bar:nth-of-type(2) {
  animation: animate-line-2-rev .25s ease-in-out;
  margin: 2px 0;
}

.c-menu-toggle__bar:nth-of-type(3) {
  animation: animate-line-3-rev .25s ease-in-out;
}


.c-menu-toggle.is-active .c-menu-toggle__bar:first-of-type {
  animation: animate-line-1 .25s  forwards;
}

.c-menu-toggle.is-active .c-menu-toggle__bar:nth-of-type(2) {
  animation: animate-line-2 .25s forwards;
}
.c-menu-toggle.is-active .c-menu-toggle__bar:nth-of-type(3) {
  animation: animate-line-3 .25s forwards;
}


@keyframes animate-line-1 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, 4px, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, 4px, 0) rotate(45deg);
  }
}

@keyframes animate-line-2 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes animate-line-3 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -4px, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, -4px, 0) rotate(135deg);
  }
}

@keyframes animate-line-1-rev {
  0% {
    transform: translate3d(0, 4px, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(0, 4px, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes animate-line-2-rev {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes animate-line-3-rev {
  0% {
    transform: translate3d(0, -4px, 0) rotate(135deg);
  }
  50% {
    transform: translate3d(0, -4px, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
