.check-container {
	margin-bottom: 12px;
	padding-left: 35px;
	display: block;
	position: relative;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.check-container input {
	width: 0;
	height: 0;
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.checkmark {
	/*width: 25px;
	height: 25px;*/
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	/*background-color: #eee;*/
	background-color: #f0f8ff;
	border: 1px solid #1f9cdb;
}
.check-container:hover input ~ .checkmark {background-color: /*#ccc*/#1f9cdb;}
.check-container input:checked ~ .checkmark {background-color: #2196F3;}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.check-container input:checked ~ .checkmark:after {display: block;}
.check-container .checkmark:after {
	width: 5px;
	height: 10px;
	/*left: 9px;
	top: 5px;*/
	left: 5px;
	top: 1px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}