body {
	font-family: 'Roboto Light', sans-serif;
	background-color: gainsboro;

	/*font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
    /*line-height: 1.4em;*/
}

.todo-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: auto;

	margin-right: auto;
	max-width: 960px;

	padding-right: 10px;
	padding-left: 10px;
	padding-top: 20px;
}

.main-heading {
	font-size: 70pt;
	font-weight: 100;
	color: rgba(175, 47, 47, 0.15);
}

.main-heading.bold {
	font-weight: bold;
}

.todo-panel {
	margin-top: 30px;
	background-color: ghostwhite;
	/*border: 1px solid rgba(175, 47, 47, 0.15);*/
	/*box-shadow: none|h-offset v-offset blur spread color |inset|initial|inherit;*/
	/*box-shadow: 2px 7px 5px rgba(175, 47, 47, 0.15);*/
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
}

.todo-footer {
	display: flex;
	padding: 12px;
	/*border-top: 3px solid rgba(175, 47, 47, 0.15);*/

	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 
	0 8px 0 -3px #f6f6f6, 
	0 9px 1px -3px rgba(0, 0, 0, 0.2), 
	0 16px 0 -6px #f6f6f6, 
	0 17px 2px -6px rgba(0, 0, 0, 0.2);
}

.todo-body {
}

.todo-header {
	padding: 12px;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;

}

textarea:focus, input:focus{
    outline: none;
}
.mark-all-done-btn {
	color:gainsboro;
	position: relative;
	top: 4px;
}

.mark-all-done-btn:hover {
	color:darkslategray;
	cursor: pointer;
}

.todo-input {
	border: none;
	width: 500px;
	background-color: transparent;
	height: 28px; 
	font-size: 24px; 
	font-weight: bold !important;
	padding: 7px 5px;
}

.todo-input::-webkit-input-placeholder {
  font-style: italic;
  color: gainsboro;
}

.todo-input:-ms-input-placeholder {
  font-style: italic;
  color: gainsboro;
}

.todo-input:-moz-placeholder {
  font-style: italic;
  color: gainsboro;
}

.todo-input::-moz-placeholder {
  font-style: italic;
  color: gainsboro;
}

.small-text {
	font-size: 14px;
	font-weight: 100;
	color: gray;
}

.small-text.btn {
	cursor: pointer;
}

.small-btn {
	margin-left: 5px;
	padding: 0px 7px;
	cursor: pointer;
}

.small-btn.active {
	border: 1px solid rgba(175, 47, 47, 0.15);
	border-radius: 2px;
	padding-top: 3px;
    padding-bottom: 3px;
    position: relative;
    top: -3px;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.todo-item {
	/*border: 1px solid black;*/
	display: flex;
	align-items: center;
	padding: 10px 12px;
	border-bottom: 1px solid #ededed;
	box-shadow: inset 0 -2px 1px rgba(0,0,0,0.03);
	z-index: 999999;
}



.todo-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
	border: 1px solid #BDBDBD;
	border-radius: 50%;
	width: 30px;
	height: 30px;
}

.todo-item-text {
	display: block;
	width: 100px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;

	font-weight: lighter;
	font-size: 28px;
	line-height: 1.4em;
	color: #9E9E9E;
}

.todo-item-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #BDBDBD;
	border: 1px solid #BDBDBD;
	border-radius: 50%;
	width: 20px;
	height: 20px;
}
.check-box {
	color: #B0BEC5;
}

.hide {
	display: none;
}

.todo-item:hover  .todo-item-remove>.hide {
	display: block;
}

.todo-item-text.done {
	-webkit-text-decoration-line: line-through; /* Safari */
   text-decoration-line: line-through; 
   color: #E0E0E0;
}


footer {
	margin-top: 12px;
	padding-top: 40px;
	text-align: center;
}

footer>p {
	font-size: 9px;
	font-weight: lighter;
   	color: #9E9E9E;
}


