
#wrapper_sidebar{
    width: 100%;
    height: 90%;
    padding-top: 55px;
    padding-bottom: 80px;
    display: none;
}
#wrapper_sidebar #main_sideber{
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
#main_sideber>#head{
    position: fixed;
    width: 100%;
    max-width: 500px;
    height: 50px;
    background: var(--header_bg_color);
    background: rgb(36, 36, 36);
    color: var(--header_color);
}
#main_sideber>#head>button{
    border: none;
    background: none;
    float: left;
    width: 10%;
    height: 100%;
    font-size: 40px;
    color: var(--header_color);
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main_sideber>#head>h3{
    float: left;
    width: 90%;
    height: 100%;
    font-size: 20px;
    position: relative;
    z-index: 9;
    left: -5%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main_sideber>section{
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
    min-height: 100%;
    padding-top: 50px;
    height: auto;
    background: var(--body_bg_color);
}


@media (min-width:150px) and (max-width:499px){
    #wrapper_sidebar{
        padding-top: 11vw;
        padding-bottom: 16vw;
    }
    #main_sideber>#head{
        height: 10vw;
    }
    #main_sideber>#head>button{
        font-size: 8vw;
    }
    #main_sideber>#head>h3{
        font-size: 4vw;
    }
    #main_sideber>section{
        padding-top: 10vw;
    }
}

/************************************
*sidebar box for login section
********************************************/
#login_sidebar{
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99999999999999;
    top: 0;
    left: 0;
    display: none;
}
#login_sidebar>#login_box{
    overflow-y: scroll;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 100%;
    background: #fff;
    display: block;
}
