Yes, that is because of the media queries that you need to remove.
Ex, this needs to be removed as it sets a constant width:
@media screen and (max-width: 1024px) {
.modal.in .modal-dialog {
max-width: 1000px!important;
width: 1000px!important;
}
}
Thanks.