


body {
	margin: 0;
	min-width: 250px;

}

h2 {
	margin: 5px;
	margin-bottom:40px;
	margin-top:10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 2.0em;
	text-align: center;

}

/* Include the padding and border in an element's total width and height */
* {
  box-sizing: border-box;
}

ul {
	margin: 0;
	padding: 0;
	font-size: 1.2em;
	margin-top: 15px;
	display: inline;
	display: -webkit-inline;
	vertical-align: bottom; 
}

#list {
	height: 0px;
	overflow: auto;
}

/* Style the list items */
ul li {
	cursor: pointer;
	position: relative;
	padding: 12px 180px 12px 10px;
	list-style-type: none;
	background:  #e6e6e6;
	font-size: 1.5em
	transition: 0.2s;
	overflow: hidden;

	/* make the list items unselectable */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Set all odd list items to a different color (zebra-stripes) */
ul li:nth-child(even) {
	background: #8c8c8c;
}

/* Yellow background-color on hover */
ul li:hover {
	background:  #ffff33;
}

/* When clicked on, add a background color and strike out text */
ul li.checked {
	background:  #888;
	color: #fff;
	text-decoration: line-through;
	text-decoration-color: red;
}

.close .checked {
	background-color: "red";
}

/* Add a "check mark" when clicked on */
ul li.checked::before {
	content: '';
	position: absolute;
	border-color:  red;
	border-style: solid;
	border-width: 0px 2px 2px 0px;
	top: 10px;
	left: 16px;
	transform: rotate(45deg);
	height: 15px;
	width:  7px;

}

.close {
  position: absolute;
  right: 0;
  left: 1;
  top: 0;
  padding: 12px 16px 12px 16px;
}

/* Close button is hovered on */
.close:hover {
	background-color: #f44336;
	color: white;
}

.date {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1000;
	right: 0;
  padding: 16px 40px 12px 16px;
	font-size:0.6em;
}

/* Style the header */
.header {
	background-color: #333333;
	padding: 30px 40px;
	color: white;
	text-align: center;
	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
}

/* Clear floats after the header */
.header:after {
	content: "";
	display: table;
	clear: both;

}

/* Style the input */
input {
	font-size: 1.4em;
	margin: 0;
	border: none;
	border-radius: 0;
	width: 75%;
	padding: 10px;
	float: left;
	/*font-size: 16px;*/
}

/* Style the "Add" button */
.addBtn {

	font-size: 1.4em;
	font-weight: bold;
	margin-left:10px;
	padding: 10px;
	width: 22%;
	background: #0000cc;
	color: #ffffff;
	float: left;
	text-align: center;
/*	font-size: 16px;*/
	cursor: pointer;
	transition: 0.3s;
	border-radius: 10px;
}

/* Add button when hovered */
.addBtn:hover {
	background-color: #ff3333;
}

