/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

p {
    margin-bottom: 1.8667em;
}

.elementor-sticky--effects{
    
}


.mobile-sidebar {
    position: fixed;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 300px;
    max-width: calc(100vw - 30px);
    transform: translateX(100%);
    display: none;
    overflow: auto;
    transition: all 0.3s ease 0s;
}

.elementor-editor-active .mobile-sidebar, .elementor-editor-active #overlay{
    position: static;
    transform: none;
    display: block;
}
#overlay {
    position: fixed;
    z-index: -100;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease 0s;
}
#overlay > * {
    display: none !important;
}

@media (max-width: 1200px){
    .mobile-sidebar {
        display: block;
    }
    .is-sidebar .mobile-sidebar {
        transform: translateX(0px);
        z-index: 150;
    }
    .is-sidebar #overlay {
        display: block;
        opacity: 1;
        visibility: visible;
        z-index: 100;
    }
}


