.dimmer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.85);
  opacity: 0;
  z-index: 900;
  transition: all 450ms ease-out 0;
}
.dimmer.show {
  opacity: 1;
}
.dimmer:hover {
  opacity: 0;
}
.dimmer.show:hover {
  opacity: 1;
}
.popup-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 45vw;
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: auto;
  opacity: 0;
  z-index: 999;
  transition: all 450ms ease-out 1s;
}
.popup-modal.delete {
  width: 55vw;
}
.popup-modal.show {
  opacity: 1;
}
.modal-header {
  border-bottom: 1px solid #ccc;
}
.modal-body {
  text-align: center;
  padding: 1rem;
}
.modal-body .btn-accept {
  margin-right: 8px;
}
.popup-modal input,
.popup-modal select {
  margin-bottom: 1rem;
}