.conteneur {
	padding: 50px 20px;
	margin: auto;
}

.actions {
	text-align: center;
	font-size: 0;
	margin-top: 50px;
}

.actions span {
	margin-left: 8px;
	margin-right: 8px;
}

#reinitialiser,
#continuer,
#susprendre {
	display: none;
}

#feu {
	background: #111;
	width: 170px;
	height: 400px;
	border-radius: 20px;
	position: relative;
	border: solid 5px #333;
	box-sizing: border-box;
	margin: auto;
}

.rouge {
	background: red;
	background-image: radial-gradient(brown, transparent);
	background-size: 5px 5px; 
	width: 100px;
	height: 100px;
	border-radius: 50%;
	position: absolute;
	top: 20px;
	left: 30px;
	animation: 13s red infinite;
	border: dotted 2px red;
	box-shadow: 0 0 20px #111 inset, 0 0 10px red;
	opacity: 0.2;
	box-sizing: border-box;
}

.jaune {
	background: yellow;
	background-image: radial-gradient(orange, transparent);
	background-size: 5px 5px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: dotted 2px yellow;
	position: absolute;
	top: 145px;
	left: 30px;
	animation: 13s yellow infinite;
	box-shadow: 0 0 20px #111 inset, 0 0 10px yellow;
	opacity: 0.2;
	box-sizing: border-box;
}

.vert {
	background: green;
	background-image: radial-gradient(lime, transparent);
	background-size: 5px 5px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: dotted 2px lime;
	position: absolute;
	top: 270px;
	left: 30px;
	box-shadow: 0 0 20px #111 inset, 0 0 10px lime;
	opacity: 0.2;
	box-sizing: border-box;
}

.allume {
	opacity: 1;
}
