.tooltip {
    position: fixed;
    z-index: 100;
    font-size: 12px;
    border-radius: 8px;
    padding-block: 5px;
    padding-inline: 15px;
    font-weight: 400;
    margin-top: 10px;
    margin-right: 10px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.tooltip > span {
    position: absolute;
    /* left: 8px; */
    top: -15px;
    margin: auto;
    background-color: rgb(42,42,42);
    height: 15px;
    width: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 50%);
    rotate: 180deg;
}
.tooltip > p {
    margin: auto;
    font-size: 12px;
    font-weight: 400;
}