.tooltip { 
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #ccc;
    zcursor: help;
    color: #006080;
}

.tooltip .tooltiptext-bottomarrowl {
    visibility: hidden;
    width: 180px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 300%;
    margin-left: -60px;
}
.tooltip .tooltiptext-bottomarrowl::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 10%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}
.tooltip:hover .tooltiptext-bottomarrowl {
    /*  Visibility for bottomarrowl */
    visibility: visible; 
 /* visibility: hidden; */
}


.tooltip .tooltiptext-bottomarrowr {
    visibility: hidden;
    width: 180px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    right: 10%;
    margin-left: -60px;
}
.tooltip .tooltiptext-bottomarrowr::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 90%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}
.tooltip:hover .tooltiptext-bottomarrowr {
    /*  Visibility for bottomarrowr */
    visibility: visible;
 /* visibility: hidden; */
}


