/*
 * Bite Checkbox v1.0.0-alpha
 * Copyright 2018
 * Authors:
 *		Douglas Ferreira da Cunha
 */


.bite-checkbox {
	height:17px;
}
.bite-checkbox>input {
	display:none;
}
.bite-checkbox>label {
	display:block;
	height:17px;
	line-height:17px;
	margin:0;
	padding-left:22px;
	position:relative;
	width:100%;
}
.bite-checkbox>input:disabled+label {
	opacity:0.65;
}
.bite-checkbox>label:before {
	background-color:#FFF;
	content:'';
	cursor:pointer;
	border:1px solid rgba(0, 0, 0, 0.15);
	border-radius:3px;
	display:block;
	height:17px;
	left:0;
	position:absolute;
	width:17px;
}
.bite-checkbox>input:disabled+label:before {
	background-color:#e9ecef;
    cursor:not-allowed;
}
.bite-checkbox>label:after {
	content:'\f00c';
	color:#000;
	cursor:pointer;
	display:none;
	font:normal normal normal 14px/1 FontAwesome;
	height:17px;
	left:0;
	line-height:17px;
	position:absolute;
	text-align:center;
    text-rendering:auto;
    top:0;
    width:17px;
    -webkit-font-smoothing:antialiased;
}
.bite-checkbox>input:checked+label:after {
	display:block;
}
