.taskGroups>div {
    height: 50px;
    width: 50px;
    border-radius: 8px;
}

.taskGroups {
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}

.taskGroups>div[data-group="blue"] {
    background: #52C1FF;
}

.taskGroups>div[data-group="purple"] {
    background: #C852FF;
}

.taskGroups>div[data-group="green"] {
    background: #68E76D;
}

.taskGroups>div[data-group="red"] {
    background: #FF5252;
}

.taskGroups>div[data-group="orange"] {
    background: #ffba52;
}

.taskGroups>div[data-group="yellow"] {
    background: #fffe52;
}

.taskGroups>div.selected {
    box-shadow: 0px 0px 0px 3px #ffffff;
}

.saveTaskDetailsBtn, .deleteTaskBtn {
    bottom: 10px;
    left: 25px;
    right: 25px;
    width: auto;
    position: initial;
    margin-top: 30px;
}

.btn.createSubTaskBtn {
    padding: 3px;
    width: 78px;
    font-size: 13px;
    background: #ffffff05;
    color: #ffffffba;
    border: 1px solid #ffffff26;
    border-radius: 3px;
    box-shadow: none;
}

.btn.createSubTaskBtn i {
    margin-right: 8px;
}

.subTaskSection {
    margin: 0px -25px;
    padding: 0px 25px;
    background: #52c2ff5c;
    background: #0d0f14;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 5px;
}

.editPanel .subTaskSection h4 {
    margin: 0px;
    color: #ffffffcf;
}

.btn.secondary.deleteTaskBtn {
    color: #ff5252;
    border: 1px solid #ff5252;
}

textarea.taskDetailsNameBox {
    font-size: 20px;
    width: calc(100% + 50px);
    box-sizing: border-box;
    padding: 15px 25px;
    color: white;
    background: #2b546f;
    border: none;
    border-bottom: 2px solid transparent;
    outline: none;
    font-family: 'Nunito', sans-serif;
    margin: 20px -25px;
    resize: none;
    transition: all .3s;
    min-height: 57px;
    height: 57px;
    border-radius: 0px;
}

.taskDetails .datePicker input {
    background: #00000030;
    border: 1px solid #ffffff1f;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

textarea.taskDetailsNameBox:focus {
    border-bottom: 2px solid #52c2ff;
}

.taskDetails .subTaskSection small {
    margin-left: 5px;
    font-weight: normal;
    font-size: 12px;
    color: #ffffff59;
}

.subTaskSection.hasChildTasks {
    background: #2b546f75;
}