
.todoPopup{
	position: fixed;
    top: 0px;
    left:0px;
    width: 100%;
    height:100%;
    z-index: 11;
}
.todoPopup .background{
	position: absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	background: #000;
	opacity:0.6;
}
.todoPopup .content{
	position: relative;
    margin: 20px auto 0px;
    width: 1200px;
    height: 95%;
    background: #fff;
    overflow: auto;
    z-index: 10;
    border: 2px solid #fff;
    border-radius: 4px;
}
.todoPopup .content{

}
.todoPopup .content .header{
	background: var(--trackrHeaderColor);
    color: #fff;
    text-align: left;
    font-size: 20px;
    border-bottom: 2px solid #000;
    line-height: 60px;
    height:60px;
}
.todoPopup .content .header .todoViewPicklist{
    display:none;
    position: absolute;
    left: 15px;
    top: 16px;
    background: none;
    color: #fff;
    font-size: 18px;
    z-index: 1;
}
.todoPopup .content .header .label{
	text-align: center;
    width: 100%;
    position: absolute;
}
.todoPopup .content .header .newTodoBtn{
	position: absolute;
    top: 0px;
    right: 20px;
    font-size: 40px;
    line-height: 55px;
    cursor:pointer;
}
.todoPopup .content .tabsHolder{
    overflow: auto;
    position: absolute;
    top: 10px;
    width: 200px;
    left: 20px;
}
.todoPopup .content .tabsHolder .tab{
    float: left;
    width: 50%;
    text-align: center;
    line-height: 40px;
    background: none;
    color: #fff;
    opacity: 0.5;
    cursor: pointer;
}
.todoPopup .content .tabsHolder .tab.selected{
    background: #a58bc9;
    color: #fff;
    opacity: 1;
    border-radius: 4px;
}
.todoPopup .content .todoFilterBtnsHolder{
    width: 300px;
    margin: 20px auto 20px;
    border-radius: 20px;
    overflow: hidden;
    background: #e6e6e6;
}
.todoPopup .content .todoFilterBtnsHolder .filterBtn{
    float: left;
    width: 100px;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
}
.todoPopup .content .todoFilterBtnsHolder .filterBtn.selected{
    background: #694c937a;
    color:#fff;
}


.todoPopup .content .createQuickTodoHolder{
    margin: 10px 0px 0px;
    background: #ebebeb;
    padding: 15px 0px;
    position: relative;
}
.todoPopup .content .createQuickTodoHolder .createQuickTodoInput{
    width: 720px;
    margin: auto;
    border-radius: 4px;
    border: 1px solid #d4d4d4;
    line-height: 20px;
    padding: 10px 10px;
    background: #fff;
}
.todoPopup .content .createQuickTodoHolder .createQuickTodoSubmitBtn{
    position: absolute;
    top: 20px;
    right: 140px;
    background: #b9b9b9;
    color: #fff;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
}



.todoPopup .content .allTodosHolder{
	min-height: 500px;
    max-height: 610px;
    height:610px;
}
.todoPopup .content .allTodosHolder .title{
    background: #4c4c4c;
    color: #fff;
    line-height: 40px;
    padding-left: 20px;
}
.todoPopup .content .todosHolder .todoHolder{
    position: relative;
    clear: both;
    border-bottom: 1px solid #dadada;
    padding: 10px 0px 0px;
    overflow: auto;
    min-height: 50px;
    background:#fff;
}
.todoPopup .content .todosHolder .todoHolder.fromMe{
    background: #e6e6e6;
    border-bottom: 1px solid #c3c3c3;
}
.todoPopup .content .todosHolder .todoHolder.currentlyEditing{
    background:#dadada;
}
.todoPopup .content .todosHolder .todoHolder .priorityBtn{
    color: #fff0;
    position: absolute;
    height: 100%;
    width: 20px;
    background: #fff;
    top: 0px;
    cursor: pointer;
    background: #efefef;
    background: #fff;
    border-right: 1px solid #b3b3b3;
}
.todoPopup .content .todosHolder .todoHolder.highPriority .priorityBtn{
    background: #a58bc9;
}
.todoPopup .content .todosHolder .todoHolder.lowPriority .priorityBtn{
    background: #d6d6d6;
}





.priorityBtnPopup{
    position: fixed;
    z-index: 11;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.priorityBtnPopup .background{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.3;
}
.priorityBtnPopup .content{
    position: absolute;
    background: #fff;
    border: 2px solid #000;
    width: 130px;
    text-align: center;
}
.priorityBtnPopup .priorityLevel{
    border-bottom: 1px solid #d0d0d0;
    cursor: pointer;
    line-height: 40px;
}
.priorityBtnPopup .priorityLevel:hover{
    color:var(--trackrBlueColor);
}






.todoPopup .content .todosHolder .todoHolder .leftBox{
    float: left;
    width: 30px;
    margin-left: 30px;
}
.todoPopup .content .todosHolder .todoHolder .middleBox{
    float:left;
    width: 625px;
    margin-right: 15px;
}
.todoPopup .content .todosHolder .todoHolder .todoHours{
    border: 1px solid #d0d0d0;
    float: left;
    width: 60px;
    height: 22px;
    text-align: center;
    border-radius: 4px;
    margin-right: 15px;
}
.todoPopup .content .todosHolder .todoHolder .todoHours.zero{
    visibility: hidden;
}
.todoPopup .content .todosHolder .todoHolder .middleBox2{
    float:left;
    width: 300px;
    margin-right: 15px;
    position: relative;
    top: -5px;
}
.todoPopup .content .todosHolder .todoHolder .rightBox{
    float:left;
}
.todoPopup .content .todosHolder .todoHolder .todoCheckbox{
    visibility: hidden;
}
.todoPopup .content .todosHolder .todoHolder .todoQuestionbox{
    display: none;
    font-size: 21px;
    position: relative;
    left: -3px;
    cursor: pointer;
    top: 1px;
    color: #6e6e6e;
}
.todoPopup .content .todosHolder .todoHolder.question .todoCheckbox{
    display: none;
}
.todoPopup .content .todosHolder .todoHolder.question .todoQuestionbox{
    display: block;
}
.todoPopup .content .todosHolder .todoHolder.fromMe .todoCheckbox{
    visibility: hidden;
}
.todoPopup .content .todosHolder .todoHolder .todoCircleCheckbox{
    position: absolute;
    top: 9px;
    left: 29px;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 1px solid #a5a5a5;
    border-radius: 20px;
    cursor: pointer;
}
.todoPopup .content .todosHolder .todoHolder.fromMe .todoCircleCheckbox{
    /*visibility: hidden;*/
}
.todoPopup .content .todosHolder .todoHolder .todoCircleCheckbox .innerCheckedCircle{
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #747474;
    border-radius: 10px;
    display: none;
}
.todoPopup .content .todosHolder .todoHolder.isComplete .todoCircleCheckbox .innerCheckedCircle{
    display: block;
}
.todoPopup .content .todosHolder .todoHolder .todoCircleCheckbox:hover .innerCheckedCircle{
    display: block;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
}

.todoPopup .content .todosHolder .todoHolder .todoName{
    white-space: pre-line;
    margin-bottom:10px;
}
.todoPopup .content .todosHolder .todoHolder .todoAssignedToName{
    border: 1px solid #808080;
    float: left;
    padding: 0px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.todoPopup .content .todosHolder .todoHolder .todoAssignedToName.hide{
    display:none;
}
.todoPopup .content .todosHolder .todoHolder .todoProject{
    color: var(--trackrDarkBlueColor);
    height:20px;
    opacity:1;
    overflow:hidden;
    cursor:pointer;
    transition:height 300ms ease, opacity 300ms ease;
}
.todoPopup .content .todosHolder .todoHolder:hover .todoProject{
    height:20px;
    opacity:1;
    transition:height 300ms ease, opacity 300ms ease;
}
.todoPopup .content .todosHolder .todoHolder .todoTask{
    height:20px;
    opacity:1;
    overflow:hidden;
    transition:height 300ms ease, opacity 300ms ease;
}
.todoPopup .content .todosHolder .todoHolder:hover .todoTask{
    height:20px;
    opacity:1;
    transition:height 300ms ease, opacity 300ms ease;
}
.todoPopup .content .todosHolder .todoHolder .todoDate{
    padding: 4px 7px;
}
.todoPopup .content .todosHolder .todoHolder.pastDue .todoDate{
    background: var(--negativeColor);
    color: #fff;
    border-radius: 4px;
}
.todoPopup .content .todosHolder .todoHolder .todoDeleteBtn{
    cursor: pointer;
    font-size: 13px;
    margin-top: 0px;
    text-align: center;
    width: 71px;
    color: #ff585e;
    background: #fff;
    opacity: 0;
    position: absolute;
    transition: opacity 300ms ease;
    bottom: 5px;
    right: 60px;
}
.todoPopup .content .todosHolder .todoHolder.fromMe .todoDeleteBtn{
    /*visibility: hidden;*/
}
.todoPopup .content .todosHolder .todoHolder.editable:hover .todoDeleteBtn{
    opacity:1;
    transition: opacity 300ms ease;
}

.todoPopup .content .todosHolder .todoHolder .todoEditBtn{
    position: absolute;
    top: 9px;
    right: 2px;
    font-size: 18px;
    /*background: #fff;*/
    height: 30px;
    width: 30px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 300ms ease;
    border-radius: 20px;
}
.todoPopup .content .todosHolder .todoHolder.editable:hover .todoEditBtn{
    opacity:1;
    transition: opacity 300ms ease;
}






/* --- New Todo Popup --- */

.newToDoPopup{
	position: fixed;
    right: 350px;
    top: 120px;
    right:0px;
    top:0px;
    width: 370px;
    background: #fff;
    border: 2px solid #000;
    height: 530px;
    height:100%;
    z-index: 11;
}
.newToDoPopup .header{
	text-align: center;
    background: var(--secondaryToolColor);
    color: #fff;
    line-height: 50px;
    font-size: 19px;
    margin-bottom: 20px;
}
.newToDoPopup .header .label{

}
.newToDoPopup .header .todoMoreBtnHolder{
    position: absolute;
    right: 15px;
    top: 0px;
    font-size: 27px;
    cursor: pointer;
}
.newToDoPopup .header .todoMoreOptionsHolder{
    display: none;
    position: absolute;
    top: 40px;
    right: 0px;
    background: var(--secondaryToolColor);
    border: 4px solid #000;
    cursor: pointer;
    width: 180px;
}
.newToDoPopup .header .todoMoreOptionsHolder .todoMoreOptionBtn{
    position: relative;
    text-align: left;
    margin-left: 20px;
}
.newToDoPopup .header .todoMoreOptionsHolder .todoMoreOptionBtn .deleteIcon{
    position: absolute;
    right:10px;
}
.newToDoPopup .content{

}
.newToDoPopup .todoTypeBtnsHolder{
    background: #d3d3d3;
    height: 30px;
    width: 170px;
    margin: -5px auto 30px;
    border-radius: 24px;
    clear: both;
    overflow: hidden;
}
.newToDoPopup .todoTypeBtnsHolder .todoTypeBtn{
    float: left;
    width: 50%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    cursor:pointer;
}
.newToDoPopup .todoTypeBtnsHolder .todoTypeBtn.selected{
    background: #694c937a;
}
.newToDoPopup .inputHolder{
	width: 320px;
    clear: both;
    margin-bottom: 0px;
    min-height: 55px;
    margin-left: 30px;
}
.newToDoPopup .inputHolder .label{
	float: left;
    width: 100px;
    position: relative;
    top: 10px;
}
.newToDoPopup .inputHolder select{
	width: 210px;
    float: left;
    border: 2px solid #c7c7c7;
    border-radius: 4px;
    color: #616161;
    height: 40px;
}
.newToDoPopup .inputHolder .todoProjectInput{
    border: 2px solid #c7c7c7;
    height: 39px;
    width: 210PX;
    border-radius: 4px;
    padding: 0px 10px;
}
.newToDoPopup .inputHolder .dueDateInput{
	width: 210px;
    border: 2px solid #c7c7c7;
}
.newToDoPopup .inputHolder .toDoDescriptionTextArea{
	border: 2px solid #c7c7c7;
    width: 310px;
    border-radius: 4px;
    float: none;
    margin-top: 18px;
    height: 150px;
    padding:10px;
}
.newToDoPopup .inputHolder .toDoDescriptionTextArea::placeholder{

}
.newToDoPopup .inputHolder.needsReceipt{
    margin-top:20px;
}
.newToDoPopup .inputHolder .needsReceiptCheckbox{
    position: relative;
    top: 8px;
    left: 10px;
    width: 27px;
    height: 23px;
}
.newToDoPopup .inputHolder.hours{

}
.newToDoPopup .inputHolder.hours .todoHoursInput{
    border: 2px solid #c7c7c7;
    height: 39px;
    width: 105PX;
    border-radius: 4px;
    padding: 0px 10px;
}
.newTodoPopup .inputHolder .todoDeleteBtn{

}
.newToDoPopup .newToDoSubmitBtn{
	background: var(--positiveColor);
    color: #fff;
    width: 100px;
    border-radius: 4px;
    line-height: 50px;
    font-size: 19px;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
    position: absolute;
    bottom: 0px;
    left: 50px;
}
.newToDoPopup .newToDoSubmitBtn.disabled{
	opacity:0.5;
}
.newToDoPopup .newTodoCancelBtn{
   background: #dedede;
    color: #9a9a9a;
    width: 100px;
    border-radius: 4px;
    line-height: 50px;
    font-size: 19px;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
    position: absolute;
    bottom: 0px;
    left: 220px;
}

