button[class*="w-56 h-56"] {
  transition: all 0.3s ease;
  position: relative;
  z-index: 100;
}

button[class*="w-56 h-56"].sticky-mode {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 224px;
  height: 224px;
  transform: scale(0.7);
  opacity: 0.85;
  z-index: 1000;
}

@media (max-width: 768px) {
  button[class*="w-56 h-56"].sticky-mode {
    transform: scale(0.5);
    bottom: 15px;
    right: 15px;
  }
}
