@charset "ISO-8859-1";

/* Include the padding and border in an element's total width and height */
div.analyzesList * {
	box-sizing: border-box;
}

/* Remove margins and padding from the list */
div.analyzesList ul {
	padding: 0;
	margin-top: 10px;
	margin-bottom: 10px;
}

/* Style the list items */
div.analyzesList ul li {
	cursor: pointer;
	position: relative;
	padding: 12px 48px 12px 12px;
	background: #e4f5f2;
	font-size: 15px;
	transition: 0.2s;
	/* make the list items unselectable */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 2px;
}

/* Set all odd list items to a different color (zebra-stripes) */
div.analyzesList ul li:nth-child(odd) {
	background: #cee1de;
}

/* Darker background-color on hover */
/* div.analyzesList ul li:hover {
	background: #ddd;
} */

/* When clicked on, add a background color and strike out text */
div.analyzesList ul li.checked {
	background: #888;
	color: #fff;
	text-decoration: line-through;
}

/* Add a "checked" mark when clicked on */
div.analyzesList ul li.checked::before {
	content: '';
	position: absolute;
	border-color: #fff;
	border-style: solid;
	border-width: 0 2px 2px 0;
	top: 10px;
	left: 16px;
	transform: rotate(45deg);
	height: 15px;
	width: 7px;
}

/* Style the close button */
div.analyzesList .close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 12px 16px 12px 16px;
}

/* div.analyzesList .close:hover {
	background-color: #f44336;
	color: white;
} */
div.analyzesList .close {
	background-color: #187060;
	color: white;
	height: 100%;
	/* border: solid 2px #e4e4e4; */
}
