/*
 Theme Name:     Divi Child
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme
 Author:         Elegant Themes
 Author URI:     https://www.elegantthemes.com
 Template:       Divi
 Version:        1.0.0
*/
 
 
/* =Theme customization starts here
------------------------------------------------------- */


#mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dim effect */
    z-index: 998; /* below the menu (menu z-index is usually 999+) */
}

#mobile-menu-overlay {
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}
#mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}