*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

/*body{
	background-color: rgb(36,36,36);
}*/

.cont-temporizador{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.cont-temporizador .bloque{
	margin: 0px 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cont-temporizador .bloque div{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgb(80,80,80);
	box-shadow: 0px 0px 6px 2px #727272 inset;
	color: #ffffff;
	font-size: 40px;
	font-weight: bold;
	width: 80px;
	height: 50px;
	margin-bottom: 10px;
	border-radius: 5px;
}

.cont-temporizador .bloque p{
	font-size: 11px;
	font-weight: bold;
	color: #dedede;
}	
/*=============================================
MOVIL (XS revisamos en 320px)
=============================================*/
@media (max-width:767px){

	.cont-temporizador .bloque div{
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgb(80,80,80);
		box-shadow: 0px 0px 6px 2px #727272 inset;
		color: #ffffff;
		font-size: 20px;
		font-weight: bold;
		width: 40px;
		height: 30px;
		margin-bottom: 10px;
		border-radius: 5px;
	}
	.cont-temporizador .bloque p{
		font-size: 8px;
		font-weight: bold;
		color: #dedede;
	}
	
	.buenFin img{
		width:50%;
		margin-bottom: 10px;
	}
}	

	