#ft-modal-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ft-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 900px;
  width: 90%;
  max-height: 90%;
  overflow: auto;
  padding: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  position: relative;
}

#ft-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #111;
}

#ft-modal-body {
  overflow-y: auto;
  max-height: calc(90vh - 60px);
}
