/**
* Theme Name: Smartic Child
* Description: This is a child theme of Smartic, generated by Merlin WP.
* Author: <a href="https://wpopal.com/">Opal Team</a>
* Template: smartic
* Version: 2.2.0
*/

#glow {
  position: relative;

 
	&:after {
    position: absolute;
    content: '';
    top: 65px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 80%;
    width: 80%;
    margin: 0 auto;
    filter: blur(40px);
    border-radius: 25px;
		transform: scale(1.2);
    background: linear-gradient(90deg, #0fffc1, #7e0fff);
   
    animation: animateGlow 10s ease infinite;
    
    @keyframes animateGlow {
      0%  {
				background-position: 0% 50%
			}
      
			50% {
				background-position: 100% 50%
			}
			
      100% {
				background-position: 0% 50%
			}
    }
  }
}