.lite-tooltip {
    opacity: 0;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    color: #333;
    font-size: 14px;
    line-height: 20px;
    padding: 9px 14px;
    border-radius: 3px;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
}
.lite-tooltip:before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #fff transparent transparent transparent;
    display: inline-block;
    cursor: pointer;
}
.lite-tooltip.lite-tooltip-center:before {
    display: none;
}
.lite-tooltip.lite-tooltip-bottom:before {
    bottom: auto;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #fff transparent;
}
.lite-tooltip.lite-tooltip-right:before {
    bottom: auto;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-color: transparent #fff transparent transparent;
}
.lite-tooltip.lite-tooltip-left:before {
    bottom: auto;
    left: auto;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #fff;
}
