@keyframes slideShow {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}
@keyframes slideHidden {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.create-entity-modal{
	position: fixed;
  width: 60vw;
  left: -2.5vw;
  height: 800px;
  border: 3px solid whitesmoke;
  border-top: none;
  padding: 10px;
  background: whitesmoke;
  box-shadow: 0px 0px 3.5px 3.5px rgb(100, 100, 100, 0.5);
  overflow:auto;
  transition: 0.5s;
  transition: transform 0.5s
              cubic-bezier(0, .52, 0, 1);
  border-radius: 2px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  z-index: 120;
}
.create-entity-modal .create-entity-header {
  text-align: left;
  width: auto;
  height: 65px;
}
.create-entity-modal .create-entity-header .entity-name-input {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  font-size: 25px;
}
.create-entity-modal .create-entity-body {
  text-align: left;
  width: auto;
  height: calc(100% - 65px - 50px);
}
.create-entity-modal .create-entity-body .entity-value.tag {
  width: auto;
}
.create-entity-modal .create-entity-body .entity-value-input {
  margin-left: 5px;
  margin-top: 5px;
  width: 200px;
  height: auto;
}
.create-entity-modal .create-entity-bottom {
  
}
.create-entity-modal .create-entity-bottom .create-entity-confirm-btn {
  width: 100%;
  height: 50px;
}

.create-entity-modal.show {
  transform: translate3d(22.5vw, 0vh, 0);
}
.create-entity-modal.hide {
  transform: translate3d(22.5vw, -200vh, 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: 120;
  display: block;
}

/* .create-entity-modal {
  
}

.entityModal-enter {
  opacity: 0.01;
}

.entityModal-enter.entityModal-enter-active {
  opacity: 1;
  transition: opacity 250ms ease-in;
}

.entityModal-leave {
  opacity: 1;
}

.entityModal-leave.entityModal-leave-active {
  opacity: 0.01;
  transition: opacity 250ms ease-in;
} */