/*
Theme Name: Hello Biz Child Theme
Template: hello-biz
Theme URI: https://www.amrsoftec.com
Author: the AMR Softec team
Author URI: https://www.amrsoftec.com
Description: Hello Biz Child Theme Developed By AMR Softec Team.
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-biz
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
body.mobile-menu-open {
    overflow: hidden;
}
.header.elementor-sticky--active {
    backdrop-filter: blur(24px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header .e-con-inner {
    transition: all 0.3s ease;
}

.header.elementor-sticky--active>.e-con-inner {
    padding-top: 10px;
    padding-bottom: 10px;
}

.elementor-element.mobile-menu {
    height: calc(100vh - 46px);
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 0;
}

.mobile-menu .mobile-menu-container {
    flex-grow: 1;
    padding: 20px 15px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .menu-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #ffffff;
    margin-top: 0;
    text-decoration: none;
    color: #2d3436;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
    margin-bottom: 4px;
}

.mobile-menu .menu-item.menu-item-has-children>a {
    border-radius: 10px 10px 0 0;
    margin-bottom: 2px;
}

.mobile-menu .menu-item:not(.menu-item-has-children)>a {
    border-radius: 10px;
}

.mobile-menu .menu-item>a:active {
    transform: scale(0.98);
}

.mobile-menu .menu-item>a::after {
    content: '';
    width: 16px;
    height: 16px;
    padding: 6px;
    border-radius: 50%;
    background-color: #f0f2f5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2300a7b5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;

    transition: 0.2s;
}

.mobile-menu .menu-item>a:hover::after {
    background-color: #00a7b5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.mobile-menu .sub-menu {
    display: block !important;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.mobile-menu .sub-menu li a {
    display: flex;
    align-items: center;
    padding: 7px 20px;
    text-decoration: none;
    color: #636e72;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
    justify-content: flex-start;
    box-shadow: none;
	margin-bottom:0;
    border-radius: 0 !important;
}
.mobile-menu .sub-menu li+li a {
	border-top: solid 1px #f2f2f2;
}

.mobile-menu .sub-menu li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dfe6e9;
    margin-right: 12px;
    transition: 0.2s;
}
.mobile-menu .sub-menu li a:hover {
    color: #00a7b5;
    background-color: #fcfcfc;
}

.mobile-menu .sub-menu li a:hover::before {
    background: #00a7b5;
    transform: scale(1.2);
}

.mobile-menu .sub-menu li a::after {
    display: none;
}