.container {
	position : absolute;
	top : 100px;
	left : -50px;
	width : 100px;
	height : 40px;
	margin-left : 50%;
	background-color : pink;
	overflow : hidden;
}
.block {
	width : 100px;
	height : 40px;
	background-color : red;
	transition : all 0.5s linear 0s;
	-webkit-transition : all 0.5s linear 0s;
}
.point {
	width : 100px;
	height : 40px;
	line-height : 40px;
	text-align : center;
	font-size : 30px;
	color : white;
	background-color : blue;
}
.points {
	margin-top : -80px;
}
.points input[type="radio"] {
	opacity : 1;
	position : absolute;
	top : -1000px;
	left : 0px;
}
input[type="radio"]:checked + .block{
	height : 0px;
}