.enable-sidebars {
    display: flex;
    width: 100%;
}

.forumlist_left {
    width: 85%;
}

.right-sidebar {
    width: 15%;
    padding-left: 5px;
}

li.bg1.teammember {
    display: flex;
    justify-content: flex-start;
    padding: 2px 6px;
}

span.team_avatar {
    margin-right: 4px;
}

span.team_avatar img {
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
}

span.team_member {    
    display: grid;
}

@media screen and (min-width: 500px) and (max-width:700px) {
    .forumlist_left {
        width: 75%!important;
    }
    .right-sidebar {
        width: 25%!important;
        padding-left: 15px!important;
    }
}

@media screen and (min-width: 350px) and (max-width:499px) {
    .forumlist_left {
        width: 65%!important;
    }
    .right-sidebar {
        width: 35%!important;
        padding-left: 15px!important;
    }
}

@media screen and (min-width: 50px) and (max-width:349px) {
    .enable-sidebars {
        display: grid!important;
        width: 100%;
    }

    .forumlist_left {
        width: 100%!important;
    }
    .right-sidebar {
        width: 100%!important;
        padding-left: 0px!important;
    }
}