The best solution to centralize your modal with width and height is, in css add and in modal add this 'centralize' as a class..
.centralize{
position:absolute;
left:50%;
top:50%;
background-color:#fff;
transform: translate(-50%, -50%);
width: 40%; //specify watever u want
height: 50%;
}