
.ace-fixed-button {
            position: fixed;
            bottom: 20px; /* Distance from the bottom of the viewport */
            right: 20px;  /* Distance from the right of the viewport */
            /* background-color: #007bff; */
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
            z-index: 1000; /* Ensure it stays on top of other content */
}

img.ace-shake  {
  animation:ace-shake-animation linear 1.5s infinite
}

@keyframes ace-shake-animation {
  0% {
    transform:rotate(0) scale(1) skew(0.017rad)
  }
  25% {
    transform:rotate(0) scale(1) skew(0.017rad)
  }
  35% {
    transform:rotate(-0.3rad) scale(1) skew(0.017rad)
  }
  45% {
    transform:rotate(0.3rad) scale(1) skew(0.017rad)
  }
  55% {
    transform:rotate(-0.3rad) scale(1) skew(0.017rad)
  }
  65% {
    transform:rotate(0.3rad) scale(1) skew(0.017rad)
  }
  75% {
    transform:rotate(0) scale(1) skew(0.017rad)
  }
  100% {
    transform:rotate(0) scale(1) skew(0.017rad)
  }
}
