#instructionsh2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
	overflow: unset;
}

#instructionsh2 .dots-menu {
  font-size: 21px;
  cursor: pointer;
  user-select: none;
  padding: 0 12px;
  -webkit-tap-highlight-color: transparent;
	color: #333;
}

#instructionsh2 .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #f9f9f0;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  display: none;
  min-width: 160px;
  border-radius: 4px;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
}

#instructionsh2 .dropdown-menu .menu-item {
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

@media (hover: hover) and (pointer: fine) {
  #instructionsh2 .dropdown-menu .menu-item:hover:not(.disabled) {
    background-color: #f4efd8;
  }
}

#instructionsh2 .dropdown-menu .menu-item.disabled {
  color: #999;
  cursor: default;
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
}