.checkbox-variant:before {
	line-height: 18px;
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	text-rendering: auto;
	transform: translate(0, 0);
}

.checkbox-variant {
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
	display: inline-block !important;
	vertical-align: middle;
	text-align: center;
	line-height: 21px;
	font-size: 12px;
	width: 20px;
	height: 20px;
	border-radius: 2px;
	position: relative;
	transition: border-color 1s;
}

.checkbox-variant:hover, .radio-replaced:hover {
	border-color: var(--textColor);
}

.checkbox-variant.active.disabled:before {
	color: #e4e4e4;
}

.checkbox-variant.disabled {
	border-color: var(--bdrColor);
	cursor: default;
	background: #f7f7f7;
	opacity: .7;
}

.checkbox-variant:before {
	content: "\f00c";
	color: var(--textColor);
	visibility: hidden;
	opacity: 0;
	font-weight: 700;
	text-align: center;
	margin-right: -1px;
}

.checkbox-variant.active:before {
	visibility: visible;
	opacity: 1;
	transform: scale(1)
}


/*animace*/

.checkbox-variant:before {
	transform: scale(2);
	transition: .1s ease-in-out;
}

.hasError .checkbox-replaced {
	border: 1px solid #c20900;
}
