#go_mm_wrap {
    position: fixed;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: var(--mm_bg);
    padding: 5px 0;
    z-index: 99999 !important;
}
#go_mm_wrap a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-basis: 100%;
    align-items: center;
    color: var(--mm_text) !important;
    font-size: var(--mm_font) !important;
    line-height: 1;
}
#go_mm_wrap a:is(:hover,:active, :visited){
    color: var(--mm_text) !important;
}
#go_mm_wrap svg *{
    fill: var(--mm_text) !important;
}
#go_mm_wrap a .mm_anchor_content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.mm_anchor_content span{
    margin-top: 5px;
}
a.mm_circle>.mm_anchor_content {
    width: 50px;
    height: 50px;
    background: var(--mm_circle_bg)  !important;
    border-radius: 50%;
}
#go_mm_wrap .go_mm_wrap_menu {
    position: fixed;
    background: var(--mm_menu_bg);
    top: 0;
    left: 0;
    height: 100vh;
    overflow: auto;
    transition: transform .3s linear;
    transform: translateX(-120%);
    z-index: 9999;
    box-shadow: 0px 0px 10px rgba(0,0,0, 0.2);
}
.admin-bar #go_mm_wrap .go_mm_wrap_menu{
    top: 32px;
}
#go_mm_wrap .go_mm_wrap_menu.active {
    transform: translateX(0);
}
#go_mm_wrap .go_mm_wrap_menu{
    width: 300px;
}
#go_mm_wrap .go_mm_wrap_menu ul,
#go_mm_wrap .go_mm_wrap_menu ul li{
    margin:0;
    padding:0;
    list-style: none;
    text-align:left;
}
#go_mm_wrap .go_mm_wrap_menu ul ul li{
    padding-left:15px;
} 
#go_mm_wrap .go_mm_wrap_menu a{
    align-items: flex-start;
    color: var(--mm_menu_text) !important;
    font-size: var(--mm_menu_font) !important;
}
#go_mm_wrap .go_mm_wrap_menu a:visited{
    color: var(--mm_menu_text) !important;
}
#go_mm_wrap .go_mm_wrap_menu a:is(:hover, :active), .current-menu-item>a{
    color: var(--mm_menu_hover) !important;
}
.go_mm_menu_close {
    margin: 0 0 0 auto;
    height: 30px;
    line-height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f00;
    font-size: 30px;
    cursor: pointer;
}
.go_menu_wrapper{
    height: calc(100vh - 30px);
    overflow: auto;
    padding: 0 15px;
}

#go_mm_wrap .go_mm_wrap_menu ul.sub-menu{
    display: none;
    flex-basis: 100%;
    order: 10;
} 
#go_mm_wrap .go_mm_wrap_menu .menu-item-has-children{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
#go_mm_wrap .go_mm_wrap_menu .menu-item-has-children>a{
    flex-basis: calc(100% - 40px);
    width: calc(100% - 40px);
}
#go_mm_wrap .go_mm_wrap_menu .menu-item-has-children:after{
    content: '+';
    width: 40px;
    flex-basis: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
    color: var(--mm_menu_text) !important;
}
#go_mm_wrap .go_mm_wrap_menu .menu-item-has-children:hover:after{
    color: var(--mm_menu_hover) !important;
}
#go_mm_wrap .go_mm_wrap_menu .menu-item-has-children.menu_acive:after{
    transform: rotate(45deg);
    color: var(--mm_menu_hover) !important;
}
.go_menu_wrapper a {
    min-height: 40px;
}
.go_menu_wrapper>ul li{
    border-bottom: 1px solid #ccc;
}
.go_menu_wrapper .sub-menu{
    border-top: 1px solid #ccc;
}
.go_menu_wrapper>ul li:last-child{
    border: none;
}