/* MODAL STYLES*/ 
/* MODAL OVERFLOW (SCROLL) COM RESIZE */
.modal-content{
   max-height: 85%; /*altura da modal*/
}

.modal-dialog{
   height: 100%; /*altura da view da modal*/
   margin-top: 0;
}

.modal-body{
   overflow: auto; /*habilita o overflow no corpo da modal*/
}

.modal{
  overflow: hidden !important;
}

/* MODAL EXTRA LARGE STYLE */
@media (min-width: 768px) {
  .modal-xl {
    width: 90%;
   max-width:1200px;
  }
}