#context-menu {
  position: fixed;
  z-index: 10000;
  width: 150px;
  background: #1b1a1a;
  border-radius: 5px;
  transform: scale(0);
  transform-origin: top left;
  border-bottom: 2px solid #fefefe;
}

#context-menu.visible {
  transform: scale(1);
  transition: transform 200ms ease-in-out;
}

#context-menu h5,
#context-menu .item {
  padding: 8px 10px;
  font-size: 15px;
  color: #eee;
  cursor: pointer;
  border-radius: inherit;
  display: block;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}


#context-menu h5 {
  text-align: center;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  background-color: #002ef9;
  margin-bottom: 10px;
}

#context-menu .item:hover {
  background: #343434;
}

#context-menu .item:active {
  background-color: #002ef9;
}