#tooltip{
    text-align: center;
    color: #fff;
    background:rgb(18, 113, 109);
    position: absolute;
    z-index: 100;
    padding: 10px 15px 10px 15px;
	font-size:10px;
	border-radius: 3px;
	line-height:13px;
    font-size:15px;

}
 
    #tooltip:after /* triangle decoration */
    {
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid rgb(18, 113, 109);
        content: '';
        position: absolute;
        left: 50%;
        bottom: -6px;
        margin-left: -7px;
    }
 
        #tooltip.top:after
        {
            border-top-color: transparent;
            border-bottom: 7px solid rgb(18, 113, 109);
            top: -20px;
            bottom: auto;
        }
 
        #tooltip.left:after
        {
            left: 7px;
            margin: 0;
        }
 
        #tooltip.right:after
        {
            right: 7px;
            left: auto;
            margin: 0;
        }