#card-popup {
  position: fixed;
  bottom: 10pt;
  left: 10pt;
  padding: 1rem;
  background-color: #fff;
  max-width: 300px;
  z-index: 9999;
  box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.3);
  transition: all .5s ease;
  opacity: 0;
  overflow: hidden;
  height: 296px;
}
#card-popup.show-popup {
  animation: showPopUp 1s ease .5s forwards;
}
#card-popup.hide-popup {
  height: 76px;
}
#card-popup span {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: sans-serif;
  margin: 0 auto .5rem;
}
#card-popup img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
}
#card-popup #close-card-popup {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#card-popup a.btn {
  padding: .5rem 1rem !important;
  display: block;
}
#card-popup > a {
  display: block;  
}
@keyframes showPopUp {
  from {
    transform: translatey(100%);
    opacity: 0;
  }
  to {
    transform: translatey(0%);
    opacity: 1;
  }
}