.woot-widget-bubble {
  position: fixed !important;
  right: 20px !important;
  bottom: 90px !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: #4d4035 !important;
  box-shadow: 0 0 10px #c9a96b66, 0 0 20px #c9a96b33 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: glow 2.5s ease-in-out infinite;
  z-index: 9999;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 8px #c9a96b66, 0 0 16px #c9a96b33;
  }
  50% {
    box-shadow: 0 0 16px #c9a96b99, 0 0 30px #c9a96b66;
  }
}

.woot-widget-bubble svg {
  width: 26px !important;
  height: 26px !important;
  fill: #c9a96b !important;
}