.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px #007aff dashed ;
    z-index: 1;
}
.tooltip .tiptext {
    visibility: hidden;
    width: 350px;
    background-color: #f6f9ff;
    color: #2E2E2E;
    text-align: justify;
    border-radius: 3px;
    padding: 6px 0;
    position: absolute;
    z-index: 9999;
    font-size: 1.1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.tooltip .tiptext::after {
    content: "";
    position: absolute;
    border-width: 5px;
    border-style: solid;
}
.tooltip:hover .tiptext {
    visibility: visible;
}

.tooltip.right .tiptext{
    top: -5px;
    left: 110%;
}
.tooltip.right .tiptext::after{
    margin-top: -5px;
    top: 5%;
    right: 100%;
    border-color: transparent #2E2E2E transparent transparent;
}