.video-pulse .elementor-custom-embed-play {
  padding-top: 0.5rem !important;
}

.video-pulse .elementor-custom-embed-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-animation: video-pulse-effect2 3s infinite linear;
  -moz-animation: video-pulse-effect2 3s infinite linear;
  -ms-animation: video-pulse-effect2 3s infinite linear;
  -o-animation: video-pulse-effect2 3s infinite linear;
  animation: video-pulse-effect2 3s infinite linear;
  animation-delay: 0.5s;
}

.video-pulse .elementor-custom-embed-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-animation: video-pulse-effect 2s infinite linear;
  -moz-animation: video-pulse-effect 2s infinite linear;
  -ms-animation: video-pulse-effect 2s infinite linear;
  -o-animation: video-pulse-effect 2s infinite linear;
  animation: video-pulse-effect 2s infinite linear;
}

@keyframes video-pulse-effect {
  0% {
    width: 5rem;
    height: 5rem;
    opacity: 1;
  }
  100% {
    width: 6.25rem;
    height: 6.25rem;
    opacity: 0;
  }
}

@keyframes video-pulse-effect2 {
  0% {
    width: 5rem;
    height: 5rem;
    opacity: 1;
  }
  100% {
    width: 12.5rem;
    height: 12.5rem;
    opacity: 0;
  }
}
