.form-check {
	display: flex;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
	cursor: pointer;
	opacity: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.form-check-label {
	padding-top: 0.1rem;
}

.form-check-label {
	margin-bottom: 0;
	position: relative;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
}

.form-check label::before {
	content: "";
	cursor: pointer;
	display: inline-block;
	flex-shrink: 0;
	margin-right: 1rem;
	width: 30px;
	height: 30px;
	border: 2px solid #fecc00;
	border-radius: 3px;
}
.form-check:hover label::before{
	background-color: #fecc00;
}
.form-check input[type="checkbox"]:checked + label::after{
	content: " ";
	height: 30px;
	width: 30px;
	position: absolute;
	left: 0;
	background-image: url('../images/icon/check-solid.svg');
	background-size: 20px 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fecc00;
	border-radius: 3px;
}
.form-check:hover input[type="checkbox"]:disabled + label::before{
	background-color: inherit;
}
.form-check input[type="checkbox"]:disabled{
	cursor: inherit;
}
.form-check input[type="checkbox"]:disabled + label::before {
	border-color: #c1c1c1;
}
.form-check input[type="checkbox"]:checked[disabled] + label::after{
    opacity: 0.3;
	background-color: #c1c1c1;
}
