/*!
 * 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 dowebokes. 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 {
	display: table;
	font-size: 14px;
	padding: 5px 10px;
	line-height: 1;
	background-color: #efefef;
	color: #333;
	cursor: pointer;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}


/* Stylish text inside label */


/*input.labelauty + label > span.labelauty-unchecked,
input.labelauty + label > span.labelauty-checked
{
	display: inline-block;
	line-height: 16px;
	vertical-align: bottom;
}*/


/* 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;
	vertical-align: bottom;
	background-repeat: no-repeat;
	background-position: left center;

}*/


/* 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-color: #69c4f7;
	color: #ffffff;
}


/*.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( ../images/input-unchecked.png );
}

.dowebok input.labelauty + label > span.labelauty-checked-image{
	background-image: url( ../images/input-checked.png );
}*/