/* 
    Created on : 6 oct. 2016, 11:33:55
    Author     : dominique
*/
/*
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
  padding: 0; 
  height: 23px; 
  width: 23px; 
}*/
.radio input[type="checkbox"]:checked,
.radio input[type="checkbox"]:not(:checked),
.radio input[type="radio"]:checked,
.radio input[type="radio"]:not(:checked) {
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	clip: rect(0 0 0 0);
	clip: rect(0,0,0,0);
	appearance:		none;
}
.radio input[type="checkbox"]+label,
.radio input[type="radio"]+label {
	padding-left: 30px;
	margin-right: 16px;
	position: relative;
	cursor: pointer;
	font-size:14px;
	color:#000;
}
.radio input[type="checkbox"]+label:before,
.radio input[type="radio"]+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 60%;
	margin-top: -10px;
	width: 15px;
	height: 15px;
	background-color:#ccc;
	border-radius:3px;
	border:1px solid #999;
}
.radio input[type="radio"]+label:before {
	border-radius:8px;
}
.radio input[type='checkbox']:focus + label:before,
.radio input[type='radio']:focus + label:before {
	background-color:#E30514;
}
.radio input+label:after {
	transition:transform 0.2s ease-in-out;
}
.radio input[type="radio"]+label:after {
	content: '';
	position: absolute;
	left: 4px;
	top: 60%;
	margin-top: -6px;
	width: 9px;
	height: 9px;
	border-radius:		50%;
	transform:		scale(1);
	z-index:100;
}
.radio input[type="radio"]+label:hover:after {
	background-color:#7B7C8C;
}
.radio input[type="checkbox"]+label:after {
    content: '';
	position: absolute;
	left: 2px;
	top: 60%;
	margin-top: -7px;
	width: 12px;
	height: 12px;
	background:url('../images/coche_grise.png') no-repeat center;
    background-size: 18px;
}
/* .radio input[type="radio"]:checked+label:after, */
.radio.active input[type="radio"]+label:after,
.radio input[type="checkbox"]:checked+label:after {
	background-color:#E30514;
}

.radio input[type="radio"]:checked+label:hover:after,
.radio input[type="checkbox"]:checked+label:hover:after {
	transform:	scale(1.3);
}
