.nested-menu {
  direction: ltr;
}
.nested-menu .nav-item {
  position: relative;
}
.nested-menu:hover > .options {
  display: block;
  z-index: 5;
  position: absolute;
}
.nested-menu .options {
  display: none;
  border-radius: 2px !important;
  min-width: 10rem;
  padding: 8px 0;
  box-shadow: 0 5px 15px 0 #00000020;
}
.nested-menu div.nav-item:hover > .options {
  display: block;
  z-index: 5;
  position: absolute;
  left: 100%;
  top: 0;
}
.nested-menu .nested-menu-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  position: relative;
}
.nested-menu .nested-menu-item:hover {
  background: var(--bs-secondary);
  color: var(--bs-primary);
}

.nested-menu .nav-item .bi-chevron-left {
  display: none;
}
.nested-menu .nav-item .bi-chevron-right {
  display: block;
}
.nested-menu .nav-item .bi-chevron-down {
  display: none;
}
#navbarCollapse {
  overflow: auto;
  max-height: 75vh;
}
@media screen and (max-width: 576px) {
  .nested-menu div.nav-item:hover > div {
    left: 0;
    top: 33px;
  }
  .nested-menu .nav-item .bi-chevron-right {
    display: none;
  }
  .nested-menu .nav-item .bi-chevron-down {
    display: inline-block;
  }
  .nested-menu .nested-menu-item::before {
    content: " ";
    position: absolute;
    left: 8px;
    top: 4px;
  }
  .nested-menu .options {
    position: static !important;
    border: 0px solid gray;
    border-radius: 0px !important;
    box-shadow: 0 0 0 0;
    padding-left: 16px;
    display: none !important;
  }
  .nested-menu .options.show {
    display: block !important;
  }
}
