.phone {
  height: 65px;
  width: 65px;
  background-color: #91CB3E;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.phone:before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid #91CB3E;
  border-radius: 50%;
  animation: pulse 1.5s linear infinite;
}
.phone:after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid #91CB3E;
  border-radius: 50%;
  position: absolute;
  animation: pulse 1.5s linear infinite;
  animation-delay: 0.4s;
}
@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/*# sourceMappingURL=index.css.map */
