.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background-color: rgba(0, 0, 0, .4);
}

.modal-dialog {
  position: relative;
  width: auto;
  pointer-events: none;
}

.modal-dialog-scrollable {
  display: flex;
}

.modal-dialog-scrollable .modal-content {
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
}

.modal-dialog-centered::before {
  display: block;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
  background-color: #fff;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.modal-backdrop.fade {
  opacity: 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-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.modal .modal-content {
  overflow: auto;
  height: 80%
}

.modal .modal-content:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url('../images/logo.png');
  left: 20px;
  top: 13px;
  height: 50px;
  width: 50px;
  background-size: contain;
  background-repeat: no-repeat
}

.close {
  height: 24px;
  width: 24px;
  top: 15px;
  text-shadow: none;
  color: #171717 !important;
  right: -30px;
  font-weight: 500;
  font-size: 30px !important;
  position: absolute;
  display: inline-block;
}