@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.sticky-kj{
  background-color: #38bfc8;
  padding: 10px;
  cursor: pointer;

  position: fixed;
  bottom: 0;
  z-index: 9999;

  animation: 1.5s fadeInUp;
}

.sticky-kj span{
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
}