.miz-megamenu {
  --megamenu-button-bg-color-active: #e5e5e5;
  --megamenu-drawer-bg-color: #e5e5e5;
  /* Display/Box Model */
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .miz-megamenu .miz-nav:first-of-type {
    display: none;
  }
  .miz-megamenu .miz-nav:first-of-type.expand {
    display: block;
  }
}

.miz-dropdown .miz-megamenu__button.active, .miz-dropdown .miz-megamenu__button:hover.active {
  background-color: var(--megamenu-button-bg-color-active);
}

.miz-megamenu__drawer {
  position: relative;
  background-color: var(--megamenu-drawer-bg-color);
  max-width: none;
  width: 100%;
}

@media (min-width: 768px) {
  .miz-megamenu__drawer {
    position: absolute;
  }
  .miz-dropdown__content {
    --dropdown-content-max-width: none;
  }
}
@media (min-width: 768px) {
  .miz-megamenu__nav-item .miz-dropdown {
    position: static;
  }
  .miz-megamenu__nav-item .miz-dropdown .miz-dropdown__content {
    position: absolute;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    left: 0;
  }
  .miz-megamenu__nav-item .miz-dropdown.expand .miz-dropdown__content {
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
  }
  .miz-megamenu__nav-item .miz-dropdown__button {
    cursor: pointer;
  }
  .miz-megamenu__button.active {
    background-color: rgb(255, 237, 207);
  }
}