/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* */

body {
	font-family: "Arial", sans-serif;
	background-image: url("../img/test_task_view slice.png");
	background-repeat: round;
}

/* header */

header {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 80px;
}

header h1 {
	margin-top: 80px;
	font-size: 36px;
	font-weight: bold;
}


/* todo */

.todo {
	margin-bottom: 50px;
}

.todo-head {
	background-color: #4476B1;
	color: #fff;
	padding: 15px 15px;
}

.todo-header {
	padding-top: 4px;
}

.fa.fa-list-alt {
	float: left;
	margin-left: -15px;
	margin-right: 15px;
	color: #98B0D2;
	font-size: 25px;
}

.addTask {
	background-color: #DDDDDD;
	padding: 10px 15px;
	font-size: 14px;
}


.fa.fa-plus {
	color: #598F71;
	padding-right: 15px;
	font-size: 25px;
	vertical-align: middle;
}

input[type="text"] {
	width: 78%;
	height: 30px;
	padding-left: 10px;
}

.addTask button {
	width: 16%;
	height: 30px;
	background-color: #598F71;
	color: #fff;
	border: none;
	border-radius: 0 8px 8px 0;
	margin-left: -5px;
}

.task {
	height: 100%;
	padding: 15px 15px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	position: relative;
	background-color: #fff;
}

.task:last-child {
	border-radius: 0px 0px 8px 8px;
}

.task:hover {
	background-color: #FCFED5;
}

input[type="checkbox"] {
	float: left;
	clear: both;
	margin-right: 35px;
}

.task-text {
	margin-left: 10px;
}

.line, .line2, .line3 {
	height: 100%;
	border-left: 1px solid #EFDADF;
	float: left;
	position: absolute;
	top:0;
	
}

.line3 {
	height: 100%;
	border-left: 1px solid #E7EBEA;
	float: right;
	position: absolute;
	top:0;
}

.line {
	left: 42px;
}

.line2 {
	left: 47px;
}

.line3 {
	left: 82%;
}

.fa.fa-sort, .fa.fa-pencil, .fa.fa-trash {
	color: #999999;
	visibility: hidden;
}

.todo-head>.container>.row>.col-md-2>.fa.fa-pencil, .todo-head>.container>.row>.col-md-2>.fa.fa-trash, .todo-head>.container>.row>.col-md-2>.line-between-icons {
	color: #98B0D2;
}

.todo-head>.container>.row>.col-md-2>.fa.fa-pencil {
	margin-left: 60px;
}

.line-between-icons {
	padding-left: 10px;
	padding-right: 5px;
	color: #999999;
	visibility: hidden;
}


/* general styles for all CSS Checkboxes */

label {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
float: left;
}

input[type=checkbox].css-checkbox {
	  position: absolute; 
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height:1px; 
    width:1px; 
    margin:-1px; 
    padding:0;
    border:0;
}

input[type=checkbox].css-checkbox + label.css-label {
	padding-left:20px;
	height:15px; 
	display:inline-block;
	line-height:15px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:15px;
	vertical-align:middle;
	cursor:pointer;
}

input[type=checkbox].css-checkbox:checked + label.css-label {
	background-position: 0 -15px;
}

.css-label{
	background-image:url(http://csscheckbox.com/checkboxes/dark-check-green.png);
}

.mac-style{background-image:url(http://csscheckbox.com/checkboxes/mac-style.png);}

/* add todo */

.btn-add-todo {
	background-color: #4476B1;
	border: none;
	padding: 6px 10px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 80px;
	border-radius: 4px 4px 4px 4px;
}

.btn-add-todo .fa.fa-plus {
	color: #354971;
	padding-right: 10px;
	font-size: 32px;
}

.btn-add-todo-text {
	vertical-align: middle;
	padding-right: 20px;
}

footer {
	text-align: center;
	color: #fff;
	margin-bottom: 70px;
}



