#leagues_box{
    overflow-y: auto;
    width: 100%;
    height: 100%;
}




#leagues_box #playing_list{
    display: inline-block;
    width: 100%;
    height: 50px;
    background: rgb(208, 255, 218);
}
#leagues_box #playing_list>ul{
    float: left;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: ;
    align-items: center;
}
#leagues_box #playing_list>ul>li{
    overflow: hidden;
    float: left;
    cursor: pointer;
    padding: 0 10px;
    height: 70%;
    border-radius: 25px;
    margin: 1%;
    background: rgb(0, 0, 0);
    border: 1px solid black;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}#leagues_box #playing_list>ul>li>i{
    margin-right: 5px;
    font-size: 25px;
}
#leagues_box #playing_list>ul>li:first-child{
    background: var(--button_activity_bg_color);
}




#leagues_box #left_sideber{
    float: left;
    overflow: hidden;
    display: inline-block;
    width: 10%;
    height: 100%;
}
#leagues_box #left_sideber ul{
    width: 100%;
    height: 100%;
}
#leagues_box #left_sideber ul li{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(163, 163, 163);
    color: #fff;
    display: block;
    margin: 15px 0;
    font-size: 15px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}



#leagues_box #section_menu_box{
    width: 100%;
    height: auto;
    background: none;
}
#leagues_box #menu_item_box_list{
    float: left;
    overflow: hidden;
    display: inline-block;
    width: 89%;
    height: auto;
}





@media (min-width:150px) and (max-width:499px){
    #leagues_box #playing_list{
        height: 10vw;
    }
    #leagues_box #playing_list>ul>li{
        padding: 0 1.5vw;
        border-radius: 5vw;
        font-size: 4vw;
    }#leagues_box #playing_list>ul>li>i{
        font-size: 5vw;
    }

    #leagues_box #left_sideber ul li{
        width: 6vw;
        height: 6vw;
        margin: 3vw 0;
        margin-left: auto;
        font-size: 3vw;
    }
}