.tasks h3 {
    font-size: 15px;
    margin: 0px;
}

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

.btn.smallAddBtn {
    background: none;
    font-size: 20px;
    text-shadow: 1px 1px 0px #52C1FF;
    color: #52C1FF;
    width: 40px;
    height: 25px;
    margin: 0px;
}

.tasks>div {
    margin-bottom: 80px;
}




.plusBtn:before {
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background: dimgrey;
    position: absolute;
    left: 0px;
    top: calc(50% - 1.5px);
}

.plusBtn:after {
    content: '';
    width: 3px;
    height: 100%;
    border-radius: 5px;
    background: dimgrey;
    position: absolute;
    top: 0px;
    left: calc(50% - 1px);
}

.plusBtn {
    position: relative;
    height: 20px;
    width: 20px;
}

.btn.addTaskBtn.primaryTasks {
    position: fixed;
    bottom: 75px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background: #52c2ff;
    box-shadow: -6px 4px 10px -2px #0000004a;
}

.addTaskBtn .plusBtn {
    height: 30px;
    width: 30px;
}

.addTaskBtn .plusBtn:after,.addTaskBtn .plusBtn:before {
    background: white;
}


div#PersonalGroupSwitch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 65px;
    background: #ffffff0f;
    border-radius: 30px;
    height: 25px;
    margin-bottom: 5px;
    margin-top: 4px;
    font-size: 14px;
}

div#PersonalGroupSwitch>div {
    height: 30px;
    width: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -7px 0px;
}

div#PersonalGroupSwitch>div.selected {
    background: white;
}

div#PersonalGroupSwitch>div:nth-of-type(2) {
    font-size: 21px;
}

#Tasks .groupSubHeader {
    margin-top: -10px;
}

#Tasks .overdueSection,#GroupTasks .overdueSection {
    background: #00000054;
    padding: 12px;
    margin-left: -12px;
    margin-right: -12px;
    padding-top: 1px;
    margin-bottom: 30px;
}

#Tasks .overdueSection h3 {
    color: white;
}

#Tasks .overdueSection .dt {
    color: #ff5252;
}