.submoduleController .todo {
	position: relative;
}

.todo .half {
	height: 100%;
	width: 50%;
	float: left;
	
	position: relative;
	background: #EEEEEE;
	
	border-left: 2px solid #121316;
	
	box-sizing: border-box;
}

.todo .list {
	box-sizing: border-box;
	color: black;
	white-space: normal;
	padding: 60px 30px 145px 30px;
}

.todo .list hr {
	border-color: black !important;
	border-width: 1px;
	border-bottom: none;
}

.todo .list .title {
	font-size: 1rem;
	padding-left: 30px;
}

.todo .list .item {
	display: block;
	position: relative;
	padding: 20px;
}

.todo .list .item .backgroundHighlight {
	position: absolute;
	
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	opacity: 0;
}

.todo .list .item.tizenhovered .backgroundHighlight {
	opacity: 0.5;
}

.todo .list .item .itemContents {
	position: relative;
}

/* Clearfix */
.todo .list .item .itemContents::after {
	content: " ";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

.todo .list .item .itemContents .subject {
	font-size: 0.85rem;
}

.todo .list .item .itemContents .completedIndicator {
	float: left;
	width: 100px;
	height: 100px;
	background-image: url(/images/checkmark.svg);
	background-position: 0 0;
	background-size: 200% 100%;
	background-repeat: no-repeat;
	margin-left: -15px;
}

.todo .list .item .itemContents .completedIndicator::after {
	content: ' ';
	display: block;
	opacity: 0;
	background: lightgreen;
	margin: 32px;
	width: 36px;
	height: 36px;
}

.todo .list .item .itemContents .completedIndicator.tizenhovered::after {
	opacity: 0.5;
}

.todo .list .item .itemContents .completedIndicator.completed.tizenhovered::after {
	/*background: pink;*/
	opacity: 0;
}

.todo .list .item .itemContents .completedIndicator.completed {
	background-position: 100% 0;
}

.todo .list .item .itemContents .completedIndicator.loading::after {
	border-right: 8px solid lightgreen;
	background: transparent;
	border-radius: 20px;
	width: 22px;
	height: 22px;
	margin: 39px 35px;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-animation: spinner 0.6s linear 0s infinite;
	opacity: 1 !important;
}

.todo .list .item .itemContents .description {
	overflow: hidden;
	font-size: 0.7rem;
}

.todo .list .item .itemContents .assignedTo {
	float: right;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: white;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	border: 2px solid #222222;
	margin-right: 15px;
}

.todo .new {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 120px;
	height: 120px;
	border-radius: 60px;
	text-align: center;
	line-height: 140px;
	font-size: 90px;
	background: rgb(155,94,162);
	color: white;
}

.todo .new.tizenhovered {
	opacity: 1;
}

.todo .createBackground {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 50;
}

.todo .createDialog {
	position: relative;
	height: 100%;
	width: 50%;
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
	box-sizing: border-box;
	border: 4px solid #333333;
	background: #EEEEEE;
	
	color: #333333;
	
	overflow: hidden;
}

.todo .createDialog .topButton {
	position: absolute;
	top: 0;
	width: 80px;
	height: 80px;
	line-height: 50px;
	text-align: center;
	z-index: 51;
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
}

.todo .createDialog .topButton.small {
	width: 50px;
	height: 50px;
}

.todo .createDialog .topButton.back {
	left: 0;
	background-color: rgba(0, 0, 0, 0);
	background-image: url("/images/back.svg");
}

.todo .createDialog .topButton.back.small {
	width: 50px;
	height: 50px;
}

.todo .createDialog .topButton.close {
	right: 0;
	background-color: rgba(255, 125, 125, 0);
	background-image: url("/images/close.svg");
}

.todo .createDialog .topButton.close.small {
	width: 50px;
	height: 50px;
}

.todo .createDialog .topButton.back.tizenhovered {
	background-color: rgba(0, 0, 0, 0.5);
}

.todo .createDialog .topButton.close.tizenhovered {
	background-color: rgba(255, 125, 125, 0.5);
}

.todo .createDialog .dialogPage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	/*height: 88%;*/
}

.todo .createDialog .dialogPage .title {
	/*margin-top: 80px;*/
	font-size: 0.65rem;
	/*min-height: 30px;*/
}

.todo .createDialog .dialogPage .instructions {
	font-size: 1rem;
	/*min-height: 45px;*/
}

.todo .createDialog .list {
	padding: 0;
}

.todo .createDialog .listItem {
	display: block;
	
	text-transform: capitalize;
	
	font-size: 0.75rem;
	
	padding: 15px;
	
	background: rgba(0, 0, 0, 0);
}

.todo .createDialog .listItem.tizenhovered {
	background: rgba(0, 0, 0, 0.3);
}

.todo .createDialog .listItem .subject {
	font-size: 0.75rem;
}

.todo .createDialog .listItem .description {
	font-size: 0.6rem;
}

.todo .listLoading {
	height: 800px;
	
	position: relative;
}

.todo .listLoading .center {
	position: absolute;
	
	top: 50%;
	left: 50%;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.todo .add-button-text{
	width: 120px;
	font-size: 54px;
	height: 120px;
	display: block;
	line-height: 120px;
}