/**handles:df-asana-css**/
.a-tasks {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    position:relative;
}

.a-task:before {
    content: '';
    left: 0;
    width: 23px;
    background: #FFF;
    height: 23px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #b7bfc6;
}

.post-content__container h1 {
    font-size: 30px;
    margin: 0 0 10px 18px;
}

.a-task {
    list-style-type: none!important;
    /* border-left: 2px solid #fd9a00;*/
    border-bottom: 1px solid #EEE!important;
    padding: 10px 10px 10px 40px!important;
}

.project .post-content__container>:last-child {
    margin-bottom: 0;
    border-top: 1px solid #EEE;
}

.a-task{
    padding-left: 5px;
    -webkit-transition: background 0.1s ease;
    -moz-transition: background 0.1s ease;
    -ms-transition: background 0.1s ease;
    -o-transition: background 0.1s ease;
    transition: background 0.1s ease;
}

.a-task:hover {
    background: #f6f6f6;
    color:#000;
}

.a-task-completed {
    /* border-left: 2px solid #4cc52d; */
    order: 1;
    color: #999;
}

.a-task-completed:before {
    content: '';
    left: 0;
    width: 23px;
    background-color: #b2ebe1;
    background-image: url(https://klikkracht.nl/wp-content/plugins/defakto-asana/assets/tick.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 3px;
    height: 23px;
    position: absolute;
    border-radius: 50%;
    border-color: #b2ebe1;
}

.project p {
    margin: 0 0 70px 18px;
    font-size: 18px;
}

.a-task.a-task-section {
    border-left: none;
    margin-top: 30px;
    font-weight: 600;
    font-style: italic;
}

.a-task.a-task-section:before {
    display:none;
}