I found an solution , below is the code that you can put on custom CSS :
@media (max-width: 500px){
div#powerTip{
position: absolute !important; /*The position of the tooltip*/
width: auto !important; /*The width of the tooltip*/
height: auto !important; /*The height of the tooltip*/
left: auto !important; /*The position from the left of the tooltip*/
top: auto !important; /*The position from the top of the tooltip*/
overflow-x: hidden; /* For Hidding x scrollbar of the tooltip*/
overflow-y: hidden; /* For Hidding y scrollbar of the tooltip*/}}
It will solve the problem