
.modal-open {
  overflow: hidden;
}
.fade.show { opacity: 1;}
.modal {position: absolute;}
@media (min-width: 768px){
	.modal-dialog {
		width: 633px;
		margin: 30px auto;
	}
}
@media (max-width: 767px){
	.modal-dialog {
		width: auto;
		margin: 30px auto;
	}
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, 5%) !important;
	transform: translate(0, 5%) !important;
}	
.modal-dialog-centered {
  display: flex;
  align-items: center;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%; 
  pointer-events: auto;
  background-clip: padding-box;
   outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; 
}


.modal-title {
  margin-bottom: 0;

}

.modal-body {
  position: relative;
  flex: 1 1 auto;

}
.modal-body img {
    max-width: 100%;
}

.modal-footer {
  display: flex;
  align-items: center; 
  justify-content: flex-end; 
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}



