

/**
*	Custom Input
*
*/
.custom-radio,
.custom-checkbox {
	font-size: 15px;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	display: block;
}


/**
*	Custom Radio
*
*/
.custom-radio > input[type="radio"] {
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	right: 0;
}

.custom-radio > input[type="radio"]:before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background: transparent;
	border: 2px solid #004ecb;
	border-radius: 50%;
	cursor: pointer;
}

.custom-radio > input[type="radio"]:checked:after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border: 2px solid #004ecb;
	background: #004ecb;
	border-radius: 50%;
	position: absolute;
	left: 4px;
	top: 4px;
}



/**
*	Custom Checkbox
*
*/
.custom-checkbox > input[type="checkbox"] {
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	right: 0;
}

.custom-checkbox > input[type="checkbox"]:before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background: transparent;
	border: 2px solid #004ecb;
	cursor: pointer;
}

.custom-checkbox > input[type="checkbox"]:checked:before {
	background-color: #004ecb;
}

.custom-checkbox > input[type="checkbox"]:checked:after {
	content: '';
	display: inline-block;
	width: 5px;
	height: 9px;
	/*border: 2px solid #004ecb;*/
	border: 2px solid #fff;
	border-top: unset;
	border-left: unset;
	position: absolute;
	left: 5px;
	top: 2px;
	transform: rotate(45deg);
}


/**
*	Color
*
*/
.custom-success > input[type="checkbox"]:before {
	border-color: #14c5ab;
}

.custom-success > input[type="checkbox"]:checked:before {
	background-color: #14c5ab;
}



/**
*	Size
*
*/
.custom-lg > input[type="checkbox"]:before {
	width: 20px;
	height: 20px;
}

.custom-lg > input[type="checkbox"]:checked:after {
	width: 6px;
	height: 11px;
	left: 7px;
	top: 3px;
}