.modal {
  display: none;
  position: fixed;
  z-index: 9100;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  padding: 10px 0;
}
.modal-box {
  background-color: #fff;
  margin: auto;
  width: 640px;
  max-width: 86vw;
  height: 500px;
  max-height: 80vh;
  border-radius: 10px;
  animation-name: modalopen;
  animation-duration: 1s;
  position: relative;
  padding: 10px;
  overflow: scroll;
  top: 50%;
  transform: translateY(-50%);
}
.agreebody_ {
  width: 600px!important;
  max-width: 80vw;
  height: auto!important;
  border: none;
  margin: 0;
  white-space: pre-wrap;
}
.modalClose{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 270px);
  padding: 4px 8px;
  margin: 0 0 20px;
  background: none;
  border: none;
  color: white;
  pointer-events: none;
}
.modalClose i {
  font-size: 25px;
}
.modalOpen {
  text-decoration: underline;
}