.hacked-popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hacked-popup .hacked-popup-text {
  visibility: hidden;
  box-shadow: 0px 0px 6px -2px rgba(0,0,0,0.75);
  background-color: #FFF;
  color: #000;
  text-align: center;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -80px;
}

.hacked-popup .hacked-popup-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #FFF transparent transparent transparent;
}

.hacked-popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 0.1s;
  animation: fadeIn 0.1s;
}

.hacked-popup-element {
  display: block;
  padding: 10px;
}

.hacked-popup-element:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.hacked-popup-element:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.hacked-popup-element:hover {
  color: white;
  cursor: pointer;
  background-color: #3699FF;
}

@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
