.tooltipp {
    display: inline;
    position: relative;
    /* top: 50px; */
}

.tooltipp:hover:after {
    background: rgba(0, 0, 0, .8);
    border-radius: 5px;
    bottom: 26px;
    color: #fff;
    content: attr(data-title);
    left: -50%;
    padding: 0px 10px;
    position: absolute;
    z-index: 98;
    width: 100%;
    inline-size: max-content;
}

.tooltipp:hover:before {
    border: solid;
    border-color: #333 transparent;
    border-width: 6px 6px 0 6px;
    bottom: 20px;
    content: "";
    left: 50%;
    position: absolute;
    z-index: 99;
}