.contextmenu {
  z-index: 9999;
  max-height: none;
  min-width: 200px;
  text-align: left;
  background-color: #2e2e34;
  border-radius: 2px;
  padding: 8px 0;
  position: absolute;
}

.contextmenu-item {
  height: 24px;
  color: #fff;
  cursor: default;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  font-size: 12px;
  display: flex;
}

.contextmenu-item:hover {
  background-color: #3e8ae2;
}

