.context-menu {
    width: 170px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 5px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2000;
    left: -20px;
    top: -15px;
    box-shadow: 0 3px 14px rgb(0 0 0 / 40%);
    cursor: pointer;
}
.context-menu-item {
    height: 30px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    /* padding: 15px 10px 5px 15px; */
    /* padding-bottom: 40px; */
}

/* following block shows copy link as button */
/* .context-imagen > div:nth-child(1) > a:nth-child(1) { 
  background-color: #008dc9;
  margin-top: -8px;
  margin-left: -8px;
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  border: none;
} */

.context-menu-item-active {
  color: rgb(0, 92, 131);
}
.context-menu-item-active:hover {
  background-color: rgb(0, 141, 201);
  color: white;
}
.context-menu-item-active:active {
  background-color: rgb(0, 92, 131);
  color: white;
}
.context-menu-item-disabled {
  color: rgb(107, 109, 110);
}
.context-popup {
  left: 20px !important;
  top: 20px;
}
.context-menu-item-text {
  margin: 0px !important;
  font-weight: 700;
}
.non-selectable-text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.context-menu :first-child {
  border-radius: 5px 5px 0 0;
}
.context-menu :last-child {
  border-radius: 0 0 5px 5px;
}