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: #323232;
    font-family: var(--font-regular)
}
@font-face {
    font-family: 'Condensed';
    src: url("https://stockcrowd.s3.amazonaws.com/landings/cr/basicos/fonts/GraphikXXXCondensed-Regular.otf");
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Montserrat-Regular';
    src: url("https://stockcrowd.s3.amazonaws.com/landings/cr/basicos/fonts/Montserrat-Regular.ttf");
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Montserrat-Medium';
    src: url("https://stockcrowd.s3.amazonaws.com/landings/cr/basicos/fonts/Montserrat-Medium.ttf");
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Montserrat-Semibold';
    src: url("https://stockcrowd.s3.amazonaws.com/landings/cr/basicos/fonts/Montserrat-SemiBold.ttf");
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Montserrat-Bold';
    src: url("https://stockcrowd.s3.amazonaws.com/landings/cr/basicos/fonts/Montserrat-Bold.ttf");
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
:root {
	--color-principal: #F5333F;
	--color-secundario: #011E41;
	--font-regular: "Montserrat-Regular", sans-serif;
	--font-medium: "Montserrat-Medium", sans-serif;
	--font-semibold: "Montserrat-Semibold", sans-serif;
	--font-bold: "Montserrat-Bold", sans-serif;
	--font-open: "Open Sans", sans-serif;
	--font-titulos: "Condensed", sans-serif;
}
/*BODY*/
html, body {
	height: 100%;
	min-height: 100%;
	opacity: 0;
}
/*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%;
}
/*BTN*/
.btn {
	border-radius: 1rem;
	padding: 1rem;
	font-size: 1rem;
	font-style: normal;
	line-height: normal;
	border: none;
	display: block;
	color: #FFFFFF;
	cursor: pointer;
	font-family: var(--font-bold);
	background-color: var(--color-principal);
}
.btn:not(.btn--disabled):hover {
	background: -webkit-gradient(linear, left top, left bottom, from(#F5333F), to(#8F1E25));
	background: -o-linear-gradient(top, #F5333F 0%, #8F1E25 100%);
	background: linear-gradient(180deg, #F5333F 0%, #8F1E25 100%);
}
/*HEADER*/
header {	
	top: 0;
	z-index: 1;
	opacity: 0;
	width: 100%;
	position: fixed;
	pointer-events: none;
	background-color: var(--color-principal);
}
.header--active {
	opacity: 1;
	pointer-events: all;
	z-index: 9;	
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition:opacity 0.3s;
}
nav {
	height: 4rem;
	padding: 0 2rem 0 0;
	background-color: #FFFFFF;
	-webkit-clip-path: polygon(0 0, 101% 0, 85% 208%, 0 100%, 0 10rem);
	clip-path: polygon(0 0, 101% 0, 85% 208%, 0 100%, 0 10rem);
}
.nav__container--mobile {
	display: none;
}
.idiomas {
	margin: 0;
	padding: 0;
	list-style-type: none;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.idiomas__btn {
	padding: 0;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	background-color: transparent;
	color: var(--color-secundario);
	font-family: var(--font-semibold);
}
.idiomas__separador {	
	margin: 0 0.2rem;
	color: var(--color-secundario);
	font-family: var(--font-semibold);
}
.idiomas__btn--active {
	color: var(--color-principal);
}
.nav__titulos {
	display: none;
}
@media only screen and (min-width: 768px) {
	nav {
		height: 6.25rem;
		padding: 0 3rem 0 1.56rem;		
	}
	.nav__container {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	.nav__container:nth-child(2) {
		-webkit-box-flex: 2;
		-ms-flex: 2;
		flex: 2;
	}
	.nav__container--mobile {
		display: block;
	}
	.nav__titulos {
		display: block;
		text-align: center;
		font-size: 1.125rem;
		font-style: normal;
		line-height: normal;
		font-family: var(--font-bold);
		color: var(--color-secundario);
	}
	.nav__resaltados {
		font-size: 3.125rem;
		margin-right: .5rem;
		color: var(--color-principal);
		font-family: var(--font-titulos);
	}
}
@media only screen and (min-width: 1024px) {	
	nav {
		-webkit-clip-path: polygon(0 0, 101% 0, 93% 208%, 0 100%, 0 10rem);
		clip-path: polygon(0 0, 101% 0, 93% 208%, 0 100%, 0 10rem);
	}	
	.nav__logo {
		height: 4rem;
	}
}
/*PASOS*/
.pasos {
	width: 100%;
	min-height: 100%;
  	position: relative;
	overflow-x: hidden;
  	background: -o-linear-gradient(315deg, #F5333F 50%, #011E41 50%);
  	background: linear-gradient(135deg, #F5333F 50%, #011E41 50%);
}
/*PASOS UNO*/
.pasos__uno {
	min-height: 100vh;
	width: 100%;
	background-color: #FFFFFF;
	display: -webkit-box;
   	display: -ms-flexbox;
   	display: flex;
  	-webkit-box-align: safe center;
    -ms-flex-align: safe center;
    align-items: safe center;
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
	-webkit-clip-path: polygon(4rem 0, 100% 0, 100% calc(100% - 5rem), calc(100% - 4rem) 100%, 0 100%, 0 5rem);
    clip-path: polygon(4rem 0, 100% 0, 100% calc(100% - 5rem), calc(100% - 4rem) 100%, 0 100%, 0 5rem);
}
.pasos__uno::before {
	content: "";
	width: 1.46456rem;
	height: 17.92819rem;
	background-color: var(--color-principal);
	position: absolute;
	bottom: -4.125rem;
	right: 0;
	-webkit-transform: rotate(34.123deg);
	-ms-transform: rotate(34.123deg);
	transform: rotate(39.123deg);
}
.fondoMobile, .fondoDesktop, .fondoTablet {
	display: none;
	pointer-events: none;
}
@media only screen and (min-width: 375px) {
	.fondoMobile {
		right: 0;
		top: 7rem;
		height: 21rem;
		display: block;
		position: absolute;
	}
}
@media only screen and (min-width: 768px) {
	.fondoMobile {
		height: 50vh;
		top: 25vh;
	}
}
@media only screen and (min-width: 1024px) {
	.pasos__uno {
		-webkit-clip-path: polygon(5rem 0, 100% 0, 80% 100%, 0 100%, 0 10rem);
        clip-path: polygon(5rem 0, 100% 0, 80% 100%, 0 100%, 0 10rem);
	}
	.pasos__uno::before {
		display: none;
	}
	.fondoMobile {
		display: none;
	}
	.fondoTablet {
		top: 5%;
		right: -6.25rem;
		height: 90%;
		display: block;
		position: absolute;
	}
}
@media only screen and (min-width: 1280px) {	
	.fondoDesktop {
		top: 0;
		right: -6.25rem;
		height: 100%;
		display: block;
		position: absolute;
	}
	.fondoTablet {
		display: none;
	}
}
@media only screen and (min-width: 1440px) {
	.pasos__uno {
		-webkit-clip-path: polygon(10rem 0, 100% 0, 80% 100%, 0 100%, 0 15rem);
        clip-path: polygon(10rem 0, 100% 0, 80% 100%, 0 100%, 0 15rem);
	}
	.fondoDesktop {
		right: 0;
	}
}
/*INTRODUCCION*/
.introduccion {
	width: calc(100% - 5.5rem);
	margin: 0 auto;
}
.introduccion__cr {
	height: 3.14038rem;
}
.titulos {
	font-size: 1rem;
	font-style: normal;
	line-height: normal;
	color: var(--color-secundario);
	font-family: var(--font-bold);
}
.titulos__resaltados {
	font-size: 7.36019rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	display: block;
	color: var(--color-principal);
	font-family: var(--font-titulos);
}
.descripcion {
	margin: 1rem 0 1.23rem 0;
	max-width: 14.6rem;
}
.descripcion, .descripcion p {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: var(--font-open);
}
.items {
	gap: 1.4rem;
	width: 13rem;
	max-width: 100%;
}
.items__container {
	cursor: pointer;
}
.items__img {
	max-height: 2.2505rem;
}
.introduccion__items {
	padding: 0;
	border: none;
	background-color: transparent;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	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;
	color: var(--color-principal);
	display: block;
  	margin: 2.06rem auto 1.44rem auto;
}
.items__info {
	display: none;
}
.items__titulo {
	font-size: 0.75rem;
	font-style: normal;
	text-align: center;
	line-height: normal;
	text-align: center;
	font-family: var(--font-bold);
	color: var(--color-secundario);
}
.overlay .items__titulo {
	text-align: left;
}
.items__small {
	font-size: 0.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: block;
	text-align: center;
	margin-top: .12rem;	
	color: var(--color-principal);
}
.btn--inicio {
	margin: 0 auto;
}
.introduccion__powered {
	margin: 1.37rem auto;
}
.masInfo {
	padding: 0;
	margin: 0;
	border: none;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	cursor: pointer;
	line-height: normal;
	background-color: transparent;
	color: var(--color-principal);
}
.inicio {
	margin-bottom: 3rem;
}
@media only screen and (min-width: 400px) {
	.items {
		width: 100%;
	}
}
@media only screen and (min-width: 768px) {		
	.titulos {
		font-size: 1.4375rem;
	}
	.titulos__resaltados {
		font-size: 9.375rem;
	}
	.descripcion {
		max-width: 70%;
		margin: 1.44rem 0 1rem 0;
	}
	.descripcion p {
		font-size: 1rem;
	}
	.introduccion__cr {
		height: 4rem;
	}
	.items {
		gap: 1.62rem 1rem;
		width: 27rem;
		-webkit-box-pack: justify;    
	    -ms-flex-pack: justify;    
	    justify-content: space-between;
	}
	.items__container {
		-ms-flex-preferred-size: calc(33.33% - 1rem);
        flex-basis: calc(33.33% - 1rem);
	}
	.items__info {
		display: block;
	}
	.introduccion__items {
		display: none;
	}
	.btn--inicio {
		margin: 1.38rem 0 0 0;
	}
	.introduccion__powered {
		display: none;
	}
	.items__img {
		max-height: 3.125rem;
		margin: 0 auto .62rem auto;
	}
}	
@media only screen and (min-width: 1024px) {
	.introduccion {
		width: calc(100% - 10rem);
	}
	.descripcion p {
		font-size: .875rem;
	}
	.titulos__resaltados {
		font-size: 7rem;
	}
}
@media only screen and (min-width: 1280px) {
	.descripcion {
		width: 32.1875rem;
	}
	.descripcion p {
		font-size: 1rem;
	}
	.titulos__resaltados {
		font-size: 9.375rem;
	}
}
@media only screen and (min-width: 1440px) {
	.introduccion {
		width: inherit;
		margin-left: 11rem;
	}
}
@media only screen and (min-width: 1920px) {
	.introduccion {
		margin-left: 20rem;
	}
}
@media only screen and (min-width: 1024px) and (max-height: 700px) {
	.items {
		width: 75%;
		-ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
	}
	.items__container {
		-ms-flex-preferred-size: calc(100% / 6);    
	    flex-basis: calc(100% / 6);
	}
	.items__img {
		max-height: 2.5rem;
	}
}
@media only screen and (min-width: 1280px) and (max-height: 800px) {
	.inicio {
		margin-bottom: 2rem;
	}	
	.items {
		gap: 1rem;
		width: 27rem;
		flex-wrap: wrap;
	}
	 .items__container {
		-ms-flex-preferred-size: calc(33.33% - 1rem);
		flex-basis: calc(33.33% - 1rem);
  	}
	.titulos__resaltados {
		font-size: 7rem;
	}
	.items__img {
		max-height: 2.5rem;
	}
	.descripcion {
		width: 42.188rem;
	}
}
/*PASOS DOS*/
.pasos__dos {
  	top: 4rem;
	opacity: 0;
 	width: 100%;
	position: fixed;
	pointer-events: none;
	height: calc(100% - 4rem);
	background-size: contain;
    background-repeat: repeat;
	background-image: url(https://stockcrowd.s3.amazonaws.com/landings/cr/basicos/img/fondo-camion.webp);
}
.pasos__dos--active {
	opacity: 1;
	z-index: 9;
	pointer-events: all;
	-webkit-transition: opacity 0.2s;
  	-moz-transition: opacity 0.2s;
  	transition: opacity 0.2s;
}
.seleccion {
	height: 100%;
	overflow: auto; 
  	scrollbar-width: none;  
	scroll-behavior: auto;
}
.seleccion::-webkit-scrollbar {
  	display: none;
}
.seleccion__img {
	height: 100%;
	display: block;
    pointer-events: none;
}
.camion {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	overflow-x: auto;
  	scrollbar-width: none; 
}
.camion::-webkit-scrollbar {
  	display: none;
}
.camion__svg {
	display: block;
	margin: 0 auto;	
}
.camion__svg--pointer {
	pointer-events: none;
}
.camion__svg--final {
	-webkit-transform: translateX(300%);
	-ms-transform: translateX(300%);
	transform: translateX(300%);
	-webkit-transition: transform 3s;
	-webkit-transition:-webkit-transform 3s;
	transition:-webkit-transform 3s;
	-o-transition:transform 3s;
	transition:transform 3s;
	transition:transform 3s, -webkit-transform 3s;
}
.powered {
	top: 50%;
	left: 1.31rem;
	display: none;
	position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
	.pasos__dos {
		top: 6.25rem;
		height: calc(100% - 6.25rem);
	}
}
@media only screen and (min-width: 0px) and (orientation: portrait) {	
	.camion__svg--mobile {
		height: 90%;
	}
}
@media only screen and (min-width: 1024px) {
	.camion {
		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;
	}
	.camion__svg {
		max-height: 100%;
	}
	.camion__svg--mobile {
		margin-left: auto;
	}
}
@media only screen and (min-width: 1440px) {
	.powered {
		display: block;
	}
	.camion__svg {
		max-height: 80%;
	}
}
/*SELECCION CAMION*/
.no-pointer {
	pointer-events: none;
}
.imgPrincipal {
	cursor: pointer;
}
.hover, .selected, .tooltip {
	opacity: 0;
	pointer-events: none;
}
/*SUBIR-BAJAR PERSIANAS*/
@-webkit-keyframes subir {
	from { -webkit-transform: translateY(0); transform: translateY(0); }
	to   { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}
@keyframes subir {
	from { -webkit-transform: translateY(0); transform: translateY(0); }
	to   { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}
@-webkit-keyframes bajar {
	from { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
	to   { -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes bajar {
	from { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
	to   { -webkit-transform: translateY(0); transform: translateY(0); }
}
#Persiana_izquierda_anim,
#Persiana_derecha_anim {
    transform-box: fill-box;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
	-webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}  
#Persiana_izquierda_anim.abrirInicial, 
#Persiana_derecha_anim.abrirInicial {
	-webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.abrir {
	-webkit-animation: subir 2s ease-in-out forwards;
	animation: subir 2s ease-in-out forwards;
}
.cerrar {
	-webkit-animation: bajar 2s ease-in-out forwards;
	animation: bajar 2s ease-in-out forwards;
}
/*PUERTAS DE ABAJO*/
@-webkit-keyframes abrirPuerta {
	0% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); }
	100% { -webkit-transform: rotateX(-90deg); transform: rotateX(-90deg); }
}
@keyframes abrirPuerta {
	0% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); }
	100% { -webkit-transform: rotateX(-90deg); transform: rotateX(-90deg); }
}
@-webkit-keyframes cerrarPuerta {
	0% { -webkit-transform: rotateX(-90deg); transform: rotateX(-90deg); }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); }
}
@keyframes cerrarPuerta {
	0% { -webkit-transform: rotateX(-90deg); transform: rotateX(-90deg); }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); }
}
.puerta-grupo {
	-webkit-transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	transform-origin: bottom center;
	transform-box: fill-box;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}
.puerta-grupoCerrado {
	-webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.abrirPuerta {
	-webkit-animation: abrirPuerta 1.2s ease-out forwards;
	animation: abrirPuerta 1.2s ease-out forwards;
}
.cerrarPuerta {
	-webkit-animation: cerrarPuerta 1.2s ease-out forwards;
	animation: cerrarPuerta 1.2s ease-out forwards;
}
/*MENSAJES*/
.mensaje {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	text-align: center;
	width: 100%;
	padding-bottom: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	opacity: 1;
	pointer-events: all;
	-webkit-transition: opacity 0.4s;
  	-moz-transition: opacity 0.4s;
  	transition: opacity 0.4s;
}
.mensaje--opacity {
	opacity: 0;
	pointer-events: none;
}
.mensaje__container {
	border-radius: 0.625rem;
	border: 1px solid #FFFFFF;
	margin-bottom: 1rem;
	padding: 0 2rem;
	gap: 1.88rem;
	background-color: var(--color-principal);
	-webkit-box-shadow: 0 4px 24px 0 #828183, 0 4px 24px 0 rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 24px 0 #828183, 0 4px 24px 0 rgba(0, 0, 0, 0.08);
	min-height: 3.625rem;
}
.mensaje__container--active {
	padding: 0 1.5rem;
}
.mensaje__texto {
	color: #FFFFFF;
	font-size: 1rem;
	font-style: normal;
	line-height: 1.5rem;
	font-family: var(--font-medium);
}
.mensaje__small, .mensaje__btn {
	color: #FFFFFF;
	font-size: 0.875rem;
	font-style: normal;
	line-height: normal;	
	width: 100%;
	font-family: var(--font-medium);
}
.mensaje__btn {
	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;
	border: none;
	width: auto;
	cursor: pointer;
	background-color: transparent;
}
.mensaje__small--opacity {
	opacity: 0;
}
.btn-donacion {
	height: 2.375rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 1rem;
	background-color: #FFFFFF;
	color: var(--color-secundario);
	border:none;
	cursor: pointer;
	font-family: var(--font-bold);
}
.btn-donacion:hover {
	color: #FFFFFF;
	background: -webkit-gradient(linear, left bottom, left top, from(#011E41), to(#034DA7));
	background: -o-linear-gradient(bottom, #011E41 0%, #034DA7 100%);
	background: linear-gradient(0deg, #011E41 0%, #034DA7 100%);
}
.mensaje__texto--desktop {
	display: none;
}
@media only screen and (min-width: 768px) {
	.mensaje__texto--mobile {
		display: none;
	}
	.mensaje__texto--desktop {
		display: block;
	}
}
@media only screen and (min-width: 1280px) {
	.mensaje {
		padding-bottom: 2.06rem;
	}
}
/*PROGRESO*/
.progreso {
	position: absolute;
	z-index: 2;
	top: 0;
	width: 100%;
	height: 5.5rem;
	background: rgba(24, 35, 62, 0.70);
	padding: 0 1.75rem;
	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;
}
.progreso__container {
	width: 100%;
}
.progreso__recaudacion {
	border-radius: 1rem;
	margin-bottom: .5rem;
	border: 1px solid #FFFFFF;
}
.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, left top, right top, from(#8F1E25), to(#F5333F));
    background: -o-linear-gradient(left, #8F1E25 0%, #F5333F 100%);
    background: linear-gradient(90deg, #8F1E25 0%, #F5333F 100%);
}
.progreso__texto, .progreso__strong {
	font-size: 0.875rem;
	font-style: normal;
	line-height: normal;
	color: #FFFFFF;
	font-family: var(--font-medium);
}
.progreso__strong {
	font-family: var(--font-bold);
}
@media only screen and (min-width: 1024px) {
	.progreso {
		width: 70rem;
		max-width: calc(100% - 4rem);	
		background: none;
		left: 50%;
    	transform: translateX(-50%);
    	-webkit-transform: translateX(-50%);
	}
}
/*EXPLICACION*/
.explicacion {
	z-index: 9;
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	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--inicial {
	pointer-events: none;
	z-index: -1;
	opacity: 0;
}
.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;
	}
}
/*OVERLAY*/
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	min-height: 100%;
	top: 0;
	left: 0;
	z-index: 9;
	opacity: 0;
	background-color: rgba(1, 30, 65, 0.60);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: safe center;
    -ms-flex-align: safe center;
    align-items: safe center;
	pointer-events: none;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.overlay--open {
	opacity: 1;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
	overflow: auto;
	pointer-events: all;
}
.overlay--cantidad {
	-webkit-box-align: safe center;
    -ms-flex-align: safe center;
    align-items: safe center;
}
.overlay__contenido {
	text-align: center;
}
.overlay__contenido--cantidad {
	gap: 1rem;
}
.overlay__modal {
	border-radius: 0.5rem;
	background: #FFFFFF;
	margin: 1rem auto;
	padding: 3rem 1.5rem;
	max-width: calc(100% - 2rem);
	position: relative;
}
.overlay__modal--cantidad {
	width: 20rem;
	border-radius: 0.5rem;
	padding: 3rem 1.5rem 1.5rem 1.5rem;
}
.overlay__modal--agradecimiento, .overlay__close--masInfo {
	border: 1px solid #F5333F;
	-webkit-box-shadow: 3px 3px 11px 0 rgba(255, 255, 255, 0.25);
    box-shadow: 3px 3px 11px 0 rgba(255, 255, 255, 0.25);
}
.overlay__close {
	padding: 0;
	border: none;
	cursor: pointer;
	background-color: transparent;
	position: absolute;
	top: 1rem;
	right: 1rem;
}
.overlay__close--cantidad {
	top: 1rem;
	right: 1rem;
}
.cantidad__input {
	position: relative;
	margin: 0 auto;
}
input {
	border-radius: 0.5rem;
	border: 1px solid rgba(28, 55, 102, 0.40);	
	height: 3rem;
	padding: 1.5rem 3rem 1.5rem 1.5rem;
	width: 15.375rem;
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.cantidad__moneda {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	text-align: center;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5rem;
	letter-spacing: -0.01125rem;
	font-family: var(--font-montserratSemiBold);
}
label {	
	text-align: center;
	color: #1C3766;
	font-family: var(--font-montserratSemiBold);
}
.btn--cantidad {
	width: 15.375rem;
	height: 3rem;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 0.5rem;
}
.btn--disabled {
	opacity: 0.5;
}
.desgravacion {
	color: #1C3766;
	text-align: center;
}
.agradecimiento__titulo {
	color: var(--color-principal);
	font-size: 4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: var(--font-titulos);
}
.agradecimiento__titulo strong {
	display: block;
	font-size: 1.25rem;
	color: var(--color-secundario);
	line-height: normal;
	margin-top: -.8rem;
	font-family: var(--font-bold);
}
.agradecimiento__svg {
	margin: 2rem auto;
}
.agradecimiento__descripcion p {
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: var(--font-open);
}
.redes {
	list-style-type: none;
	margin: 2rem auto;
	padding: 0;
	gap: 0.65rem;
}
.path-opacity {
	opacity: 0;
	-webkit-transition: opacity 0.2s;
  	-moz-transition: opacity 0.2s;
  	transition: opacity 0.2s;
}
.redes__enlaces {
	cursor: pointer;
}
.redes__enlaces:hover .path-opacity {
	opacity: 1;
	-webkit-transition: opacity 0.2s;
  	-moz-transition: opacity 0.2s;
  	transition: opacity 0.2s;
}
.agradecimiento__enlace {
	color: #323232;
	text-align: center;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	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;
	font-family: var(--font-secundaria);
}
.overlay__modal--productos {
	width: 100%;
	padding: 3.75rem 1rem;
	max-width: calc(100% - 2rem);
}
.productos__container {
	gap: 1rem;
	text-align: left;
	padding: 1.38rem 0;	
	width: calc(100% - 4rem);
	margin: 0 auto;
	border-bottom: 0.0625rem solid var(--color-secundario);
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.productos__container:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.productos__items {
	-webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  	gap: .5rem;
	margin-bottom: 1rem;
}
.productos__img {
	max-height: 3.125rem;
}
.productos__descripcion p {
	color: #000;
	font-size: 0.75rem;
	line-height: normal;
}
.productos__descripcion strong {
	font-weight: 600;
}
.btn--productos {
	margin:  0 auto;
}
.productos__titulos {
	font-style: normal;
	line-height: normal;
	font-size: 9.375rem;
	line-height: 1;
  	display: -webkit-inline-box;
  	display: -ms-inline-flexbox;
  	display: inline-flex;
  	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	color: var(--color-principal);
	font-family: var(--font-titulos);
}
.productos__subtitulo {
	font-style: normal;
	line-height: normal;
	font-size: 1.25rem;
	color: var(--color-secundario);
	font-family: var(--font-bold);
}
.productos__contenido {
	margin: 2.69rem 0;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.overlay__descripcionMasInfo {
	margin: 2rem 0;
}
.overlay__descripcionMasInfo p {
	font-family: var(--font-open);
}
.productos__strong,
.productos__span {
    display: block;
    line-height: 1.1;    
    margin: 0;
    padding: 0;
	font-size: 1rem;
	font-family: var(--font-semibold);
}
.productos__span {
	color: #878787;
	font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
	.overlay__modal {
		padding: 3rem;
		width: 35.8125rem;
	}
	.overlay__modal--cantidad {
		width: 23.8125rem;
	}
	.agradecimiento__titulo {
		font-size: 7.0625rem;
	}
	.agradecimiento__titulo strong {
		font-size: 2.125rem;
		margin-top: -1.2rem;
	}
	.overlay__modal--productos {
		width: 100%;
	}
	.productos__subtitulo {
		font-size: 1.4375rem;
	}
	.titulos__resaltados--overlay {
		font-size: 7.0625rem;
	}
	.titulos--overlay {
		font-size: 1.25rem;
	}
}
@media only screen and (min-width: 1024px) {	
	.overlay__modal--productos {
		width: 73.25rem;
	}
	.productos__container {
		width: calc(100% / 3);
		padding: 0 1rem;
		margin: inherit;
		border-bottom: none;
		border-right: 0.0625rem solid var(--color-secundario);
	}
	.productos__container:last-child, .productos__container:nth-child(3) {
		border: none;
		padding-right: 0;
	}
	.productos__container:first-child {
		padding-left: 0;
	}
}
@media only screen and (min-width: 1280px) {
	.productos__contenido {
		-ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
	}
	.productos__container {
		width: calc(100% / 6);
		padding: 0 1.44rem;
	}	
	.productos__container:nth-child(3) {
		padding: 0 1.44rem;
		border-right: 0.0625rem solid var(--color-secundario);
	}
}