/*-- TOOLTIPS --*/
span[data-title] {
    position: relative;
    text-decoration: none;
    z-index: 99999;
    cursor: pointer;
    font-family: "Jersey 10", sans-serif;
}

span[data-title]:hover::after,
span[data-title]:focus::after {
    content: attr(data-title);
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
    background: var(--link);
    color: #fff;
    border-radius: 50px;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.4);
    font-size: 16px;
    padding: 3px 10px;
    z-index: 99999;
}

.socials span[data-title]:hover::after,
.socials span[data-title]:focus::after {
    top: -40px;
    z-index: 99999;
}

span[data-title].socials-tooltips:hover::after,
span[data-title].socials-tooltips:focus::after {
    top: -20px;
    z-index: 99999;
}

/*-- buddy button tooltips --*/

.button-wall-box span[data-title]:hover::after,
.button-wall-box span[data-title]:focus::after {
    top: -30px;
    z-index: 100;
}

span[data-title].button-tooltips:hover::after,
span[data-title].button-tooltips:focus::after {
    top: -33px;
    z-index: 99999;
}