#EditEntityModal{
	position: fixed;
  width: 75vw;
  height: auto;
  min-height: 500px;
  max-height: 1000px;
  top: 0px;
  border: 3px solid whitesmoke;
  border-radius: 5px;
  border-top: none;
  border-top-left-radius: 0px;
  padding: 5px;
  background: whitesmoke;
  box-shadow: 0px 0px 3.5px 3.5px rgb(100, 100, 100, 0.5);
  /* overflow: auto; */
  transition: transform 0.5s
              cubic-bezier(0, .52, 0, 1);
  border-radius: 2px;
  z-index: 132;
}

#EditEntityModal.show {
  transform: translate3d(13vw, 0vh, 0);
}
#EditEntityModal.hide {
  transform: translate3d(13vw, -60vh, 0);
  overflow: hidden;
}

.second-modal-white-space {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 131;
  display: block;
}

.white-space.hide {
  display: none;
}

.white-space.show {
  display: block;
}

/*************/

#EditEntityModal .header {
  height: 30px;
}
#EditEntityModal .body {
  height: auto;
  min-height: 300px;
  max-height: 800px;
  padding: 5px;
}
#EditEntityModal .bottom {
  height: 60px;
}

#EditEntityModal .header .title {
  font-size: 20px;
  font-weight: bold;
}