.bubble{
    position: relative;
    display:  inline-block;
    margin-right: 5px;
}
.bubble img{
    width: 10px;
}
.bubble #issue-resolution{
    width: 15px;
    height: 15px
}
.bubbleText {
    display: none;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    font-size: 9px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    background: #000;
    width: auto;
    white-space: nowrap;
}
.bubbleText:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border: 5px solid transparent;
    border-top: 5px solid #000;
    transform: translateX(-50%);
}
.bubbleText.position-right:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 58%;
    border: 5px solid transparent;
    border-top: 5px solid #000;
    margin-left: -15px;
}
.bubble:hover .bubbleText{
    display: inline-block;
}
