/* CHECKBOX */
.checkbox
{
    color:#888b90;
	cursor:pointer;
	font-size:14px;
	line-height:18px;
	padding-left:50px;
	position:relative;
	user-select:none;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}

.checkbox:before
{
	border:3px solid #37383d;
	border-radius:10px;
	content:"";
	display:block;
	height:30px;
	left:0px;
	position:absolute;
	top:calc(50% - 18px);
	transition:border 0.25s, box-shadow 0.25s;
	width:30px;
}

.checkbox:hover:before
{
	border:3px solid #cffdff;
    box-shadow:inset 0px 0px 5px #01eff9, 0px 0px 5px #01eff9;
}

.checkbox:after
{
	border-bottom:3px solid #6b42de;
	border-right:3px solid #6b42de;
	content:"";
	display:block;
	height:16px;
	left:12px;
	opacity:0;
	position:absolute;
	top:calc(50% - 12px);
	transform:rotate(45deg);
	transition:opcaity 0.25s;
	width:8px;
}

.checkbox.selected:after
{
	opacity:1;
}