.JKmodal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.jkm-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 5px;
}

.close {
  color: #ffffff;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: none;
}

.modal-content {
  background: #fff;
  margin-top: 100px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.modal-header {
  padding: 20px 20px;
  background: #e7e7e7;
  border-bottom: 1px solid rgb(223, 223, 223);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  font-size: 20px;
}

.close-btn {
  float: right;
  font-size: 25px;
  border: none;
  background: #e7e7e7;
  padding-top: -10px;
}

.modal-body {
  margin: 30px 20px;
}

.modal-footer {
  padding: 10px 20px;
  background: #e7e7e7;
  border-top: 1px solid rgb(223, 223, 223);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}