.modal_background  {
  display: none;
  position: fixed;
  border: 1px solid green;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,0.7);
  /* overflow: hidden; */
  /* pointer-events: auto; */
}

.modal_container  {
  position: relative;
  border: 1px solid #495057;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 5px;
}

.modal_head  {
  position: relative;
  border: 0px solid white;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10%;
  /* padding: 10px 10px 5px 10px; */
  overflow: hidden;
  font-weight: bold;
  font-size: 16pt;
}

.modal_title  {
  display: flex;
  position: relative;
  border: 0px solid white;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  /* padding: 10px 10px 5px 10px; */
  padding-left: 10px;
  align-items: center;
  overflow: hidden;
  font-weight: bold;
  font-size: 14pt;
}

.modal_body {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 90%;
  padding: 10px;
  overflow: hidden;

  /* overflow-y: scroll; */
}

.modal_close {
  display: flex;
  /* padding: 16px; */
  align-items: center;
  padding-right: 10px;
  float: right;
  cursor: pointer;
  font-weight: bold;
  font-size: 16pt;
}

.modal_close:hover {
  color: grey;
}

.modal_container_confirm  {
  position: relative;
  border: 2px solid white;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 5px;
}
