﻿/* input_radio_all style */
.radio_box{ display:block;}
[type="radio"]:not(:checked),
[type="radio"]:checked {
	position: absolute;
	left: -9999px;
}
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
    position: relative;
    padding: 0 0 0 20px;
	margin-right:20px;
    cursor: pointer;
}
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
	content: '';
    position: absolute;
    left: 0;
    top: -4px;
    width: 25px;
    height: 25px;
    background: url(../images/radio_all.png) 0 0 no-repeat;
}
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
    content: " ";
    position: absolute;
    top: -4px;
    left: 0;
    width: 25px;
    height: 25px;
    background: url(../images/radio_all.png) -50px 0 no-repeat;
}
[type="radio"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
[type="radio"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
input[type="radio"] + label:hover:before {
	background: url(../images/radio_all.png) -25px 0 no-repeat;
	border:none ! important;
}
input[type="radio"] + label.active:before {
	background: url(../images/radio_all.png) -50px 0 no-repeat;
}