.allergens {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem;
}
/* HEADER */
.allergens__header {
	position: fixed;
	backdrop-filter: blur(7.2px);
	top: 0;
	width: 100%;
	max-width: 50rem;
	padding: 0rem 1rem;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 0.5rem;
	z-index: 1;
	/* Animaciones */
	animation: rotation 2s;
}
.allergens__header-logo-img {
	height: 3rem;
	width: auto;
	padding: 0.2rem;
}
.allergens__header-iconos {
	width: 100%;
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 0.7rem;
	z-index: 3;
}
.allergens__icons {
	height: 2rem;
	width: auto;
	min-width: 1.3rem;
	cursor: pointer;
	animation: rotation 3s;
}
.logo__img-grande {
	width: 90dvw;
  	max-width: 30rem;
	margin-top: 4rem;
	border-radius: 1rem;
	box-shadow: var(--sombra);
}
/* ************************************************************* */
/* Alérgenos INFO */
/* ************************************************************* */

/* CABECERA */
.allergens__info {
	width: 100%;
	max-width: 50rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 2rem auto;
	padding: 1rem;
}
.allergens__info h1 {
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	color: var(--color-secundario);
}

/* CUERPO */
.allergens__lista {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
}
/*Clases de cada alérgeno */
.allergen__allergen {
	width: 100%;
	max-width: 50rem;
	padding: 0.5rem;
	display: grid;
	grid-template-columns: 1fr 6fr;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}
.allergen__allergen-img {
	max-width: 4rem;
}
.allergen__allergen-texto h3,
.allergen__allergen-texto p {
	font-size: 1rem;
}

/* BANER FLOTANTE CON Nomenclaturas */
.nomenclaturas {
	position: sticky;
	top: 5rem;
	width: 100%;
	max-width: 50rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.2rem;
	margin-bottom: 2rem;
	padding: 1rem;
	text-align: center;
	border-radius: var(--border-radius);
	background: var(--color-degradado2);
	box-shadow: var(--sombra);
	z-index: 1;
}
.nomenclaturas img {
	width: 2.5rem;
}
.nomenclaturas p {
	font-size: 0.5rem;
}

/* LISTA DE ALÉRGENOS - ALÉRGENOS DE CADA PLATO */
.lista_alergenos {
	width: 100%;
	max-width: 50rem;
	padding: 0.5rem;
}
.lista_alergenos h2 {
	font-family: "Corinthia", cursive;
	color: var(--color-secundario);
	font-size: 2.8rem;
	font-weight: 500;
	text-align: center;
	margin: 1rem 0.5rem;
}
.product-header-h3 {
	font-family: "Corinthia", cursive;
	color: var(--color-secundario);
	font-size: 2.2rem;
	font-weight: 500;
}
.lista_alergenos-plato {
	width: 100%;
	display: grid;
	grid-template-columns: 2fr 1fr;
	align-items: center;
	gap: 1rem;
	border-bottom: 1px solid lightgray;
}
.contenedor-texto {
	padding: 0.5rem 0;
}

.contenedor-texto p {
	font-size: 1rem;
}
.contenedor-icons {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 0.15rem;
	padding: 0.2rem 0;
}
.aler-icon {
	width: 1.5rem;
	height: 1.5rem;
}
