/*---------------------------------------------------------------------------
	Global Style file
	-------------------------------------------------------------------------
	Copyright:      Oskar Lebuda
	@: 				o.lebuda@mccom.pl
	Typ:            Custom Interface Elements
	For: 	        All browsers
	
  ---------------------------------------------------------------------------- */
 /*-----------------------------------CHECKBOX--------------------------------*/
/*---------------------------------------------------------------------------*/

input[type=checkbox] {
	display:none;
}

input[type=checkbox] + label{
	padding-left: 35px;
	cursor: pointer;
}



input[type=checkbox] + label:before
{
	background: url('/img/custom/checkbox/c_white.png');
	height: 20px;
	width: 20px;
	display:inline-block;
	content: "";
	cursor: pointer;
	position: absolute;
	margin-left: -35px;
	margin-top: -2px;
}
input[type=checkbox]:checked + label:before
{
	background-position: 0px 20px;
}

input.dark[type=checkbox] + label:before
{
	background: url('/img/custom/checkbox/c_dark.png');
	height: 20px;
	width: 20px;
	display:inline-block;
	content: "";
	cursor: pointer;
	position: absolute;
	margin-left: -35px;
	margin-top: -2px;
}
input.dark[type=checkbox]:checked + label:before
{
	background-position: 0px 20px;
}

  /*------------------------------------------------------------------------- */
 /*-----------------------------------CHECKBOX-------------------------------*/
/*--------------------------------------------------------------------------*/
