html,
body {
	height: 100%;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	font-weight: 300;
}

.loading {
	position: fixed;
	height: 100%;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: white;
	z-index: 9999;
}

.wrapper {
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.centering {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.userContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 1rem;

	-webkit-box-shadow: -17px 20px 15px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);

	        box-shadow: -17px 20px 15px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
	border: 0;
	border-radius: 0.5rem;
	background-color: white;
}

.transparentCard {
	background: transparent;
	position: relative;
	min-height: 13vh;
}

.transparentCard img {
	/* position: absolute; */
	/* bottom: -20px; */
	/* left: 50%; */
	/* -webkit-transform: translateX(-50%); */
	/* transform: translateX(-50%); */
	height: 15vh;
	width: 15vh;
}

.userCard {
	text-align: center;
	/* padding-top: 4rem; */
	font-size: 1.5rem;
}

.userCard a {
	text-decoration: none;
	color: #0070f3;
	font-weight: 500;
	max-width: 80vw;
}

.name {
	font-weight: 400;
}

.emailLink {
	display: inline-block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	vertical-align: top;
}

.main {
	padding-top: 2rem;
	z-index: 5;
	position: relative;
}

.topBanner {
	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;
	padding-top: 1rem;
}

.historyLogo {
	padding: 1rem;
}

.bottomBannerBlue {
	position: absolute;
	bottom: -15px;
}

.qrCode {
	max-width: 80vw;
	margin: auto;
}

#qrAuthorize {
	background-color: #0070f3;
	border: 1px solid #f8f9fa;
	border-radius: 5%;
	padding: 0.5rem;
	font-family: system-ui;
	min-width: 54px;
	text-align: center;
	cursor: pointer;
	/* max-width: 80vw; */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


#qrAuthorize p {
	margin: 0 auto;
	padding: 0 0 0.4em;
	font-weight: 500;
	font-size: 1.6rem;
	color: white;
	max-width: 14ch;
}

#qrAuthorize img {
	height: 13rem;
	width: 13rem;
	margin-top: 1rem;
	padding: 0.5rem 2rem;
	border-radius: 58%;
}

.logoThing {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}

.logoThing span {
	font-size: 2rem;
	font-weight: 500;
	color: white;
	text-shadow: 3px 3px 0px #4d5eb3;
}

.cover {
	background-color: #0070f3;
	position: relative;
	overflow-x: hidden;
	overflow-y: hidden;
	padding-bottom: 2.8rem;
}

.historyLogo, #qrAuthorize{
	-webkit-tap-highlight-color: #00000000;
	cursor: pointer;
}

@media screen and (max-width: 480px) {
	.userContainer {
		min-width: 80vw;
	}
}

@media screen and (min-width: 480px) {
	body {
		max-width: 480px;
		margin: 0 auto;
	}
}