/* Fix position on desktop and mobile */
#rec1560067381 {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 999999 !important;
  width: auto !important;
  height: auto !important;
  pointer-events: auto !important;
}

/* Button animation */
#rec1560067381 .t-btn,
#rec1560067381 a {
  animation: pulse-btn 1.8s ease-in-out infinite;
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 12px 6px rgba(255, 255, 255, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
}

/* Mobile safe positioning */
@media (max-width: 480px) {
  #rec1560067381 {
    bottom: 18px !important;
    right: 18px !important;
  }
}
