#hm-google-button {
  position: fixed;
  width: 50px;
  height: 100px;
  bottom: 105px;
  right: 10px;
  z-index: 101;
  border-radius: 50%;
  background: url(https://static.wixstatic.com/media/9ff12c_25455c4c430248a6bf6b44afbed69ae0~mv2.png/v1/fill/w_133,h_133,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/google-review-logo-png-5_edited.png) no-repeat center;
  background-size: contain;
  -webkit-animation: flash 1.75s infinite ease-in-out;
  animation: flash 1.75s infinite ease-in-out;
  transform-origin-x: 50%;
  transform-origin-y: 0px;
  transform-origin-z: initial;
  transform-origin: 50% 10px;
}
#hm-google-button_main::before {
  position: fixed;
  content: "";
  width: 50px;
  height: 50px;
  right: 10px;
  bottom: 65px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px #000000;
  -webkit-animation: active 2s infinite linear;
  animation: active 2s infinite linear;
}
@-webkit-keyframes active {
  0% {
      -webkit-transform: scale(.1);
      opacity: 1;
  }
  70% {
      -webkit-transform: scale(1.5);
      opacity: 0;
  }
  100% {
      opacity: 0;
  }
}
@keyframes active {
  0% {
      transform: scale(.1);
      opacity: 1;
  }
  70% {
      transform: scale(1.5);
      opacity: 0;
  }
  100% {
      opacity: 0;
  }
}
