/* ----------
jQuery.plugins CSS file
---------- */

/* Custom checkbox */
.custom-checkbox,
.cb-check {
	width: 24px;
	height: 24px;
	line-height: 24px;
	cursor: pointer;
	overflow: hidden;
}

.custom-checkbox {
	position: relative;
}

.cb-check {
	position: absolute;
	top: 0;
	right: 0;
	background: url('../img/icon.checkbox.png') no-repeat center left;
}

	.state-unchecked .cb-check {
		background-position: 0 center;
	}

	.state-unchecked:hover .cb-check {
		background-position: -30px center;
	}

	.state-checked .cb-check {
		border-left-color: #fff;
		background-position: -60px center;
	}


/* Custom selects */
.sb-custom {
	cursor: pointer;
	display: inline;
	/*position: relative;*/
	width: 100%;
	font-size: 14px;
}
	.sb-custom input {
		font-size: 11px !important;
		font-weight: bold;
	}

.sparkbox-custom,
.sb-custom select {
	display: none;
}
.no-js .sparkbox-custom {
	display: block;
}

.sb-select:focus {
	/*-webkit-box-shadow: 0 0 4px 2px #79aed7;
	-moz-box-shadow: 0 0 4px 2px #79aed7;
	box-shadow: 0 0 4px 2px #79aed7;*/
}
.sb-select {
	background-image: url("../img/icon.select.png");
	background-repeat: no-repeat;
	background-position: center right;
	/*border: none;*/
	color: #444;
	left: 0;
	/*padding: 5px 30px 5px 5px;*/
	/*padding: 0 !important;*/
	padding-left: 0;
	padding-right: 0;
	position: relative;
	text-decoration: none;
	top: 0;
	width: 100%;
	text-indent: 4px;
	/*width: 200px;*/
	z-index: 1;
	cursor: pointer !important;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.sb-dropdown, .sb-dropdown-multi {
	background: #e3f0f8;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
	display: none;
	font-size: .9em;
	left: 0px;
	list-style: none;
	margin: 0;
	padding: 5px;
	position: absolute;
	max-height: 200px;
	top: 32px;
	width: 210px;
	z-index: 3;
	overflow: auto;
}
.sb-dropdown a {
	color: #444;
	display: block;
	padding: 3px;
	text-decoration: none;
}
.sb-dropdown a:hover {
	background-color: #cbe6f7;
}
.sb-dropdown .selected {
	background: #99d3f7;
}

.sb-dropdown .selected a {
	color: white;
}