#tooltipLabel {
    z-index: 999;

    position: fixed;
    top: 0px;
    left: 0px;

    font-size: 15px;
    color: var(--title-color);
    font-family: var(--font-family);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    outline: solid 1px rgba(255, 255, 255, 0.1);
    padding: 2.5px 5px;
    pointer-events: none;
    transition: 0.2s var(--trans-smoth);
    display: none;
}