.nested-menu{
    direction: rtl;
}
.nested-menu .nav-item{
    position: relative;
}
.nested-menu:hover > div {
  display: block !important;
  z-index: 5;
  position: absolute;
}
.nested-menu .options{
    border-radius: 2px !important;
    min-width: 10rem;
    padding:8px 0;
    box-shadow: 0 5px 15px 0 #00000020;
}
.nested-menu div.nav-item:hover > div {
  display: block !important;
  z-index: 5;
  position: absolute;
  right: 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;
}
.nested-menu .nested-menu-item:hover {
  background: var(--bs-secondary);
  color: var(--bs-primary);
}

.nested-menu .bi-chevron-right{
    display: none;
  }
  
  .nested-menu .bi-chevron-left{
    display: block;
  }