/**
 * Check box component css objects.
 *
 * @author		ivo.fortes@maria-design.pt
 * @date		2019-07-17
 * @version		1.1
 */
.maria_design-component-check_box {
	width: 100%;
	/*min-height: 30px;
	line-height: 30px;*/
	position: relative;
}

.maria_design-component-check_box>label {
	padding: 0 5px 0 5px;
	font-size: 12px;
	font-weight: bold;
}

.maria_design-component-check_box>input {
	width: 20px;
	height: 20px;
	line-height: 21px;
	/*border: 1px solid #777777;*/
	cursor: pointer;
	border-radius: 10px;
	margin-right: 5px;
}

.maria_design-component-check_box>input:focus {
    outline: none;   
}

label[for='task_private'] {
	padding: 0;
    margin-bottom: 0;
    position: absolute;
    top: 2px;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	 -khtml-user-select: none; /* Konqueror HTML */
	   -moz-user-select: none; /* Old versions of Firefox */
		-ms-user-select: none; /* Internet Explorer/Edge */
			user-select: none; /* Non-prefixed version, currently
								  supported by Chrome, Edge, Opera and Firefox */
}

input[type=checkbox] {
	-moz-appearance:none;
	-webkit-appearance:none;
	-o-appearance:none;
	outline: none;
	content: none;	
}

input[type=checkbox]:before {
	font-family: "FontAwesome";
    content: "\f00c";
    font-size: 15px;
    color: transparent !important;
    background: #ffffff;
    display: block;
    width: 20px;
    height: 20px;
    border: none;
    margin-right: 7px;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	border-radius: 7px;
}

input[type=checkbox]:checked:before {
	color: #ffffff !important;
	background-color: #ed1c4d;
}