/* Generic Styles */
* { margin: 0px; padding: 0px; }
body { background: #f8f8f8; color: #444; font-size: 14px; font-family: 'Lora', serif;}
ul li { display: inline; list-style-type: none; }
.left { float: left; }
.right { float: right; }
.clearfix { clear: both; }
.btn { text-decoration: none; display: block; padding: 0px 10px; border-bottom: 1px solid transparent; }
.btn:hover { border-bottom: 1px solid #444; }
.text-center { text-align: center; }
input[type="text"] { font-family: 'Lora' serif; }
.normal-btn { display: inline; }
a { cursor: pointer; }

.container { width: 900px; height: 100%; display: block; position: relative; margin: auto; }

/* Header */
.header-wrap { text-align: center; margin: 30px auto;}
.brand { margin: 5px 0px; display: block; }

/* Tasks Container */
.task { display: block; padding: 10px; line-height: 25px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; margin-bottom: 10px; /* cursor: move; */ -webkit-user-select: none; -ms-user-select:none; -op-user-select:none; user-select: none; font-size: 15px; border: 1px solid transparent; -webkit-transition: all 0.5s; }
.task-filters { margin-bottom: 10px; }
input.search-text { background: transparent; border: none; box-shadow: none; padding: 5px 0px; outline: none; width: 360px; font-style: italic; border-left: 2px solid #ccc; padding-left: 7px; }

.filter-btns { line-height: 25px;}
.filter-btns a { display: block; margin-left: 15px; text-decoration: none;}
.color-box { padding: 5px; display: block; margin-right: 5px; margin-top: 6px; border: 1px solid #444; cursor: pointer;}

/*.task:active { border: 1px dashed #444;}*/
.task-actions { position: relative; top: 10px; right: -10px; display: none; }
.task-actions .btn { margin-left: 5px;}
.task:hover { -webkit-transition: all 0.5s; }
.task:hover .task-actions { display: block; }

.create-task-container { margin-bottom: 15px; display: block; }
.create-task { border-left: 2px solid #ECDADA; }
.create-task ul { margin-left: 10px; }
.create-task ul .small-label { line-height: 24px; margin-right: 10px; font-size: 13px; }
.create-task .new-task-text { display: block; width: 100%; height: 34px; font-size: 14px; border: none; outline: none; padding-left: 10px; box-sizing: border-box; background: transparent; font-style: italic; display: block; }
.create-task .chosen-color { background: transparent; border: none; display: block; width: 70px; font-size: 14px; border-bottom: 2px solid #ccc; outline: none; position: relative; top: 4px; color: grey; text-align: center; font-style: italic; }
.submit-task { font-size: 12px; line-height: 22px; background: #777; color: white; margin-left: 8px; border-radius: 4px; margin-top: 0px; padding: 0px 26px; }
.submit-task:hover { background: #444 }

.task.completed-true { text-decoration: line-through; opacity: 0.7; }

.blackish-color { background: #333; color: #fefefe; }
.blackish-color a { color: #fefefe; }
.blackish-color a:hover { border-bottom: 1px solid #fefefe; }
.whitish-color { background: #cccccc; }
.grey-color { background: grey; color: #f3f3f3; }
.grey-color a { color: #f3f3f3; }
.grey-color a:hover { border-bottom: 1px solid #f3f3f3; }
.white-color { background: white; }