html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
* {
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
	color: var(--color-principal);
    font-family: "Montserrat", sans-serif;
}
:root {
	--deg-banc: #517BE9;
	--color-principal: #1C3766;
	--font-principal: "Montserrat", sans-serif;
	--font-secundaria: "Urbanist", sans-serif;
}
/*BODY*/
html, body {
	height: 100%;
	min-height: 100%;
}
body {
	opacity: 0;
}
.body--overlay {
	overflow: hidden;
}
/*FLEX*/
.flex, .flex-center, .flex-wrap, .flex-centerBetween, .flex-column, .flex-centerJustify {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-center, .flex-centerBetween {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex-centerBetween {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex-centerJustify {
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex-wrap, .flex-column, .flex-centerJustify {
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-column {
	-webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
/*COMUN*/
.responsive {
	display: block;
	max-width: 100%;
	max-height: 100%;
}
/*HEADER*/
header {
	z-index: 2;
	position: relative;  
}
nav {
	background: #FFFFFF;
	padding: 1rem;
	-webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.25);
}
.logo__img {
	display: block;
	height: 2.04194rem;
}
.logo__img--partner {
	height: 1rem;
}
.logo__partner {
	position: relative;
	padding-left: 0.57rem;
	margin-left: 0.57rem;
	height: 0.81913rem;
	border-left: 0.0125rem solid var(--color-principal);
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/*IDIOMAS*/
.idiomas {
	margin: 0;
	padding: 0;
}
.idiomas__btn {
	padding: 0;
	margin: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	color: var(--color-principal);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: normal;
	font-family: var(--font-secundaria);
}
.idiomas__li {
	padding: 0 0.5rem;
	height: 0.81913rem;
	border-right: 0.0125rem solid var(--color-principal);
}
.idiomas__li:last-child {
	border-right: none;
}
/*PROGRESO*/
.progreso {
	width: 100%;
	display: none;
}
.progreso__recaudacion {
	border-radius: 1rem;
	border: 1px solid rgba(28, 55, 102, 0.40);
}
.progreso__barra {
	height: 0.375rem;
	border-radius: 1rem;
	margin: 0.11rem 0.12rem 0.10rem 0.12rem ;
	max-width: calc(100% - 0.24rem);
	background: -webkit-gradient(linear, right top, left top, from(#6239CF), to(#517BE9)), #517BE9;
    background: -o-linear-gradient(right, #6239CF 0%, #517BE9 100%), #517BE9;
    background: linear-gradient(270deg, #6239CF 0%, #517BE9 100%), #517BE9;
}
.progreso__texto {	
	font-size: 0.875rem;
	font-weight: 500;
}
.progreso__strong, .degradado, h1 strong {
	font-weight: 700;
	background: -webkit-gradient(linear, right top, left top, from(#6239CF), to(#517BE9));
	background: -o-linear-gradient(right, #6239CF 0%, #517BE9 100%);
	background: linear-gradient(270deg, #6239CF 0%, #517BE9 100%);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
  	background-clip: text;
  	color: transparent;
}
@media only screen and (min-width: 768px) {
	nav {
		padding: 1rem 2rem;
		gap: 6.25rem;
	}
	.logo__img {
		height: 3.07419rem;
	}
	.logo__partner {
		height: 1.23319rem;
		padding-left: 0.86rem;
		margin-left: 0.86rem;
		border-left: 0.0625rem solid rgba(28, 55, 102, 0.40);
	}
	.logo__img--partner {
		height: 1.5625rem;
	}
	.idiomas__btn {
		font-size: 1rem;
		line-height: 1.5rem;
		font-weight: 500;
		font-family: var(--font-principal);
	}
	.idiomas__li {
		height: 0.81913rem;
		border-right: 0.0125rem solid var(--color-principal);
	}
	.idiomas__divider {		
		width: 0.0625rem;
		border-right: 0.0625rem solid rgba(28, 55, 102, 0.40);
	}	
}
@media only screen and (min-width: 1024px) {
	nav {
		gap: 2rem;
	}
	.progreso {
		display: block;
	}
}
@media only screen and (min-width: 1280px) {
	nav {
		gap: 6.25rem;
	}
}
.idiomas__btn--active {
	font-weight: 700;
}
/*BTNS*/
.btn {
	border-radius: 62.5rem;
	height: 4rem;
	padding: 0.5rem 1.5rem;
	background: #517BE9;
	border: none;
	color: #FFFFFF;
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	width: auto; 
  	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
    flex: 0 0 auto;
  	-ms-flex-item-align: start;
    align-self: flex-start;
	cursor: pointer;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.btn:not(.btn--disabled)::before {
  	content: "";
  	position: absolute;
  	inset: 0;
  	background: -webkit-gradient(linear, right top, left top, from(#6239CF), to(#517BE9));
    background: -o-linear-gradient(right, #6239CF 0%, #517BE9 100%);
    background: linear-gradient(270deg, #6239CF 0%, #517BE9 100%);
  	opacity: 0;
  	-webkit-transition: opacity .5s;
  	-o-transition: opacity .5s;
  	transition: opacity .5s;
  	z-index: -1;
}
.btn:not(.btn--disabled):hover::before {
  	opacity: 1;
  	transition: opacity .5s;
}
/*PASOS*/
.pasos--donacion {
	height: calc(100% - 4.042rem);
}
.pasos__uno {
	height: 100%;
	min-height: 100%;
	position: relative;
	z-index: 1;
}
.portada {
	z-index: -1;
	height: 15.3125rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}
.contenido {
	margin: -5.5025rem auto 0 auto;
	border-radius: 1.5rem 1.5rem 11.25rem 1.5rem;
	background-color: #F4F9FF;
	width: 40rem;
	max-width: calc(100% - 2rem);
	padding: 1.5rem;
	gap: 1rem;
}
h1, .contenido__strong, h1 strong {
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 2.5rem;
	font-family: var(--font-secundaria);
}
.contenido__enlaces {
	gap: .5rem;
}
.saber-mas {
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.5rem;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	background-color: transparent;
}
.pasos__dos {
	height: 100%;
	background-image: url(https://stockcrowd.s3.amazonaws.com/landings/banco-alimentos/super/img/estanteria-fondo.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding-bottom: 3.81rem;
	overflow-y: auto;
  	scrollbar-width: none;
	position: relative;
	position: absolute;
	top: 0;
	width: 100%;
	opacity: 0;
}
.pasos__dos--opacity {
	opacity: 1;
	-webkit-transition: opacity .5s;
  	-o-transition: opacity .5s;
  	transition: opacity .5s;
}
.pasos__dos::-webkit-scrollbar {
  	display: none;
}
.logo-vertical, .contenido__fixed {
	display: none;
}
.sticky{
	position: sticky;
	bottom: 0;
	padding: 1rem;
	background: #FFFFFF;
	z-index: 2;
}
.sticky--active {
	-webkit-box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.08);
}
.btn--stikcy {
	height: 3rem;
	width: 100%;
}
.logo-horizontal {
	margin: 0 auto 1.5rem auto;
}
.no-mobile {
	display: none;
}
@media only screen and (min-width: 768px) {
	.contenido {
		gap: 1.5rem;
		padding: 3rem;
		border-radius: 2.5rem 2.5rem 12.5rem 2.5rem;
	}
	.portada {				
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
	}
	h1, .contenido__strong, h1 strong {
		font-size: 3rem;
		line-height: 3.375rem;
	}
	.contenido__enlaces {
		gap: 1.5rem;
	}
	.no-desktop {
		display: none;
	}
	.contenido__fixed, .no-mobile {
		display: block;
	}
	.pasos__uno {
		display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
		-webkit-box-align: safe center;
        -ms-flex-align: safe center;
        align-items: safe center;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		height: auto;
		min-height: calc(100vh - 5.074rem);
	}
}
@media only screen and (min-width: 1024px) {
	.pasos {
		height: auto;
		min-height: calc(100vh - 5.074rem);
	}	
	.pasos__dos {
		height: calc(100vh - 5.074rem);
		padding: 4.05rem 0;
	}
	.contenido {
		margin: 1rem 6.25rem 1rem 0;
	}
	.logo-vertical {
		position: absolute;
		right: 1rem;
		display: block;
	}
}
@media only screen and (min-width: 1920px) {
	.contenido {
		margin: 1rem 13rem 1rem 0;
	}
}
/*SVG*/
.pasos {
	position: relative;
}
.pasos__svg {
	height: 100%;
	margin: 0 auto;
	display: block;
}
.tooltip, .hover, .selected {
	opacity: 0;
	cursor: pointer;
	pointer-events: none;
}
.producto {
	cursor: pointer;
}
.explicacion {
	z-index: 2;
	position: fixed;
	height: calc(100% - 4.042rem);
	width: 100%;
	left: 0;
	top: 4.042rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: rgba(14, 27, 50, 0.70);
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	-ms-flex-line-pack: center;
	align-content: center;
	gap: 0.87rem;
}
.explicacion__texto {
	color: #FFFFFF;
	font-size: 0.875rem;
	line-height: 1.57;
	font-weight: 600;
	width: 100%;
  	text-align: center;
	font-family: var(--font-secundaria);
}
.explicacion--girar {
	pointer-events: none;
	display: none;
}
@media (orientation: landscape) and (max-height: 450px)  {
  	.explicacion--girar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.mensaje, .explicacion--inicial {
		display: none;
	}
	.pasos__dos {
		pointer-events: none;
	}
}
@media only screen and (min-width: 768px) {
	.explicacion:not(.explicacion--girar) {
		display: none;
	}
}
/*MENSAJE*/
.mensaje {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
	text-align: center;
	width: 100%;
	bottom: 0;
}
.mensaje--desktop {
	display: none;
}
.mensaje__container {
	gap: 1rem;	
	padding: 0.40775rem 1.63094rem;
	min-height: 3.5rem;		
	background: #FFFFFF;
	border-radius: 50.96681rem;
	border: 0.815px solid #6239CF;
	-webkit-box-shadow: 0 3.262px 19.571px 0 #6239CF, 0 3.262px 19.571px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 3.262px 19.571px 0 #6239CF, 0 3.262px 19.571px 0 rgba(0, 0, 0, 0.08);	
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;	
}
.mensaje__small, .mensaje__otra {
	color: #FFFFFF;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.25rem;	
}
.mensaje__small {
	width: 100%;
  	text-align: center;
}
.mensaje__otra, .agradecimiento__volver {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
	background-color: transparent;
}
.mensaje__texto {
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.btn--mensaje {
	height: 3rem;
}
.mensaje__container--mobile {
	width: 16.1875rem;
	max-width: calc(100% - 2rem);
	margin: 0 auto;
  	text-align: center;
	min-height: 4rem;
	margin-bottom: 1.5rem;
}
.mensaje__container--mobileFinal {
	width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  	margin: 0 auto;
	padding: 0.25rem 0.25rem 0.25rem 2rem;
}
.secundario-textos {
	gap: 1rem;
}
.mensaje__sombra {
	width: 100vw;
	padding: 1rem 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.20)), to(rgba(0, 0, 0, 0.50)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.50) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.50) 100%);
}
@media only screen and (min-width: 768px) {
	.mensaje {		
		bottom: 1.5rem;
	}
	.mensaje--desktop {
		display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    	-webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    	-ms-flex-wrap: wrap;
        flex-wrap: wrap;
	}
	.mensaje--mobile {
		display: none;
	}
	.mensaje__container {
		border-radius: 62.5rem;		
		padding: 0.5rem 2rem;
		min-height: 4rem;	
		border: 1px solid #6239CF;
		-webkit-box-shadow: 0 4px 24px 0 #6239CF, 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    	box-shadow: 0 4px 24px 0 #6239CF, 0 4px 24px 0 rgba(0, 0, 0, 0.08);
	}
	.mensaje__small, .mensaje__otra {
		font-weight: 500;
	}
	.mensaje__small {
		margin-top: 0.875rem;
	}
	.mensaje__texto {
		font-size: 1rem;
		line-height: 1.5rem;
	}
	.mensaje__container--secundario {	
		padding: 0.5rem 0.5rem 0.5rem 2rem;
	}
	.mensaje__small--opacity {
		opacity: 0;
		pointer-events: none;
	}
}
/*AGRADECIMIENTO*/
.final {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;	
	overflow: auto;
	padding: 5rem 1rem;
	display: none;
	background-color: rgba(14, 27, 50, 0.70);
}
.final--active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: safe center;
	-ms-flex-align: safe center;
	align-items: safe center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.agradecimiento {
	border-radius: 1.5rem 1.5rem 11.25rem 1.5rem;
	background-color: #F4F9FF;
	width: 38.5625rem;
	max-width: calc(100% - 2rem);
	padding: 1.5rem;
	gap: 1rem;
	z-index: 9;
}
.agradecimiento__titulo, .agradecimiento__titulo strong {
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 2.5rem;
	font-family: var(--font-secundaria);
}
.agradecimiento__titulo strong {
	font-weight: 700;
	background: -webkit-gradient(linear, right top, left top, from(#6239CF), to(#517BE9));
	background: -o-linear-gradient(right, #6239CF 0%, #517BE9 100%);
	background: linear-gradient(270deg, #6239CF 0%, #517BE9 100%);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
  	background-clip: text;
  	color: transparent;
}
.redes {
	list-style-type: none;
	margin: 0;
	padding: 0;
	gap: 1rem;
}
.btn--redes {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 2rem;
	cursor: pointer;
}
.agradecimiento__volver {
	-ms-flex-item-align: start;
	align-self: flex-start;
}
@media only screen and (min-width: 768px) {
	.agradecimiento {
		gap: 1.5rem;
		padding: 3rem;
		border-radius: 2.5rem 2.5rem 12.5rem 2.5rem;
	}
	.agradecimiento__titulo, .agradecimiento__titulo strong {
		font-size: 3.25rem;
		line-height: 3.75rem;
	}
}
/*OVERLAY*/
.overlay {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(14, 27, 50, 0.70);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
	pointer-events: none;
}
.overlay--open {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	overflow: auto;
	height: 100%;
	min-height: 100%;
	pointer-events: all;
}
.overlay--cantidad {
	-webkit-box-align: safe center;
    -ms-flex-align: safe center;
    align-items: safe center;
}
.overlay__modal {
	border-radius: 1.5rem;
	background: #FFFFFF;
	margin: 5rem auto;
	padding: 3rem 1.5rem;
	max-width: calc(100% - 2rem);
	position: relative;
}
.overlay__modal--cantidad {
	width: 18.375rem;
	border-radius: 0.5rem;
	padding: 3rem 1.5rem 1.5rem 1.5rem;
}
.overlay__modal--form {
	width: 36.5rem;
	border-radius: 0.5rem;
	padding: 3rem 1.5rem 0 1.5rem;
}
.overlay__items {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.overlay__modal--productos {
	padding: 3rem 1rem;
}
.items {
	border-radius: 1rem;
	padding: 1.5rem;
	border: 1px solid rgba(28, 55, 102, 0.40);
	width: calc(100% / 2 - 1rem);
}
.items__img {
	max-height: 6.6875rem;
	margin-bottom: 1rem;
}
.items__titulo, .items__precio {
	font-family: var(--font-secundaria);
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.625rem;
}
.items__precio {
	margin: .12rem 0 .25rem 0;
}
.items__descripcion, .items__descripcion p {
	font-size: .875rem;
}
.overlay__close {
	padding: 0;
	border: none;
	cursor: pointer;
	background-color: transparent;
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
}
.overlay__titulo {
	font-family: var(--font-secundaria);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-align: center;
  	margin-bottom: 1rem;
}
.overlay__donar {
	gap: 1.5rem;
	margin-top: 1.5rem;
	text-align: center;
}
.btn--overlay {
	-ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
	height: 3rem;
}
.overlay__contenido--cantidad {
	gap: 1rem;
}
label {
	font-weight: 600;
	text-align: center;
}
.cantidad__input {
	position: relative;
	margin: 0 auto;
}
input {
	border-radius: 0.5rem;
	border: 1px solid rgba(28, 55, 102, 0.40);
	display: flex;
	height: 3rem;
	padding: 1.5rem 3rem 1.5rem 1.5rem;
	width: 15.375rem;
	max-width: 100%;
}
.cantidad__moneda {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	text-align: center;
	font-family: var(--font-secundaria);
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5rem;
	letter-spacing: -0.01125rem;
}
.btn--cantidad {
	height: 3rem;
	width: 15.375rem;
	max-width: 100%;
	margin: 0 auto;
}
.btn--disabled {
	cursor: no-drop;
	opacity: 0.5;
}
.overlay__close--cantidad {
	top: 1rem;
	right: 1rem;
}
.desgravacion {
	text-align: center;
}
iframe {
	width: 100%;
}
@media only screen and (min-width: 600px) {
	.btn--overlay {
		height: 4rem;
	}
}
@media only screen and (min-width: 768px) {	
	.items {
		width: calc(100% / 3 - 1rem);
		-webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
	}	
	.overlay__titulo {
		font-size: 2rem;
		margin-bottom: 2.5rem;
	}
	.items__titulo, .items__precio {
		font-size: 1.5rem;
		line-height: 1.75rem;
	}
}
@media only screen and (min-width: 1024px) {
	.overlay__modal {
		padding: 3rem;
		width: 65.5rem;
	}
	.overlay__modal--cantidad {
		width: 23.8125rem;
	}
	.overlay__modal--form {
		width: 36.5rem;
		padding: 3rem 0 0 0;
	}
	.overlay__items {
		gap: 1.5rem;
	}
	.items {
		width: calc(100% / 4 - 1.5rem);
	}	
}
.hide {
	display: none;
}