.text-sugerencia {
	position: relative;
 	color: #444444;
 	font-size: 12px;

 	text-shadow: 0px 0px 4px white;
}

.tooltip-info {
}

.tips-info {
	visibility: hidden;
    background-color: #555;
    font-size: 12px;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    border: 1px solid grey;
    padding: 5px 0;
    position: absolute;
    z-index: 999;
    margin-top: 40px;
    margin-left: -100px;
    width: 180px;
    /*margin-left: -20px;*/
    opacity: 0;
    transition: opacity 0.3s;

    -webkit-box-shadow: 1px 2px 5px #ffffff; 
    -moz-box-shadow: 1px 2px 5px #ffffff; 
    box-shadow: 1px 2px 5px #ffffff; 
}

.tooltip-info .tips-info::after {
	z-index: 999;
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -4px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
}

.tooltip-info:hover .tips-info {
	z-index: 999;
    visibility: visible;
    opacity: 1;
}