.subTaskItem {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    align-items: center;
}

.subTaskItem>div:first-of-type input {
    width: 450px;
}

.subTaskItem input,.subTaskItem select {
    background: #ffffff0d;
    color: #bbbbbb;
    border: none;
    padding: 7px;
    border-radius: 3px;
    outline: none;
}

.subTaskItem>div:nth-of-type(2) input, .subTaskItem>div:nth-of-type(3) select {
    font-size: 11px;
}

.subTaskItem input:focus {
    background: #ffffff1f;
}

.subTaskList {margin-top: 30px;min-height: 183px;max-height: 80%;overflow: auto;}

.subTaskItem i:hover {
    color: #ce4d4d;
    cursor: pointer;
}

.newSubTaskBtn {
    font-size: 14px;
    padding: 4px 6px;
    border: none;
    color: white;
    border-radius: 4px;
    margin-top: 9px;
    cursor: pointer;
    background: #ffffffb3;
    width: 120px;
    text-align: center;
    background: #52c2ff5c;
}

.newSubTaskBtn:hover {
    opacity: 1;
}

.subTaskItem>div {
    margin-right: 5px;
}

.subTaskItem:nth-of-type(2n+1) {
    background: #00000029;
}


@media only screen and (max-width: 600px) {
    .subTaskItem>div:first-of-type input {
        width: 320px;
        padding: 10px 6px;
        background: #ffffff0d;
        margin-bottom: 2px;
    }

    .subTaskItem {
        flex-wrap: wrap;
        border-bottom: 1px solid #ffffff14;
        padding: 8px 25px;
        margin-bottom: 0px;
    }

    .subTaskItem input, .subTaskItem select {
        padding: 1px;
        background: #00000047;
    }

    .subTaskList {
        margin: 30px -25px;
    }

    .newSubTaskBtn {
        width: calc(100% - 50px);
        margin-left: 25px;
        margin-top: 15px;
        text-align: center;
        box-sizing: border-box;
    }
}