#CustomCheck {
	position: relative;
	width: 120px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background: #777; */
	cursor: pointer;
}
#CustomCheck::before {
	content: "";
	position: absolute;
	width: 60%;
	height: 4px;
	background: #444;
	border-radius: 4px;
}
#CustomCheck input {
	position: absolute;
	appearance: none;
}
#CustomCheck .icon {
	position: absolute;
	left: 0;
	width: 60px;
	height: 100%;
	/* background: #f00; */
	transition: 0.5s;
}
#CustomCheck input:checked ~ .icon {
	left: 60px;
}
#CustomCheck .icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background: linear-gradient(#fff, #fff, #e3e3e3);
	filter: blur(1px);
	z-index: 1;
}
#CustomCheck .icon::after {
	content: "";
	position: absolute;
	top: 0;
	right: -1px;
	width: 10px;
	height: 100%;
	background: #9d9d9d;
	filter: blur(1px);
}
#CustomCheck .sunlight {
	position: absolute;
	top: 30px;
	left: -12px;
	width: 84.85px;
	height: 300px;
	background: linear-gradient(180deg, rgb(0 0 0 / 10%), transparent, transparent);
	transform-origin: top;
	transform: rotate(315deg);
	pointer-events: none;
}
#CustomCheck .iconbox {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(#dbdae1, #a3aaba);
	box-shadow: 5px 5px 5px rgb(0 0 0 /10%),
	15px 15px 15px rgb(0 0 0 /10%),
	20px 20px 15px rgb(0 0 0 /10%),
	30px 30px 15px rgb(0 0 0 /10%),
	inset 1px 1px 2px #fff;
}
#CustomCheck .iconbox i {
	color: #555;
	font-size: 1.5em;
	transition: 0.5s;
}
#CustomCheck input:checked ~ .icon .iconbox i {
	color: #00ffe2;
	filter: drop-shadow(0 0 5px #00ffe2) drop-shadow(0 0 15px #00ffe2);
}
