@charset "UTF-8";
/* CSS Document */
html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	color: #333;
	font-size: 1em;
	background: #D5DBD8;
}
header {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 222px;
	top: 0;
	background-color: #7CC64C;
}
h1, h3 {
	font-weight: 100;
}
#contenedor {
	width: 100%;
	height: 100%;
	position: fixed;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	z-index: 2;
}
.marco {
	width: 870px;
	-webkit-flex: none;
	flex: none;
	z-index: 2;
	overflow: hidden;
	background-color: #FFF;
	border-radius: 3px;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.contenido {
	margin: 68px 90px 64px 90px;
	position: relative;
}
.contenido .qr {
	position: absolute;
	top: 0;
}
.contenido .qr img {
	max-width: 240px;
}
.contenido .instrucciones {
	padding: 0 0 0 calc(240px + 78px + 6px);
	min-height: 240px;
}
.instrucciones img.logo {
	max-width: 54px;
}
.pie {
	background-color: #f5f5f5;
	padding: 20px 50px;
	font-size: .875rem;
}
.pie p {
	margin-top: 0;
}
.pie img {
	max-width: 150px;
}

@media screen and (max-width: 880px), screen and (max-height: 550px) {
	#contenedor {
		position: fixed;
		display: block;
		overflow: auto;
	}
	.contenido {
		margin: 0 auto;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.marco {
		width: 100%;
		min-width: 250px;
	}
}

@media screen and (max-width: 880px) {
	.contenido {
		width: 80%;
		min-width: 240px;
		overflow: hidden;
	}
	.contenido .instrucciones {
	padding: 0;
	min-height: auto;
	}
	.contenido .qr {
		position: relative;
		text-align: center;
	}
}
