Bootstrap tooltip showing behind modal window
Try without comma before !important:
.tooltip{
z-index: 1151 !important;
}
Just do one thing. Check the z-index of your modal popup & set the tooltip z-index +1 of your modal popup z-index.
so it would be like
.tooltip{
z-index:( z-index of modal popup + 1 );
}