@media only screen and (max-width: 962px){
	thead tr{ 
		display: none;
	}
    
    table td {
        display: flex;
    }

    table td, #tableRow{
        width: 95%;
    }
    
    #taskDeadlineDate,#taskDateRegistration,#taskDateImplemented{
        width: 80%;
    }
}

@media screen and (min-width: 962px){
    #tableRow,#taskDeadlineDate,#taskDateRegistration,#taskDateImplemented{
        display: none;
    }
}