#cf7-popup-trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  /* display: block; */
}

#cf7-popup-trigger img {
  width: 180px;
  height: auto;
  display: block;
  animation: bounceIn 0.8s ease-out, pulse 2.5s infinite;
  animation-delay: 0s, 1s; /* bounce od razu, pulse po 1s */
  animation-fill-mode: forwards;
}



#cf7-popup {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.6);
  padding: 20px;
  box-sizing: border-box;
  z-index: 9998;
}

.cf7-popup-content {
  background: #fff;
  padding: 30px;
  max-width: 700px;
  width: 100%;
  margin: 50px auto;
  position: relative;
  border-radius: 8px;
  box-sizing: border-box;
}

.cf7-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}




@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
