.groupItem {
    /* border: 1px solid #ccc; */
    border-radius: 20px;
    padding: 5px 7px;
    padding-left: 0px;
    display: inline-block;
    color: #ffffff4f;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-right: 10px;
}

.groupItem.selected {
    /* background: #ccc; */
    /* color: #333; */
    font-weight: bold;
    color: #52c2ff;
}

.groupList {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-top: -10px;
    box-shadow: 0px 15px 9px -17px #000000cc;
    overflow: auto;
    /* justify-content: center; */
    flex-wrap: nowrap;
    width: 90%;
    margin-left: 5%;
}

.groupTaskHeader {
    text-align: center;
}

.groupItem:before {
    /* content: '#'; */
}

.groupTaskHeader {
    text-align: center;
    background: #000000;
    padding-top: 1px;
    margin: -12px;
    margin-bottom: 13px;
}

.groupItem .name:before {
    content: '#';
}

.groupTaskHeader h3 {
    margin-top: 10px;
}



div#DesktopLeftMenu {
    left: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    padding: 20px;
    box-sizing: border-box;
    /* background: black; */
    /* background: #12161f; */
    border-right: 1px solid #ffffff0f;
    height: 100vh;
    overflow: auto;
    display:none;
}

div#MyTasksBtn {
    padding: 10px 20px;
    background: #0e1017;
    margin: 0px -20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 20px;
}

div#MyTasksBtn:hover {
    color: #f2f2f2;
}

.counter {
    position: absolute;
    font-size: 9px;
    right: -13px;
    top: 0px;
    bottom: 0px;
    background: #ffffff0a;
    min-width: 15px;
    height: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff8a;
    margin: auto;
    padding: 1px 1px;
}

.groupSubHeader {
    display: flex;
    justify-content: space-between;
    background: #0000005c;
    padding: 7px 15px;
    margin: -12px;
    margin-bottom: 10px;
}

.groupSubHeader h4 {
    margin: 0px;
}

.circles>div {
    height: 20px;
    width: 20px;
    border: 1px solid #ffffff75;
    border-radius: 20px;
    margin-right: -11px;
    background: black;
}

.circles {
    display: flex;
    flex-direction: row-reverse;
    margin-right: 15px;
}

.userGroupLabel {
    display: flex;
    font-size: 12px;
    align-items: center;
}

.groupName {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.groupName .btn {
    background: none;
    box-shadow: none;
    width: auto;
    height: 20px;
    margin: 0px;
    margin-left: 15px;
    color: #ffffff75;
}



.groupItem .name {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.groupSearchBar {
    width: calc(100% + 24px);
    background: black;
    margin-left: -12px;
    margin-top: -13px;
    margin-bottom: 10px;
    padding: 0px;
    left: 0;
    border-top: 1px solid #ffffff21;
}

.groupSearchBar input {
    font-size: 14px;
    width: 100%;
    padding: 10px 15px;
    background: none;
    border: none;
    outline: none;
    color: white;
}

.groupSearchBar input:focus {
    background: #ffffff12;
}