.custom-checkbox {
	position: relative;
	padding-left: 16px;
	cursor: pointer;
}

.custom-checkbox--disabled {
	cursor: not-allowed;
}

.custom-checkbox:before {
	content: "";
	display: block;
	border: 1px solid #b6b6b6;
	border-radius: 1px;
}

.custom-checkbox:before,
.custom-checkbox:after {
	content: "";
	position: absolute;
	display: block;
	top: 2px;
	left: 0;
	width: 16px;
	height: 16px;
	background-position: center;
	background-repeat: no-repeat;
}

.custom-checkbox:not(.custom-checkbox--disabled):hover:before {
	border-color: #5774e7;
}

.custom-checkbox--disabled:before,
.custom-checkbox--disabled:after,
.custom-checkbox--disabled .custom-checkbox__label {
	opacity: 0.4;
}

.custom-checkbox--checked:after {
	background-image: url("../../../../images/shared/check.svg");
}

.custom-checkbox--indeterminate:after {
	background-image: url("../../../../images/shared/severalChecked.png");
}

.custom-checkbox__label {
	color: #4a4a4a;
	font-size: 14px;
	line-height: 20px;
}

.custom-checkbox__label:not(:empty) {
	margin-left: 10px;
}
