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-family: Raleway;
}
/*CONTENEDOR*/
.contenedor {
	margin: 0 auto;
}
/*BODY - HTML*/
.html--cuadro {
	height: 100%;
	overflow-x: hidden; 
}
.html--cuadro body {
	opacity: 1;
	height: 100%;  	
  	position: relative;
  	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;
    overflow-x: hidden;
}
.cuadro {
	height: 100%;
	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;
}
/*FLEX*/
.html--cuadro .flex, .html--cuadro .flex-align, .html--cuadro .flex-between, .html--cuadro .flex-center {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.html--cuadro .flex-align, .html--cuadro .flex-between {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.html--cuadro .flex-between {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.html--cuadro .flex-center {
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.html--cuadro .container {
	max-width: 100%;
}
/*LOGO*/
.volverCamp {
	padding: 0;
	background-color: transparent;
	border: none;	
	gap: 1rem;
	color: var(--color-principal);
	text-decoration: underline;
	display: none;
}
.volverCamp__img {
	max-width: 100%;
	max-height: 3.125rem;
}
.barra-inicial {
	position: absolute;
	top: 1rem;
	left: 1.5rem;
	width: calc(100% - 3rem);
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	gap: 1rem;
}
@media only screen and (min-width: 768px) {
	.volverCamp {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}	
/*RETICULA*/
.introduccion {  
	text-align: center;	
	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;
}
.introduccion--opacity {
	opacity: 0;
	-webkit-transition: opacity .1s ease-in-out;
    -o-transition: opacity .1s ease-in-out;
    transition: opacity .1s ease-in-out;
}
.introduccion__container {
	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;
	gap: 1rem;
}
h1 {
	font-size: 2rem;
	line-height: 1.2;
	color: #000000;
}
.introduccion .btn {
	margin-bottom: 2.5rem;
}
.html--cuadro .container {
	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;
  	width: calc(100% - 2rem);
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin-top: 6.125rem;
}
.html--cuadro .reticula {
	position: relative;
}
.html--cuadro .reticula__img {
	max-width: 100%;
  	max-height: calc(100vh - 7rem);
	display: block;
}
.html--cuadro .reticula__container {
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	pointer-events: none;
}
.html--cuadro .box {
	cursor: pointer;
	width: calc(100% / 25);
	height: calc(100% / 10);
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 1;
	outline: 1px solid rgba(0, 0, 0, .3);
  	background-color: rgba(0, 0, 0, .5);  
  	-webkit-transition: opacity .9s ease-in-out;
    -o-transition: opacity .9s ease-in-out;
    transition: opacity .9s ease-in-out;
    position: relative;
    pointer-events: none;
}
.html--cuadro .box--intro {
	opacity: 0;
}
.html--cuadro .box:hover, .html--cuadro .box--active, .html--cuadro .box--inactive {
	background-color: transparent;
}
.html--cuadro .box--inactive {
	pointer-events: none;
}
.html--cuadro .box::before {
	position: absolute;
	top: -37px;
	background: var(--color-principal);
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 8px 10px;
	border-radius: 3px;
	opacity: 0;
	-webkit-transition: all .3s ease-int-out;
	-moz-transition: all .3s ease-int-out;
	transition: all .3s ease-int-out;
	font-weight: 700;
	font-size: 1rem;
	color: #FFFFFF;
	letter-spacing: -0.2px;
	text-align: center;
	pointer-events: none;
	z-index: 9;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	content: "5 \20AC"; 
}
.html--cuadro .box:hover::before {
	top: -42px;
	opacity: 1;
}
.html--cuadro .box::after {
	position: absolute;
	width: 0;
	height: 0;
	top: -7px;
	border-top: 10px solid var(--color-principal);
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid transparent;
	content: "";
	opacity: 0;
	-webkit-transition: all .3s ease-int-out;
	-moz-transition: all .3s ease-int-out;
	transition: all .3s ease-int-out;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.html--cuadro .box:hover::after {
	top: -7px;
	opacity: 1;
	pointer-events: none;
}
.html--cuadro .donacion {	
	margin-top: 1rem;
	opacity: 1;
	width: 100%;
	text-align: center;
	-webkit-transition: opacity .9s ease-in-out;
    -o-transition: opacity .9s ease-in-out;
    transition: opacity .9s ease-in-out;    
	border: 1px solid var(--color-principal);
    padding: .8rem;
}
.html--cuadro .donacion--intro {
	opacity: 0;
	-webkit-transition: opacity .9s ease-in-out;
    -o-transition: opacity .9s ease-in-out;
    transition: opacity .9s ease-in-out; 
}
.html--cuadro .donacion__intro {
	border: 1px solid var(--color-principal);
	width: 100%;
	text-align: center;
    padding: 1rem;
	background-color: #FFFFFF;
}
.html--cuadro .donacion__msg {
	margin: 0 1rem;
	font-weight: 600;
	color: var(--color-principal);
}
.html--cuadro .donacion__msg--desktop {
	display: none;
}
.html--cuadro .no-mobile {
	display: none;
}
.html--cuadro .seleccion {
	position: relative;
	width: calc(50% - .25rem);
	background-color: rgb(239, 239, 239);
	min-height: 3rem;
}
.html--cuadro .seleccion__label {
	font-size: 0.75rem;
	color: rgb(21, 56, 87);
	font-weight: normal;
	position: absolute;
	top: 5px;
	left: 15px;
}
.html--cuadro .seleccion__select {
	border: none;
	font-size: 1rem;
	color: rgb(21, 56, 87);
	padding: 0;
	width: 100%;
	padding: 19px 8px 7.1px 16px;
	background-color: transparent;
	background-color: rgba(239, 239, 239, 0.7);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: none;
}
.html--cuadro .seleccion__svg {
	top: 50%;
	right: .5rem;
	position: absolute;
	pointer-events: none;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.html--cuadro .btn--donar {
	height: auto;
	min-height: 3rem;
}
.html--cuadro .flex--seleccion {
	gap: 1rem;
	margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
	.introduccion {
		position: absolute;
		height: 100%;
		width: 100%;
		z-index: 1;
		-ms-flex-line-pack: center;
        align-content: center;
		margin-bottom: 0;
  		background-color: rgba(0, 0, 0, .5);
	}
	.introduccion__container {
		width: 70%;
		gap: 2rem;
	}
	h1 {
		font-size: 3rem;
		color: #FFFFFF;
	}
}
@media only screen and (min-width: 1024px) {
	.html--cuadro .container {
		margin-top: 0;
		width: calc(100% - 11.875rem);
	}
	.html--cuadro .donacion {
		width: auto;
    	bottom: 1.5rem;
		position: fixed;
		left: 50%;
  		transform: translate(-50%);
  		-webkit-transform: translate(-50%);
  		-webkit-transition: background-color .3s ease-in-out;
  		-o-transition: background-color .3s ease-in-out;
  		transition: background-color .3s ease-in-out;  		
	}
	.html--cuadro .donacion__intro {
		min-height: 4rem;
  		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
    	-webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0.75rem;
		background-color: #FFFFFF;
	}
	.html--cuadro .donacion__msg--mobile, .html--cuadro .no-desktop {
		display: none;
	}
	.html--cuadro .donacion__msg--desktop {
		display: block;
	}
	.html--cuadro .no-mobile {
		display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
	}	
	.html--cuadro .donacion__btn {
		gap: 2rem;
	}
	.html--cuadro .box {
		pointer-events: all;
	}
	.html--cuadro .box--intro {
		pointer-events: none;
	}	
	h1 {
		font-size: 3.5rem;
		line-height: 1.1;
	}
}
@media only screen and (min-width: 1280px) {	
	.introduccion__container {
		width: 55%;
	}
	h1 {
		font-size: 4.25rem;
		line-height: 1.1;
	}
}
@media only screen and (min-width: 1024px) and (max-height: 599px) {
	h1 {
		font-size: 1.5rem;
	}
}
/*BTN*/
.html--cuadro .btn {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: normal;
	height: 2.5rem;
	cursor: pointer;
	padding: 0 1.5rem;
	font-stretch: normal;
	font-style: normal;
	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;
	text-decoration: none;
	background-color: var(--color-principal);
	color: #FFFFFF;
	border: none;
}
.html--cuadro .btn--disabled {
	opacity: 0.5;
	cursor: no-drop;
}
.cant {
	padding: 0;
	border: none;
	color: var(--color-principal);
	text-decoration: underline;
	background-color: transparent;
	margin-top: .5rem;
}
.overlay--cant {
	background-color: rgba(220, 232, 238, .7);
	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;
	visibility: hidden;
  	opacity: 0;
  	-webkit-transform: scale(0.9);
  	transform: scale(0.9);
  	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  	transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}
.overlay--cant.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;
}
.overlay__cant {
	background-color: #FFFFFF;
	border: 1px solid var(--color-principal);
	padding: 5rem 3rem 3rem 3rem;
	text-align: center;
	position: relative;
}
input {
	display: block;
	width: 100%;
	border: 1px solid var(--color-principal);
	height: 2.5rem;
	padding: 0 1rem;
}
.cantidad__regresar {
	position: absolute;
    top: 1rem;
    left: 1rem;
    padding:0;
    border:none;
    cursor: pointer;
    background-color: #fff0;
    font-size: .938rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: .00438rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align:center;
    -ms-flex-align: center;
    align-items: center;
    gap:.5rem;
    color: var(--color-principal);
    cursor: pointer;
}
.labels {
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.5rem;
	letter-spacing: .025rem;
	margin-bottom: .75rem;
	display: block;	
}
.cantidad__small {
	color: #000;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25rem;
	display: block;
	margin: .5rem 0 1rem 0;
}
.overlay--cant .btn {
	margin-top: 1rem;
}
.cuadro__enlaces {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 1rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.idiomas {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	gap: 0.5rem;
	width: auto;
}
.idiomas button {
	padding: 0;
	margin: 0;
	border: none;
	text-transform: uppercase;
	color: var(--color-principal);
	font-weight: 400;
}
.idiomas button.idiomas__btn--active {
	font-weight: 700;
}
.idiomas__btn {
	position: relative;
}
.idiomas__btn::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 0.125rem;
	background-color: var(--color-principal);
	bottom: 0;
	left: 0;
	pointer-events: none;
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	opacity: 0;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition: -webkit-transform 300ms ease-in-out;
	transition: -webkit-transform 300ms ease-in-out;
	-o-transition: transform 300ms ease-in-out;
	transition: transform 300ms ease-in-out;
	transition: transform 300ms ease-in-out,-webkit-transform 300ms ease-in-out;
}
.idiomas__btn--active::before, .idiomas__btn:hover::before {
	opacity: 1;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
@media only screen and (min-width: 768px) {
	.idiomas {
		padding-left: 1rem;
		border-left: 1px solid var(--color-principal);
	}
}
/*POWERED*/
@media only screen and (min-width: 1024px) {	
	.html--cuadro .powered {
		position: absolute;
		z-index: 1;
		bottom: 2rem;
		left: 2rem;
	}
}
.html--cuadro .hide {
	display: none;
}