.todoTemplateModule{
	position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 12;
}
.todoTemplateModule .background{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}
.todoTemplateModule .content{
	position: relative;
    width: 1300px;
    background: #00000073;
    margin: 50px auto;
    min-height: 170px;
    border: 2px solid #fff;
    border-radius: 4px;
}
.todoTemplateModule .content .topArea{
	height: 50px;
    /*background: var(--trackrHeaderColor);*/
    position: relative;
}
.todoTemplateModule .content .topArea .topAreaTitle{
	color: #fff;
    font-size: 21px;
    margin: auto;
    width: 760px;
    text-align: center;
    line-height:50px;
}
.todoTemplateModule .content .topArea .topAreaTitle .taskNameTitle{
    opacity: 0.6;
    font-size: 17px;
}
.todoTemplateModule .content .topArea .todoTemplatePicklistHolder{
	font-size: 18px;
    margin: 0px auto;
    width: 180px;
    position: absolute;
    top: 9px;
    right: 10px;
}
.todoTemplateModule .content .topArea .todoTemplatePicklistHolder .todoTemplatePicklist{
	height: 30px;
    background: none;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
}

.todoTemplateModule .content .messageHolder{
    color: #ffffffab;
    text-align: center;
    border-radius: 20px;
    padding: 10px;
    width: 730px;
    margin: 10px auto 20px;
    background: #666;
    display: none;
}
.todoTemplateModule.hasMessageText .content .messageHolder{
    display: block;
}
.todoTemplateModule .content .messageHolder .header{
    height: 20px;
    line-height: 20px;
    padding-bottom: 30px;
    font-size: 17px;
    color: #fff;
    border-bottom: 1px solid #ffffff40;
}
.todoTemplateModule .content .messageHolder div{
    margin-bottom:5px;
}
.todoTemplateModule .content .todosHolder{
	min-height: 300px;
    margin: 60px auto 0px;
    width: 1230px;
}
.todoTemplateModule .content .todosHolder .templateTodo{
	clear: both;
    padding: 15px 10px 10px;
    border: 2px solid #000;
    background: #fff;
    position: relative;
    overflow: auto;
    border-radius: 4px;
    width: 1230px;
    margin-bottom: 10px;
}
.todoTemplateModule .content .todosHolder .templateTodo .todoIcon{
    float: left;
    font-size: 24px;
    margin-right: 10px;
    opacity: 0.5;
    position: relative;
    top: -3px;
}
.todoTemplateModule .content .todosHolder .templateTodo .todoName{
	float: left;
    width: 670px;
    position: relative;
    top: -2px;
    border: 1px solid #ccc;
    line-height: 20px;
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-right: 30px;
    min-height: 30px;
    top: -1px;
    border-radius: 4px
}
.todoTemplateModule .content .todosHolder .templateTodo .todoName .todoNameInput{
	width: 830px;
    padding: 0px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    line-height: 28px;
    
}
.todoTemplateModule .content .todosHolder .templateTodo .todoDate{
	float: left;
    width: 180px;
    position: relative;
    top: -2px;
}
.todoTemplateModule .content .todosHolder .templateTodo .todoDate .todoDateInput{
	line-height: 28px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 10px;
    width: 150px;
}
.todoTemplateModule .content .todosHolder .templateTodo .todoAssignedTo{
	position: relative;
	float:left;
}
.todoTemplateModule .content .todosHolder .templateTodo .todoAssignedTo .todoAssignedToSelect{
	border: 1px solid #ccc;
    border-radius: 5px;
    height: 28px;
}
.todoTemplateModule .content .todosHolder .templateTodo .todoHours{
    float: left;
    width: 49px;
    border: 1px solid #ccc;
    background: none;
    border-radius: 4px;
    line-height: 26px;
    margin-left: 25px;
}
.todoTemplateModule .content .todosHolder .templateTodo .todoHours .todoHoursInput{
    width: 100%;
    border: none;
    padding: 0px 5px;
    text-align: center;
}
.todoTemplateModule .content .todosHolder .templateTodo .todoDeleteBtn{
	position: absolute;
    right: 10px;
    top: 11px;
    font-size: 25px;
    cursor: pointer;
}
.todoTemplateModule .bottomArea{
	height: 70px;
    position: relative;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e4e4e4;
    padding-top: 5px;
    padding-bottom: 10px;
}
.todoTemplateModule .addTemplateTodoBtn{
	width: 40px;
    height: 40px;
    background: var(--trackrDarkBlueColor);
    color: #fff;
    text-align: center;
    border-radius: 30px;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    left: 10px;
}
.todoTemplateModule .todoTemplateSubmitBtn{
	background: var(--positiveColor);
    color: #fff;
    width: 130px;
    text-align: center;
    line-height: 40px;
    font-size: 19px;
    border-radius: 4px;
    margin: 10px auto;
    cursor: pointer;
}