.catalog-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
  z-index: 100;
}

.header-catalog_open .catalog-overlay {
  opacity: 1;
  pointer-events: auto;
}

.header-catalog-btn {
  color: #fff;
  border: 1px solid #fff;
  height: 43px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  cursor: pointer;
  background: #800080;
  margin-right: 45px;
  position: relative;
  z-index: 2;
}
.header-catalog-btn svg {
  margin-right: 10px;
}
.header-catalog-btn .icon-menu-item {
  fill: #fff;
}
.header-catalog-btn:hover {
  background: #fff;
  color: #800080;
}
.header-catalog-btn:hover .icon-menu-item {
  fill: #800080;
}

.icon-bar__wrapper {
  position: relative;
  margin-right: 1rem;
}

.icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
}
.icon-bar::before, .icon-bar::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
}
.icon-bar::before {
  top: -6px;
  transition-property: top, transform;
}
.icon-bar::after {
  bottom: -6px;
  transition-property: bottom, transform;
}

.mobile .icon-bar {
  width: 27px;
  height: 3px;
  position: relative;
}
.mobile .icon-bar::before, .mobile .icon-bar::after {
  height: 3px;
}
.mobile .icon-bar::before {
  top: -9px;
}
.mobile .icon-bar::after {
  bottom: -9px;
}
.mobile .icon-bar__wrapper {
  margin-right: 0;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
}

.header-catalog-menu {
  display: none;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 200;
  left: 0;
  right: 0;
  top: 100%;
  transition: opacity 0.3s;
  padding: 0 15px;
}

.header-catalog_open .header-catalog-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.navigation-wrapper {
  padding: 15px 15px 15px 15px;
  background: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
.navigation-wrapper .menu_container {
  position: relative;
}
.navigation-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu_list {
  background-color: #fff;
  width: 330px;
  overflow-y: auto;
  max-height: 100%;
  padding-right: 20px !important;
}
.menu_list::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  top: -15px;
  bottom: -15px;
  left: 330px;
  background: #e6e6e6;
}

.menu_list_item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
}
.menu_list_item:last-child {
  border-bottom: none;
}

.menu_link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0;
  color: #34495e;
}
.menu_link:hover {
  text-decoration: none;
}

.menu_link_text {
  margin-right: auto;
}

.menu_submenu_wrapper {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  left: 330px;
  width: 330px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.menu_submenu_container {
  padding: 0 0 0 40px;
  overflow-y: auto;
  max-height: 100%;
}

.menu_list_item_active {
  color: #800080;
  text-decoration: underline;
}
.menu_list_item_active .menu_submenu_wrapper {
  display: block;
}
.menu_list_item_active .menu_link {
  color: #952D95;
}

.menu_submenu_item_list li {
  margin-bottom: 12px;
}
.menu_submenu_item_list a {
  text-decoration: none;
  color: #34495e;
}
.menu_submenu_item_list a:hover {
  text-decoration: underline;
  color: #952D95;
}

.inline-svg-icon {
  display: inline-block;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #800080;
  margin-right: 10px;
}

/*# sourceMappingURL=nav.css.map */
