.keylex-popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  z-index: 9999;
  overflow: hidden;

  display: none;
}

.keylex-content {
  padding: 15px;
}

.keylex-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.keylex-text {
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.6;
}

.keylex-button {
  display: block;
  text-align: center;
  background: #005bac;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
}

.keylex-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  cursor: pointer;
}

.keylex-popup.show {
  display: block;
  animation: slideUp .4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .keylex-popup {
    width: calc(50% - 20px);
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 572px) {
   .keylex-popup {
    width: calc(70% - 20px);
    right: 10px;
    bottom: 10px;
  }
}
