﻿#dhtmltooltip{
        position: absolute;
        border: 1px solid red;
        width: 100px;
        padding: 2px;
        background-color: yellow;
        FONT-FAMILY:Tahoma;
	    FONT-SIZE: 8pt;		       
        visibility: hidden;
        z-index: 100;        
        }    

  /* Start Added by Yogesh on 09-Oct-20 for the Issue ID:31295  */
        .tooltip {
          position: relative;
          display: inline-block;
          border-bottom: 1px dotted black;
        }

        .tooltip .tooltiptext {
          visibility: hidden;
          background-color: #FFFFCC;
          color:black;
          text-align: center;
          border-radius: 6px;
          padding: 5px 0;
          border: solid 1px red;
          /* Position the tooltip */
          position: absolute;
          z-index: 1;
        }

        .tooltip:hover .tooltiptext {
          visibility: visible;
        }
   /* End Added by Yogesh on 09-Oct-20 for the Issue ID:31295 */  

