
.glow_ex {
  
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-animation: glow_ex 3s linear 0s infinite alternate;
  animation: glow_ex 3s linear 0s infinite alternate;
	animation-play-state: paused;
}




@-webkit-keyframes glow_ex {
  0% {
    transform: rotate(-3deg);
    box-shadow: 0 0 60px 20px rgb(255, 163, 72), 25px 15px 50px 10px rgb(246, 211, 45), -5px -5px 30px 5px #fff;
  }
  100% {
        transform: rotate(3deg);
    box-shadow: 0 0 90px 20px rgb(255, 190, 111), 35px 20px 40px 10px rgb(229, 165, 10), -30px -3px 40px 5px rgb(222, 221, 218);
  }
}
@keyframes glow_ex {
  0% {
    transform: rotate(-3deg);
    box-shadow: 0 0 60px 20px rgb(255, 163, 72), 25px 15px 50px 10px rgb(246, 211, 45), -5px -5px 30px 5px #fff;
  }
  100% {
        transform: rotate(3deg);
    box-shadow: 0 0 90px 20px rgb(255, 190, 111), 35px 20px 40px 10px rgb(229, 165, 10), -30px -3px 40px 5px rgb(222, 221, 218);
  }
}
