@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.4); }
  70% {
    box-shadow: 0 0 0 30px rgba(255,255,255, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(255,255,255, 0); } }

@mixin pulseBlue() {
  box-shadow: 0 0 0 rgba(75, 97, 221, 1);
  animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 0 0 rgba(75, 97, 221, 0.4); }
  70% {
    box-shadow: 0 0 0 30px rgba(75, 97, 221, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(75, 97, 221, 0); } }
    
.bgb {
    z-index: 2;
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: 53% 33%;
    position: relative;
    box-shadow: 0 0 0 #4b61dd;
    -webkit-animation: pulseBlue 2s infinite;
    animation: pulseBlue 2s infinite;
}