.menu {
    border-radius: 4px;
    z-index: 1050;
    float: left;
    white-space: nowrap;
    outline: none;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(0, 0, 0, .65);
    background: #fff;
    overflow: hidden;
    width: 100%;
}
.menuItem {
  color: rgb(33, 33, 33);
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  padding: 0 16px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none
}
.menuItem:not(.disabled):hover {
    background-color: rgb(238, 238, 238);
    cursor: pointer;
}
.menuItem.selected {
    background-color: rgba(0, 188, 212, 0.1);
}
