  .modal-open {
  overflow: scroll;
  width: 100%;
}

/*12/6 Suja hide the overflow-y bar
    12/11 Suja added max z-index
    1/15/2018 Suja Hiding the overflow element as per Laura suggestion to test the Safari
*/
.modal {
  display: none;
  /*overflow: auto;*/
  /*overflow-y: scroll;*/
  overflow-y: no-content;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

/*12/8 Suja make the video take over full screen to  prevent bleeding added !important to the existing bleeding*/
.modal-dialog {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  padding: 10px;
  z-index: 1010 !important;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
  z-index: 1010 !important;
  /*12/11 Suja 91°µÍøApprovals modal-content fullscreen bleed*/
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
  background-color: #111;
}

.modal-backdrop.fade {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

.modal-header {
  padding: 20px 20px 0;
  min-height: 40px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0 0 20px;
  line-height: 1.1;
}

.modal-body {
  position: relative;
  padding: 0 20px 20px;
}

.modal-footer {
  margin-top: 15px;
  padding: 0 20px;
  text-align: right;
  zoom: 1;
}

.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.modal-footer:after {
  clear: both;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .modal-dialog {
    width: 800px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
#modal-email img {
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto;
}
#modal-email input
{
min-height: 2 rem;
}
#modal-email
{
font-size:12px !important;
}

.hide {
    display: none !important;
}