
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate {
  0% {
    --angle: 0deg;
    --glowColor: #07F6D7;
  }
  100% {
    --angle: 360deg;
    --glowColor: #07F6D7;
  }
}

 .elementor-button{
  border-radius: 100px;
  padding: 1px;
  transition: all 0.18s ease-in-out;
  transform: translate3d(0, 0, 0);
}
 .elementor-button:after, .elementor-button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 101.5px;
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-image: conic-gradient(from var(--angle) at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 33%, var(--glowColor) 50%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
  animation: rotate 2s infinite linear;
}
 .elementor-button:before {
  animation: rotate 2s infinite linear;
  filter: blur(15px);
}
 .elementor-button .elementor-button-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 100px;
  background: #092B32;
  padding: 1vw 2vw;
  z-index: 1;
  transition: all 0.18s ease;
  backdrop-filter: blur(30px);
  backface-visibility: hidden;
}

