.calendlyDiv {
  position: fixed;
  z-index: 610;
}

.calendlyDiv a {
  float: right;
  cursor: pointer;
  border: 0px solid #888;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  background: #000000 url('../img/calendly.png') no-repeat center center;
}

.calendlyDiv a:before {
  background: transparent;
  border: 4px solid #000000;
  content: "";
  height: 100px;
  left: -21px;
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  top: -25px;
  width: 90px;
  z-index: 1;
  border-radius: 50%;
}

/**
.calendlyDiv a:before {
  -webkit-animation: sonar 1s ease-out infinite;
  -moz-animation: sonar 1s ease-out infinite;
  animation: sonar 1s ease-out infinite;
}
**/

@-webkit-keyframes sonar {
  from {
    -webkit-transform: scale(0);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes sonar {
  from {
    -moz-transform: scale(0);
    opacity: 1;
  }
  to {
    -moz-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sonar {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}
