.delete, button {
	color: red;
	font-weight: bold;
}

button {
	border: 0;
	width: inherit;
	margin: 0.75em 0;
}

#shopping-list li:before, #bought-list li:before {
	content: "";
	display: inline-block;
	background-size: 100%;
	height: 0.9em;
	width: 1em;
	margin-right: 0.3em;
}

#shopping-list li:before {
	background-image: url("checkmark2.png");	/* Open Check */
}

#bought-list li:before {
	background-image: url("checkmark.png");		/* Closed Check */
}

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

li {
	color: #000000;								/* Black */
	padding: 0em;
	margin: 0.25em 0;
	position: relative;
	transition: background-color 0.2s;
}

.quantity {
	color: #0025F6;								/* Blue */
}

.uom {
	color: #0025F6;								/* Blue */
}

.quantity:before {								/* Begin parentheses for item quantity */
	content: "(";
}

.uom:after {									/* End parentheses for item quantity */
	content: ") ";
}

.delete {
	float: right;
	padding: inherit;
	position: absolute;
	right: 0;
	top: 0;
}

.delete:after {
	clear: both;
}

#bought-list li .quantity {
	color: #666666;								/* Grey */
}

.list__label {									/* Separator for Cart */
	border-bottom: 2px solid #FF0103;			/* Red */
	font-size: 0.75em;
	color: #000000;								/* Black */
	padding: 0;
}