#ah-mobile-sidebar-menu,
#ah-mobile-sidebar-menu * {
    box-sizing: border-box;
}

#ah-mobile-sidebar-menu {
    display: none;
    position: fixed;
    z-index: 10;
    right: -100%;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    padding: 50px;
    border-radius: 15px;
    padding: 15px 10px 105px 10px;
    transition: all 1s;
}

#ah-mobile-sidebar-menu.open {
    right: 6px;
}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container {
    width: 100%;
    margin: auto;
    height: 100%;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: right;
    position: relative;
    border-radius: 10px;
}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu {
    height: 100%;
    width: 250px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(26, 26, 26, 0.108);
    background-color: white;
    padding-top: 50px;
}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu #search-bar {
    width: 95%;
    margin: auto;

}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu #search-bar .search-input-container {
    gap: 0px;

}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu .close-btn {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 25px;
}


#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu .sidebar-menu-ul {
    padding: 15px;
    list-style: none;
}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu .sidebar-menu-ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu .sidebar-menu-ul a {
    display: flex;
    align-items: center;
    gap: 10px;
}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu .sidebar-menu-ul li span.title {
    font-size: 1rem;
    padding-right: 10px;
    color: rgb(54, 54, 54);
}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu .sidebar-menu-ul li i {
    padding: 0;
    font-size: 20px;
    color: #3F5B80;
}

#ah-mobile-sidebar-menu #ah-mobile-sidebar-menu-container .sidebar-menu .sidebar-menu-ul li svg {
    padding: 0;
    width: 20px;
    height: 20px;
    color: #2b4eff;
}

#ah-mobile-top-menu,
#ah-mobile-top-menu * {
    box-sizing: border-box;
}

#ah-mobile-top-menu {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 100%;
    margin-top: 20px;
    border-radius: 15px;
    padding: 0px;
}

#ah-mobile-top-menu #ah-mobile-top-menu-container {
    width: 95%;
    margin: auto;
    background-color: white;
    height: 100%;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 15px 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(84, 84, 84, 0.099);
}

#ah-mobile-top-menu #ah-mobile-top-menu-container .ah-mobile-top-menu-logo img {
    height: 50px;
}

#ah-mobile-top-menu #ah-mobile-top-menu-container .mobile-menu-sidebar-butt {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#ah-mobile-top-menu #ah-mobile-top-menu-container .mobile-menu-sidebar-close-butt {
    display: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#ah-mobile-bottom-menu,
#ah-mobile-bottom-menu * {
    box-sizing: border-box;
}

#ah-mobile-bottom-menu {
    display: none;
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 15px;
    padding: 0px;
}

#ah-mobile-bottom-menu #ah-mobile-menu-container {
    width: 95%;
    margin: auto;
    background-color: transparent;
    height: 100%;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 15px 50px;
}

#ah-mobile-bottom-menu #ah-mobile-menu-container::after {
    content: "";
    width: auto;
    border-radius: 10px 0 0 10px;
    position: absolute;
    height: 100%;
    left: 0;
    right: calc(50% + 40px);
    top: 0;
    background-color: white;
    box-shadow: -5px 5px 5px 0px rgba(84, 84, 84, 0.099),
        -5px -5px 5px 0px rgba(84, 84, 84, 0.099);
    z-index: 2;
}

#ah-mobile-bottom-menu #ah-mobile-menu-container::before {
    content: "";
    width: auto;
    left: calc(50% + 40px);
    border-radius: 0 10px 10px 0;
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    background-color: white;
    box-shadow: 5px 5px 5px 0px rgba(84, 84, 84, 0.099),
        5px -5px 5px 0px rgba(84, 84, 84, 0.099);
    z-index: 2;
}

#ah-mobile-bottom-menu #ah-mobile-menu-container li {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2b4eff;
}

#ah-mobile-bottom-menu #ah-mobile-menu-container a {
    padding: 0;
    margin: 0;
    color: inherit;
    height: 25px;
    width: 25px;

}

#ah-mobile-bottom-menu #ah-mobile-menu-container i {
    font-size: 26px;
    margin: 0px;
    padding: 0;
}

#ah-mobile-bottom-menu #ah-mobile-menu-container svg.background {
    position: absolute;
    right: calc(50% - 41px);
    bottom: 0px;
    top: auto;
    fill: white;
    z-index: 1;
    -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px -4px 5px rgba(0, 0, 0, 0.1));
    box-shadow: 0px 5px 5px rgba(84, 84, 84, 0.099);
}

#ah-mobile-bottom-menu #ah-mobile-menu-container li svg {
    width: 25px;
    height: 25px;
}

#ah-mobile-bottom-menu #ah-mobile-menu-container .mobile-menu-middle-item {
    transform: translateY(-30px);
    /* background-color: white; */
    border-radius: 50px;
    width: 60px;
    height: 60px;
    background-color: #2b4eff;
    box-shadow: 0px 0px 20px -5px rgba(128, 128, 128, 0.512);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid white;
    position: relative;
    color: white;
}

@media all and (max-width: 992px) {
    #ah-mobile-bottom-menu {
        display: block;
    }

    #ah-mobile-top-menu {
        display: block;
    }

    #ah-mobile-sidebar-menu {
        display: block;
    }

    #header-sticky {
        display: none;
    }
}