.rh-joya-contact.phone-icon {
  bottom: 2rem;
  padding: 0 !important;
  position: fixed !important;
  right: 2rem;
  z-index: 100;
}
.rh-joya-contact.phone-icon .rh-block-icon.is-style-rounded > a {
  padding: 1.5rem;
  position: relative;
  transition: 0.3s ease-in-out;
  z-index: 100;
}
@media (min-width: 1024px) {
  .rh-joya-contact.phone-icon {
    right: 4rem;
    bottom: 4rem;
  }
}
.rh-joya-contact.pulse {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 60px;
  justify-content: center;
  position: relative;
  width: 60px;
}
.rh-joya-contact.pulse::after, .rh-joya-contact.pulse::before {
  animation: pulse 1s linear infinite;
  border-radius: 50%;
  border: 1px solid;
  content: "";
  height: calc(100% + 20px);
  position: absolute;
  width: calc(100% + 20px);
}
.rh-joya-contact.pulse::after {
  animation-delay: 0.3s;
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}