#actionContextMenuShim {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 1000px;
    width: 100vw;
    background-color: transparent;
    z-index: 90000;
}
  
  /* The actual popup */
  .actionContextMenu {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    /*bottom: 200px;*/
    left: 200px;
    margin-left: -80px;
    z-index: 90001;
  }
  
  /* Popup arrow */
  .actionContextMenu::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 80%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
  }
  
  /* Toggle this class - hide and show the popup */
  .actionContextMenu.show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
  }
  
  /* Add animation (fade in the popup) */
  @-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }

  