/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.elementor-button{
    position: relative;
	overflow:hidden
    
}
.elementor-button:before{
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewx(-20deg);
    -khtml-transform: skewx(-20deg);
    -moz-transform: skewx(-20deg);
    -ms-transform: skewx(-20deg);
    -o-transform: skewx(-20deg);
    transform: skewx(-20deg);
    background-image: -webkit-gradient(linear,left top,right top,from(transparent),color-stop(rgba(255,255,255,.35)),to(transparent));
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .35), transparent);
    z-index: -1;
}
.elementor-button:hover:before
 {
    -webkit-animation: pxl_btn_shine 1.4s ease;
    animation: pxl_btn_shine 1.4s ease;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
    z-index: 1;
 }
 
 @keyframes pxl_btn_shine{
     100% {
        left: 200%;
    }
 }