/*================
Screenshot Tooltip
(Vroid and Bypass)	
================*/
.tooltip_ss {
    position: relative;
    
  }
  
  .tooltip_ss .tooltiptext_ss {
   visibility: hidden;
    width: 120px;
    background-color:gray;
    color: white;
    text-align: center;
    border-radius: 15px;
    padding:5px;
    
    /* Centering the tooltip and making it visible on the bottom on hover*/
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
  
  
  }
  .tooltip_ss:hover .tooltiptext_ss {
    visibility: visible;
  }
  