/* -------------- MOBILE -------------- */
.Main-titulo {
    grid-row: 1;
    grid-column: 1;
}

#Back-btn {
	display:none;
    grid-row: 1;
    grid-column: 2;
	font-family: Arial;
	font-weight: bold;
	background-color: #06325e;
	text-align: center;
	line-height: 2.5em;
	letter-spacing: 1px;
	color: #fff;
    margin-left: auto;
    width:90%;
	text-decoration: none;
}

.Receta {
	border: solid #000 1px;
	border-radius: 5px;
	margin-top: 2em;
	margin-bottom:0px;
}

.Receta-btn {
	display: grid;
	grid-template-columns: 100px auto;
	text-decoration: none;
	color:#000;
}

.Receta-img {
	grid-column: 1;
	height:100px;
}

.Receta-img img {
	width:100px;
}

.Main-texto {
	grid-column: 2;
	padding-left:1em;
	padding-top: 5px;
}

.Receta-data {
	display:none;
}

.Ingredientes {
	margin-top:2em;
	list-style:disc inside;
	background-color: #e3e3e3;
	padding:10px;
	border: solid #000 1px;
	border-radius: 5px;
}

.Ingr-titl {
	margin-bottom:0.5em;
}

.Division {
	margin-top:1em;
}

.Preparacion {
	margin-top:2em;
	list-style-position: inside;
}

.Img-receta {
	text-align: center;
	margin-top: 2em;
}

.Img-receta img {
	width:250px;
}

.Extras {
	border: solid #000 1px;
	border-radius: 5px;
	padding:10px;
	margin-top:2em;
}

/* -------------- TABLET VERTICAL -------------- */
@media (min-width: 600px) {
	
	.Receta {
		width:80%;
		margin: 2em auto 0px auto;
	}

	.Receta-btn {
		grid-template-columns: 150px auto;
	}

	.Receta-img {
		height:150px;
	}

	.Receta-img img{
		width:150px;
	}

	.Main-texto h3 {
		font-size: 22px;
	}

	.Main-texto p {
		margin-top: 1em;
		font-size: 18px;
	}
	
	.Ingredientes {
		width:80%;
		margin: 2em auto 0px auto;
	}

	.Preparacion {
		width: 80%;
		margin: 2em auto 0px auto;
	}

	.Extras {
		width: 80%;
		margin: 2em auto 0px auto;
	}
}

/* -------------- TABLET HORIZONTAL -------------- */
@media (min-width: 900px) {
    .Back-btn {
		font-size:16px;
        width:30%;
	}
    
    .Back-btn:hover {
		color:rgb(39, 39, 39);
		background-color: #d81b21;
	}

	.Receta {
		width:80%;
		margin: 2em 2em 0px 2em;
	}

	.Img-receta {
		text-align: left;
	}

	.Ingredientes {
		width:50%;
		margin: 2em 0px 0px 0px;
	}

	.Preparacion {
		width: 90%;
		margin: 2em 0px 0px 0px;
	}

	.Extras {
		width: 90%;
		margin: 2em 0px 0px 0px;
	}
}

/* -------------- PANTALLA PC -------------- */
@media (min-width: 1400px) {
	.Receta {
		width:60%;
	}

	.Ingr-titl {
		font-size:26px;
	}

	.Ingredientes li {
		font-size: 20px;
	}

	.Division {
		font-size: 22px;
	}

	.Main-texto h3 {
		font-size: 25px;
	}

	.Main-texto p {
		font-size: 20px;
	}

	.Img-receta img {
		width:350px;
	}
}