.modal.modal-fullscreen {
  z-index: 9999 !important;
}
.modal.modal-fullscreen .modal-dialog {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  max-width: none;
 }
 
.modal.modal-fullscreen .modal-content {
  height: auto;
  height: 100vh;
  border-radius: 0;
  border: none; 
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #033A5B;
  background-clip: padding-box;
  border: 1px solid #033A5B;
  border-radius: 0.3rem;
  outline: 0;}

.modal.modal-fullscreen .modal-body {
  overflow-y: auto; }
 
  
