/*!
 * LABELAUTY jQuery Plugin Styles
 *
 * @file: jquery-labelauty.css
 * @author: Francisco Neves (@fntneves)
 * @site: www.francisconeves.com
 * @license: MIT License
 */

/* Prevent text and blocks selection */
.dowebok input.labelauty + label ::selection { background-color: rgba(255, 255, 255, 0); }
.dowebok input.labelauty + label ::-moz-selection { background-color: rgba(255, 255, 255, 0); }

/* Hide original checkboxes. They are ugly! */
.dowebok input.labelauty { display: none !important; }

/*
 * Let's style the input
 * Feel free to work with it as you wish!
 */
.dowebok input.labelauty + label
{
			width:47%; display:block; text-align:center;font-size: 1rem;color: rgb(51, 51, 51);
	border: 1px solid #e0e0e0;border-radius: 0.50625rem; padding:1rem 0rem 1rem 0rem; float:left; margin-right:2%; margin-bottom:0.5rem;
	background-color: #fff;
	color: #000;



	transition: background-color 0.25s;
	-moz-transition: background-color 0.25s;
	-webkit-transition: background-color 0.25s;
	-o-transition: background-color 0.25s;

	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

/* Stylish text inside label */

.dowebok input.labelauty + label > span.labelauty-unchecked,
.dowebok input.labelauty + label > span.labelauty-checked
{
	display: inline-block;
}

/* Stylish icons inside label */

.dowebok input.labelauty + label > span.labelauty-unchecked-image,
.dowebok input.labelauty + label > span.labelauty-checked-image
{
	display: inline-block;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: left center;

	transition: background-image 0.5s linear;
	-moz-transition: background-image 0.5s linear;
	-webkit-transition: background-image 0.5s linear;
	-o-transition: background-image 0.5s linear;
}

/* When there's a label, add a little margin to the left */
.dowebok input.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,
.dowebok input.labelauty + label > span.labelauty-checked-image + span.labelauty-checked
{
	margin-left: 7px;
}

/* When not Checked */
.dowebok input.labelauty:not(:checked):not([disabled]) + label:hover
{
	background-color: #eaeaea;
	color: #a7a7a7;
}
.dowebok input.labelauty:not(:checked) + label > span.labelauty-checked-image
{
	display: none;
}

.dowebok input.labelauty:not(:checked) + label > span.labelauty-checked
{
	display: none;
}

/* When Checked */
.dowebok input.labelauty:checked + label
{
	background: #f2f8ff !important;
	color: #3388FF !important; font-weight:bold;border: 1px solid #3388FF;
}

.dowebok input.labelauty:checked:not([disabled]) + label:hover
{
	background-color: #72c5fd;
}
.dowebok input.labelauty:checked + label > span.labelauty-unchecked-image
{
	display: none;
}

.dowebok input.labelauty:checked + label > span.labelauty-unchecked
{
	display: none;
}

.dowebok input.labelauty:checked + label > span.labelauty-checked
{
	display: inline-block;
}

.dowebok input.labelauty.no-label:checked + label > span.labelauty-checked
{
	display: block;
}

/* When Disabled */
.dowebok input.labelauty[disabled] + label
{
	opacity: 0.5;
}

/* Add a background to (un)checked images */
.dowebok input.labelauty + label > span.labelauty-unchecked-image
{
	background-image: url(/wap/form/images/input-unchecked.png );
}

.dowebok input.labelauty + label > span.labelauty-checked-image
{
	background-image: url( /wap/form/images/input-checked.png );
}

