.hover-dropdown {
  display: inline-block;
  position: relative;
}

.hover-dropdown__selected-option {
  cursor: pointer;
  padding: 0 5px;
  margin: 0;
  line-height: normal;
  display: flex;
  align-items: center;
  color: inherit;
  font: inherit;
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
}
.hover-dropdown__selected-option:focus {
  border: 1px;
}

.hover-dropdown__menu-boundary {
  position: absolute;
  display: block;
  height: 230px;
  top: 50px;
  right: -50px;
  width: 280px;
  transition: all 0.2s ease-in-out;
}
.hover-dropdown__menu-boundary.hide {
  visibility: hidden;
  opacity: 0;
}

.hover-dropdown__menu {
  position: absolute;
  top: 50px;
  right: -12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.09);
  width: 140px;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.hover-dropdown__menu::before {
  bottom: 100%;
  left: 67%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-width: 6px;
  margin-left: -6px;
}
.hover-dropdown__menu ul {
  list-style-type: none;
  margin: -7px 0;
  padding: 0 10px 0 20px;
}
.hover-dropdown__menu ul li {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px;
  margin: 15px 0;
}
.hover-dropdown__menu ul li a {
  width: 100%;
  text-align: left;
}
.hover-dropdown__menu .menu__selected {
  font-weight: 500;
}
.hover-dropdown__menu.hide {
  visibility: hidden;
  opacity: 0;
  top: 90px;
}
.hover-dropdown__menu .icon {
  transform: scale(0.7);
}