#tooltip {
    background: #ffffff9e;
    border: 1px solid #0000000f;
    color: #000000;
    font-weight: bold;
    height: 30px;
    font-size: small;
    border-radius: 10px;
    box-shadow: #0000000d 0px 2px 7px 0px;
    display: flex;
    align-items: center;
    padding: 0px 12px;
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: .2s;
}

#tooltip[data-show] {
    opacity: 1;
}