<style>
input {
width: 250px;
}
</style>
<input type="date" id='simpledata'>
<script>
function listener(e) {
// console.log(e)
// console.log(`offsetX: ${e.offsetX} offsetY: ${e.offsetY} `);
if (e.offsetX < 84) {
console.log("click in date");
} else if (232 > e.offsetX && e.offsetX > 84) {
console.log("blank");
} else {
console.log("click calendar");
}
}
var data = document.getElementById("simpledata");
data.addEventListener("click", listener);
</script>
.fa-gears {
border: 2px solid red;
width: 30px;
height: 30px;
font-size:24px;/*поиграйтесь размерами*/
}
.work_item{
width: 279px;
height: 205px;
border-radius: 30px;
background-color: #3DDABE;
margin: 0.5em;
background-image: url('https://icatcare.org/app/uploads/2018/07/Thinking-of-getting-a-cat.png');
background-size: cover;
}