﻿
.move_tooltip
{
    display: inline;
    position: relative;
    cursor: pointer;
}

.move_tooltip:hover:after
{
    background: #e7e7e7;
    border-radius: 5px;
    top: 26px;
    color: #000000;
    content: attr(data-title);
    left: 20%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    /*width: 320px;*/
}

.move_tooltip:hover:before
{
    border: solid;
    border-color: #e7e7e7 transparent;
    border-width: 0 6px 6px 6px;
    top: 20px;
    content: "";
    left: 50%;
    position: absolute;
    z-index: 99;
}


