.modal,
.modal-box{
  z-index: 900;
}
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;
}
.modal-box {
  position: relative;
  width: 1230px;
  /* height: 80%; */
  margin: 7% auto;
  animation-name: modalbox;
  animation-duration: 0.8s;
}
.modal-body{
   width: 1230px;
}

.modal-body{
	display: block;
}
.modal-right {
    margin-left: 30px;
    margin-right: 20px;
    word-wrap: break-word;
    word-break: break-all;
}
.modal-header {
  padding: 20px 40px;
}
.close-modal {
   position: absolute;
   /* left: 0;
   top: 0; */
   cursor: pointer;
}
.btn_close-modal{
   position: absolute;
   width: 26px;
   height: 26px;
   top: 16px;
   right: 30px;
}
.modal_dimmed{
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}