
.help-tip{
    position: relative;
	display: inline;
    background-color: #0dcaf0;
    border-radius: 50%;
    padding: 1px 10px;
    float: right;
    width:20px;
    height:20px;
}

.help-tip:before{
    content:'i';
    font-weight: bold;  
    color:#fff;
    font-size:13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;
	-webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;


}

.help-tip p{   
    display: none;
    text-align: left;
    background-color: #4f5050;
    padding: 10px;
    width: 275px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    color: #e6e4e4;
    font-size: 13px;
    line-height: 1.4;
    z-index:1;
    top: 2.5rem;
    left: 0;
    font-weight:500;

}

.help-tip p:before{ 
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#4f5050;
    left:10px;
    top:-12px;
}

.help-tip p:after{ 
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}







