#ajax-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.ajax-modal__inner {
  background: #fff;
  max-width: 600px;
  margin: 100px auto;
  padding: 20px;
  position: relative;
}

.ajax-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.ajax-modal__content {
  padding-top: 20px;
}