.call-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: widget-pulse 2s infinite ease-in-out;
}

.call-widget img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20%;
  animation: image-pulse 2s infinite ease-in-out;
}

@media (min-width: 769px) {
  .call-widget {
    display: none;
  }
}

@keyframes widget-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes image-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }


}
