@charset "utf-8";
/* 

Abstract Management Input Style Sheet

Author: Bob
Created: May 24 2020
Modified: N/A
Version: 1.0

Notice:

The purpose of this style sheet is to apply advanced layout techniques on HTML form 
data inputs
*/

/**
 * GENERAL STYLE
 * 
 * 
 */

div.image-input input 
{
	display: none;
}
div.image-input p input + label
{
	padding-left: 20px;
}

div.image-input p input + label:before
{
	content: "\f10c"; /* default circle */
	display: inline-block;
	font-family: FontAwesome;
	font-size: 140%;
	font-style: normal;
	font-weight: normal;
	line-height: 100%;
	position: absolute;
	text-align: center;
	text-indent: -25px;
	text-rendering: optimizeLegibility;
}


/*
	glyphicon glyphicon-unchecked
	glyphicon glyphicon-check
*/

/**
 * Radio // Default
 */
div.image-input p input + label:before, 
div.image-input.facircle p input + label:before
{
	content: "\f10c";
}
div.image-input p input:checked + label:before, 
div.image-input.facircle p input:checked + label:before
{
	content: "\f192";
}

/**
 * Checkbox
 */
div.image-input.fabox p input + label:before
{
	content: "\f096";
}
div.image-input.fabox p input:checked + label:before
{
	content: "\f046";
}


/* Toggle Display */
.toggle-wrapper {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

/* Hide default HTML checkbox */
.toggle-wrapper input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The switch */
.toggle-button {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	text-indent: -999em;
}

.toggle-button:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.toggle-wrapper input:checked + .toggle-button {
	background-color: #2196F3;
}

.toggle-wrapper input:focus + .toggle-button {
	box-shadow: 0 0 1px #2196F3;
}

.toggle-wrapper input:checked + .toggle-button:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.toggle-button.round {
	border-radius: 34px;
}

.toggle-button.round:before {
	border-radius: 50%;
}