.addsmodal {
    position: fixed;
    top: calc(50% - 40vh);
    left: calc(50% - 40vw);
    right: 20px;
    z-index: 9999;
    width: 80vw;
    height: 80vh;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    border-radius: 0;
    animation: mymoveleft 2s;
}

@keyframes mymoveleft {
  from {
    transform: translatex(130%);
  }
  to {
    transform: translatex(0);
  }
}

.addsmodal h5 {
  color: #FFFFFF;
}

.addsmodal .modal-header{
  background-color: grey;
  padding: 10px 20px 10px 10px;
  border-radius: 0;
}

.addsmodal .modal-body {
  background-color: cyan;
  width: 100%;
  height: 100%;
}