Hi dharmendr,
Set data-backdrop to static and data-keyboard to false
Which disable the closing of bootstrap modal outside the modal area.
<button type="button" class="btn btn-primary pull-right" data-toggle="modal" data-target="#modal-mrole"
data-backdrop="static" data-keyboard="false" style="margin-right: 20px;">
Add New Customer
</button>
And add the below css to change the cursor.
<style type="text/css">
.in.modal-backdrop
{
cursor: none !important;
}
</style>