
.scene{width:100%; display:none; }
.actives {text-align:center; display:block !important; }

.radio-img  > input { display:none;}
.radio-img  > img {cursor:pointer; border:2px solid transparent;}
.radio-img  > input:checked + img {border:2px solid red;}

img.radioimg {position:absolute; top:40px; left:25px; right:0; width:200px; height:140px }
input[type="radio"] {display: none;}

ul {list-style: none;}
ul li {display:inline-block; list-style: none;}
label { height: 200px; width:250px; border: 1px solid red; padding: 10px; display: block; position: relative; margin: 10px; cursor: pointer;
}

label:before { background-color: white; color: white; content: " "; display: block; border-radius: 50%; border: 1px solid grey; position: absolute; top: -5px; left: -5px; width: 25px; height: 25px; text-align: center; line-height: 28px; transition-duration: 0.4s; transform: scale(0);
}


input[type="radio"]:checked + label:before { content: "✓"; background-color: blue; transform: scale(1);
}
input[type="radio"]:checked + .radioimg { transform: scale(0.9); box-shadow: 0 0 5px #333;  z-index: -1;
}
