
.mobile_top_toggler_bar{
    display: none;
}
.close_side_bar{
    display: none;
}
@media (max-width: 991px) {
    .left_aside_menu{
        left: -270px;
        z-index: +999;
        transition-duration: 300ms;
        transition-property: all;
    }
    .right_aside_menu {
        left: -300px;
        z-index: +999;
        transition-duration: 300ms;
        transition-property: all;
    }
    .page_layout_body,    
    .home_layout_mid_body {
        width: calc(100% - 0px);
        margin: 0px;
    }
    .mobile_top_toggler_bar{
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        top: 0;
        left: 0;
        z-index: +9;
        width: 100%;
        padding: 10px;
        background-color: #191335;
    }
    .mobile_top_toggler_bar .aside_brand{
        width: auto;
        height: auto;
    }
    .left_aside_toggle_btn{
        background-color: #fff;
        border: 2px solid #49E2B4;
        padding: 0px 20px;
        color: #49E2B4;
        box-shadow: 0px 0px 13px 0px inset #191335;
        border-radius: 10px;
        height: 45px;
        min-width: 45px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .right_aside_toggle_btn{
        background-color: #191335;
        border: 2px solid #49E2B4;
        padding: 0px;
        color: #49E2B4;
        box-shadow: 0px 0px 13px 0px inset #191335;
        border-radius: 10px;
        height: 45px;
        min-width: 45px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .left_aside_menu.left_aside_show{
        left: 0px;
        z-index: +999;
        transition-duration: 300ms;
        transition-property: all;
    }
    .right_aside_menu.right_aside_show{
        left: 0px;
        z-index: +999;
        transition-duration: 300ms;
        transition-property: all;
    }
    .close_side_bar{
        border: 0px;
        color: #241f3f;
        width: 20px;
        height: 20px;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        border-radius: 50%;
        font-size: 19px;
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: +9;
    }
}
body.fixed_header .mobile_top_toggler_bar{
    position: fixed;
}