.fcr-action-phone-wrapper-l {
  width: 80px;
  height: 80px;
}
.fcr-action-phone-wrapper-m {
  width: 50px;
  height: 50px;
}
.fcr-action-phone-wrapper-s {
  width: 30px;
  height: 30px;
}
.fcr-action-phone-wrapper {
  background-color: var(--fcr_ui_scene_ramp_green1);
  border-radius: 100%;
  position: relative;
  margin: auto;
}
.fcr-action-phone-wrapper .fcr-action-phone-circle {
  position: absolute;
  background-color: var(--fcr_ui_scene_ramp_green6);
  height: 100%;
  width: 100%;
  border-radius: 100%;
  opacity: 0.3;
}

.fcr-action-phone-circle-animation{
  animation: actionphone 2s ease-out infinite;

}
.fcr-action-phone-circle:nth-of-type(1) {
  animation-delay: -0.5s;
}
.fcr-action-phone-circle:nth-of-type(2) {
  animation-delay: -1s;
}
.fcr-action-phone-circle:nth-of-type(3) {
  animation-delay: -1.5s;
}
.fcr-action-phone-icon{
  position: absolute;
  height: 100%;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes actionphone {
  100% {
    transform: scale(1.68);
    opacity: 0;
  }
}
