.tooltip_link {
    position: relative;
}

.tooltip {
    display: none;
    position: absolute;
    padding: 15px;
    margin: 0 0 12px 0;
    z-index: 100;
    bottom: 70px;
    right: -40px;
    background: #0095d9;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    width: 250px;
    text-align: left;
    line-height: 1.5;
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.5);
}

.tooltip:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20px;
    left: 30%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%) rotate(180deg);

    width: 0;
    height: 0;
    border-right: 7px solid transparent;
    border-top: 10px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 10px solid #0095d9;
}

/*.tooltip:before {
    content: "";
    position: absolute;
    border: 0 solid #007388;
    bottom: -14px;
    z-index: 100;
	border-right-width: 10px;
    border-bottom: 14px solid transparent;
    width: 50%;
    right: 50%;
}*/