/* sidebar */
.left-menu__sidebar {
  left: calc(var(--left-column-width) * 2);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: 0;
}
.left-menu__sidebar-content {
  background-color: var(--black_bg_black);
  width: 283px;
}
@media screen and (max-width: 1099px) {
  .left-menu__sidebar--hide-to-1100 {
    display: none;
  }
}
/** */

.left-menu__wrapper li:before {
  display: none;
}
.left-menu__item-link {
  --p-block: 10px;
}
.left-menu__item-container:has(.active) > .left-menu__item-link {
  font-weight: 500;
}

/* dropdown */
.left-menu__item-dropdown {
  background-color: var(--black_bg_black);
  left: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: 1;
}
.pt--left-menu {
  --pt: 96px;
}
.left-menu__item-dropdown-column {
  width: var(--left-column-width);
}
/** */

/* hover menu */
.left-menu__item-container.hovered > .left-menu__item-link {
  background-color: var(--grey_bg);
}
.left-menu__item-container.hovered > .left-menu__sidebar,
.left-menu__item-container.hovered > .left-menu__item-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
/** */

/* style switcher hide */
body:has(.left-menu__item-container:hover) .style-switcher {
  display: none;
}