.modalDialog {
  position: fixed !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
}
.modalDialogTarget {
  opacity: 1;
  pointer-events: auto;
}
.modalDialog > div {
  width: 600px;
  height: 600px;
  position: relative;
  margin: 10% auto;
  padding: 50px 50px 50px 50px;
  background: #fff;
  overflow: auto;
}
.close {
  background: #2f383f;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 24px;
  opacity: 1;
  font-size: 1em;
}
.close:hover {
  background: #bcd000;
  color: #1d1d1d;
  opacity: 1;
}