.noscroll {
  overflow: hidden !important;
}

.header-dropdown {
  height: 100vh;
  position: absolute !important;
  width: 100%;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  background: white;

  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 16px 0;


  .container {
    display: flex;
    padding: 0;
  }
}

.d-none.header_fixed-menu,
header .container {
  position: static;
}

.left-nav {
  border-right: 1px solid #cdcdcd;
  width: fit-content;
  padding: 0;
  position: relative;
  flex-shrink: 0;
	padding-right: 40px;
  height: 100vh;
  overflow: auto;

  li {
    list-style-type: none;
    /* Remove bullets */
    width: fit-content;
  }
}

.left-nav::-webkit-scrollbar {
  display: none;
}

.right-content {
  width: 100%;
  height: 100vh;
  overflow: auto;
  text-align: left !important;
    padding-left: 30px;

}

.header-nav-dropdown {
  display: none;
  column-gap: 64px;
  row-gap: 16px;
  flex-wrap: wrap;
  /* justify-content: space-between; */

  width: 100%;
  position: relative;

  background: white;

  width: 100%;

  padding: 16px;
  padding-top: 40px;
}

@media (width <= 992px) {
    .header-nav-dropdown {
        column-gap: 16px;
    }
}

.header-nav-element {
  padding: 0 8px;

  .header-nav-element-link {
	font-family: 'MinionPro-Regular', sans-serif;
    padding: 4px 8px;
    display: block;
    width: 100%;
  }
}

.header-nav-element-link {
  font-size: 16px;
  line-height: 24px;
  font-family: unset;

  cursor: pointer;
}

.header-nav-element.active .header-nav-element-link {
  background: #2b2a29;
  color: white;
	border-radius: 4px;
}

.header-nav-element:hover {
  .header-nav-element-link {
    color: white;
    background: #2b2a29;
	border-radius: 4px;
  }
}

.header-nav-dropdown-content {
  display: flex;
  column-gap: 24px;
  row-gap: 0;
  flex-wrap: wrap;
}

body .header-nav-dropdown-goto {
font-family: 'MinionPro-Regular', sans-serif;
  position: absolute;
  left: 16px;
  top: 0;

color: #b08d4f;
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-nav-element:first-child {

    text-transform: uppercase;
}
.header-nav-dropdown-heading {
font-family: 'MinionPro-Regular', sans-serif;
text-transform: uppercase;
  color: #2b2a29;
  font-size: 16px;
  line-height: 1.5;

}

.header-nav-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

a.header-nav-dropdown-list-element {
font-family: 'MinionPro-Regular', sans-serif;
  color: #2b2a29;
  font-size: 16px;
  text-transform: none !important;
  line-height: 1.5;
  font-weight: 400;
}

.header-nav-dropdown-list-element:hover {
  text-decoration: underline;
}

.catalog-filter-cards {
  display: flex !important;
  display: none !important;
  flex-wrap: wrap;
  gap: 8px;

  align-self: start;
  padding-left: 16px;
}

.catalog-filter-card {
  padding: 8px 16px;
  background: #cdcdcd4d;

  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 16px;
  line-height: 18px;

  color: #2b2a29;

  cursor: pointer;

  svg {
    display: none;
  }
}

.catalog-filter-card.active,
.catalog-filter-card:hover {
  background: #2b2a29;
  color: white;
}

.catalog-filter-card.active {
  svg {
    display: block;
  }
}

.catalog-filter-card.load-more {
  text-decoration: underline;
}

@media (width <= 992px) {
  .header-nav-element {
    padding: 0;
    text-align: left !important;
  }

  .header-dropdown {
    left: 0;
    top: 66px;
    transform: translateZ(0);
    z-index: 100;
    padding-left: 0;

    .container {
      padding: 0;
    }
  }

  .mobile-list__item.header-nav__item .container {
    position: static;
  }

  .header-nav-element-link {
    font-size: 14px;
  }

  .header-nav-dropdown-heading,
  .header-nav-dropdown-list-element {
    font-size: 14px !important;
  }
}

.header-nav__list .open-icon,
.header-nav__list .close-icon {
  height: fit-content;
  display: none;
  cursor: pointer;
}

.header-nav__list li {
    display: flex;
}

.header-nav__item:not(:has(.d-none)) .close-icon {
  display: flex !important;
}

.header-nav__item:has(.d-none) .open-icon {
  display: flex !important;
}
/* 
.header-nav__item.catalog {
  padding: 7px 24px;
  box-sizing: border-box !important;
  border: 1px solid #5f5f5f;
} */

.mobile-list .header-nav__item-link {
  font-size: 16px !important;
  line-height: 18px;
}

.mobile-list svg {
  height: 16px;
  width: 16px;
}

.header-nav__list {
  /* gap: 48px; */
  /* justify-content: start; */

  justify-content: space-between;

  margin-right: 26px;
}

.header_fixed {
  .header-nav__list {
    justify-content: space-between;
    gap: 0;
  }
}

.header_fixed .header-nav__item-link,
.header_fixed .header__link {
  font-size: 12px !important;
}

header:not(.header_fixed) .header_fixed-menu {
    flex-grow: 1;
    padding-right: 50px !important;
}