/* Parent li must be relative so submenu can anchor to it */
.dropdown-submenu {
  position: relative;
}

/* Override Bootstrap's .dropdown-menu to open right instead of down */
.dropdown-menu2 {
  top: 0;
  left: 100%;
  margin: 0;
  display: none;
}

/* Show submenu on hover of the parent li */
.dropdown-submenu:hover > .dropdown-menu2 {
  display: block;
}

/* Stretch the IFD link so the arrow can sit at the far right */
.dropdown-submenu > a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

/* Visual indicator arrow */
.caret-right {
  font-size: 10px;
  margin-left: 8px;
  color: #555;
}