.recent-donor-popup {
  animation-duration: 2s;
  animation-name: slidein;
  position: fixed;
  bottom: 25%;
  left: 10px;
  border: 2px solid;
  border-radius: .75rem;
  padding: 10px;
  background-color: white;
  font-weight: bold;
  box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

@keyframes slidein {
  from {
    left: -100%;
  }

  to {
    left: 10px;
  }
}
