﻿

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
 -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:1999999998 !important;

}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 250px;
  background-color: #eee;
  color: #000;
  text-align: left;
  border-radius: 6px;
  padding: 8px 4px;
  position: absolute;
  z-index: 1999999998 !important;
  top: 25px;
  left: 50%;
  margin-left: -165px;
}



/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  //-webkit-animation: fadeIn 1s;
 // animation: fadeIn 1s;
    z-index: 1999999998 !important;
    //position:static;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

