/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 13 2025 | 16:29:17 */
.blik .elementor-button {
                overflow: hidden;
                position: relative;
            }

            .blik .elementor-button:after {
                filter: blur(30px);
                content: "";
                margin-left: 60px;
                width: 50px;
                height: 400px;
                background: #fff;
                -webkit-animation-delay: 0.05s;
                animation-delay: 0.05s;
                position: absolute;
                left: -40px;
                top: -150px;
                -webkit-animation-timing-function: ease-in-out;
                animation-timing-function: ease-in-out;
                -webkit-transition: all 0.1s;
                transition: all 0.1s;
                -webkit-animation-name: slideme;
                animation-name: slideme;
                -webkit-animation-duration: 3s;
                animation-duration: 3s;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                -webkit-transform: rotate( 45deg );
                transform: rotate( 45deg );
            }

            @-webkit-keyframes slideme {
                0% {
                    left: -30px;
                    margin-left: 0
                }

                30% {
                    left: 110%;
                    margin-left: 80px
                }

                100% {
                    left: 110%;
                    margin-left: 80px
                }
            }

            @keyframes slideme {
                0% {
                    left: -30px;
                    margin-left: 0
                }

                30% {
                    left: 110%;
                    margin-left: 80px
                }

                100% {
                    left: 110%;
                    margin-left: 80px
                }
            }