/* 
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 */


#backToTop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            border: none;
            border-radius: 50%;
            background: #1b2b4a;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s ease;
            z-index: 9999;
			box-shadow: 0 6px 18px rgba(0, 0, 0, 0.50);
        }
        #backToTop.show {
            opacity: 0.9;
            pointer-events: auto;
        }
        #backToTop:hover {
            opacity: 1;
			background: #6cb792;
			color: #1b2b4a;
        }


.ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit_sidebar-widget-container{
	transition: all .3s ease-out .3s;
}