

/* FONT IMPLEMENTATION */

@font-face {
  font-family: TeleNeo;
  src: url("/fonts/teleneo-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: TeleNeo;
  src: url("/fonts/teleneo-medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: TeleNeo;
  src: url("/fonts/teleneo-extrabold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}



* {
  border: 0 none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  position: relative;
  vertical-align: baseline;
}

body {
	background: url("images/bg.png") fixed 80% / cover;
	background-color: #0A1135;
	color: #4F273B;
	font-family: "TeleNeo", sans-serif;
	font-size: 20px;
	margin: auto;
	padding: 0 16px 80px 16px;
	-webkit-font-smoothing: antialiased;
}

strong { font-weight: 900; }

header {
	align-items: center;
	display: flex;
	margin: auto;
	margin-top: 16px;
	max-width: 1000px;
	padding-top: 24px;
}

	header a.button, a.slackbutton {
		background: rgba(255, 255, 255, 0.2);
		border-radius: 16px;
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		color: white;
		cursor: pointer;
		font-weight: 900;
		padding: 16px 24px;
		text-decoration: none;
		transition: all 0.2s linear;
	}
	
		header a.button {
			align-items: center;
			display: flex;
			position: absolute;
			right: 0;
			padding-left: 16px;
			top: 0;
		}
		
			header a.button img {
				border-radius: 30px;
				height: 24px;
				margin-right: 8px;
				width: 24px;
			}

h1 {
	color: white;
	font-size: 4rem;
	font-weight: 900;
}

	h1 a { text-decoration: none; }
	
	h1 img {
		height: 128px;
		margin: 0 24px 0 0;
		width: auto;
	}

h3 {
	color: #e20074;
	font-size: 2rem;
	font-weight: 900;
}

h4 {
	font-size: 1.5rem;
	font-weight: 900;
}

h5 {
	color: white;
	font-size: 2rem;
	font-weight: 900;
	opacity: 0.7;
}

nav {
	display: flex;
	flex-wrap: wrap;
	margin: 40px auto 8px auto;
	text-align: center;
	max-width: 1000px;
}

	nav div.tabs {
		background: rgba(255, 255, 255, 0.2);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-radius: 16px;
		padding: 4px;
	}

	nav button {
		background: transparent;
		border: 0;
		border-radius: 12px;
		color: white;
		cursor: pointer;
		font-weight: 900;
		padding: 16px 24px;
		text-decoration: none;
		transition: all 0.2s linear;
	}
	
		nav button:not(:first-child) { margin-left: 4px; }
		
		nav button.active {
			background: white;
			box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
			color: #e20074;
		}
		
		nav div.tabs button svg {
			display: none;
		}
	
		nav button:not(.active):hover,
		nav div.select:hover {
			background: rgba(255, 255, 255, 0.3);
		}
	
	nav div.fluid {
		flex-grow: 1;
	}
	
	nav div.select {
		background: rgba(255, 255, 255, 0.2);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-radius: 16px;
		display: flex;
		margin-left: 8px;
		transition: all 0.2s linear;
	}
	
		nav div.select select {
			appearance: none;
			background: transparent;
			border: 0;
			color: white;
			cursor: pointer;
			flex-grow: 1;
			font-weight: 900;
			padding: 16px 40px 16px 24px;
		}
		
			nav div.select select + i {
				border-right: 3px solid white;
				border-bottom: 3px solid white;
				display: block;
				height: 12px;
				position: absolute;
				right: 24px;
				transform: rotate(45deg);
				top: 22px;
				width: 12px;
			}


section {
	display: none;
	margin: auto;
	max-width: 1000px;
}


section.loading {
}

	section.loading:before {
		animation: pulse 0.6s cubic-bezier(.4, -0.3, .3, 1.2) infinite alternate;
		border: 4px solid #CCC;
		border-radius: 48px;
		content: '';
		display: block;
		height: 24px;
		margin: 80px auto;
		width: 24px;
	}
	
	@keyframes pulse {
		0% { transform: scale(1); }
		100% { transform: scale(1.6); }
	}
	
	section.members.loading div.member { display: none; }

section.active { display: flex; }

section.members {
	background: rgba(255,255,255, 0.9);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 16px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 6px 20px rgba(0, 0, 0, 0.1);
	flex-wrap: wrap;
	transition: all 0.3s ease-out;
}
	
	section.members div.member {
		align-items: center;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		cursor: pointer;
		display: flex;
		padding: 24px;
		transition: all 0.2s ease-out;
		width: 100%;
	}
	
		section.members div.member.me {
			background: rgba(82, 154, 214, 0.1);
		}
		
			section.members div.member.me img.photo {
				box-shadow: 0 0 0 4px #3083D0;
			}
	
		
		section.members div.profile {
			align-items: center;
			display: flex;
			flex: 1;
			padding-right: 32px;
			white-space: nowrap;
		}
			
			section.members div.profile img.photo {
				border-radius: 8px;
				height: 96px;
				margin-right: 32px;
				transform-origin: center center;
				transition: all 0.2s ease-out;
				width: 96px;
			}
			
			section.members div.profile span {
				font-size: 0.8em;
				opacity: 0.7;
			}
			
			section.members div.profile h4 { padding-top: 4px; }
			
			section.members div.member:hover { background: rgba(255, 255, 255, 0.2); }
			
			section.members div.member:hover div.profile h4 { color: #e20074; }
			
			section.members div.member:hover div.profile img.photo {
				box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1), 0px 6px 30px rgba(0, 0, 0, 0.1);
				transform: scale(1.05);
			}
			
				section.members div.member.me:hover { background: rgba(82, 154, 214, 0.2); }
				
				section.members div.member.me:hover div.profile img.photo {
					box-shadow: 0 0 0 4px #3083D0;
					transform: scale(1.05);
				}
			
			
			section.members div.member:first-child {
				border-top-left-radius: 16px;
				border-top-right-radius: 16px;
			}
				
				section.members div.member:first-child div.profile:before {
					background: url("images/crown.png") no-repeat center center;
					background-size: contain;
					bottom: 95%;
					content: '';
					display: block;
					left: -23px;
					height: 40px;
					position: absolute;
					transform: rotate(-30deg);
					top: -20px;
					width: 60px;
					z-index: 2;
				}
			
			
			section.members div.member:last-child {
				border-bottom-left-radius: 16px;
				border-bottom-right-radius: 16px;
			}
	
				
	section.members div.awards {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		margin-top: 8px;
	}
	
	section.members div.award {
		text-align: center;
	}
	
		section.members div.award.more { display: none; }
		
		section.members span.more {
			color: #3083D0;
			cursor: pointer;
			display: inline-block;
			font-size: 1.5rem;
			font-weight: bold;
			padding: 0 4px;
			text-align: center;
		}
		
			section.members span.more:hover { color: #e20074; }
	
		section.members div.award img {
			cursor: pointer;
			display: block;
			height: 48px;
			transition: all 0.2s ease-out;
			width: 48px;
		}
			
			section.members div.award:hover img {
				transform: scale(1.05);
			}
		
		section.members div.award span {
			background: white;
			border-radius: 8px;
			bottom: 105%;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
			display: block;
			font-size: 0.8rem;
			opacity: 0;
			padding: 8px 16px;
			position: absolute;
			pointer-events: none;
			right: -30%;
			transition: all 0.2s ease-out;
			transform: translate(0, 10px);
		}
		
			section.members div.award span em {
				display: block;
				font-weight: 900;
			}
			
			section.members div.award:hover span {
				opacity: 1;
				transform: translate(0, 0);
			}
			
		section.members div.award i {
			background: #222;
			border-radius: 30px;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
			color: white;
			display: none;
			font-size: 0.7rem;
			font-weight: bold;
			padding: 4px 5px;
			position: absolute;
			right: 0px;
			top: 0px;
		}
		
			
	section.members span.points {
		background: #529AD611;
		border-radius: 40px;
		color: #007FAF;
		display: block;
		font-weight: bold;
		padding: 8px 16px;
	}

		
section.awards {
	align-items: stretch;
	flex-wrap: wrap;
}

	section.awards div.award {
		text-align: center;
		padding: 16px;
		width: 33%;
	}
	
		section.awards div.break {
			flex-basis: 100%;
			height: 0;
		}
	
		section.awards div.award img {
			display: block;
			height: 180px;
			margin: auto;
			margin-bottom: -80px;
			width: 180px;
			z-index: 2;
		}
	
	section.awards div.details {
		background: rgba(255,255,255, 0.9);
		border-radius: 24px;
		box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 6px 20px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(100px);
		-webkit-backdrop-filter: blur(100px);
		line-height: 1.4em;
		padding: 80px 24px 24px 24px;
	}
	
		section.awards div.details h4 {
			line-height: 1.4em;
		}
		
		section.awards div.details h6 {
			font-size: 1em;
			font-weight: 900;
			line-height: 1.3em;
		}
		
		section.awards div.details p { opacity: 0.7; }


section.about {
	background: rgba(255,255,255, 0.9);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 16px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 6px 20px rgba(0, 0, 0, 0.1);
	flex-wrap: wrap;
	padding: 24px;
	transition: all 0.3s ease-out;
}

	section.about div {}

	section.about h2,
	section.about h3,
	section.about h4,
	section.about p {
		line-height: 1.4em;
		margin-bottom: 0.3em;
	}

	section.about h2 {
		font-size: 2rem;
		font-weight: 900;
	}
	section.about h3 {
		color: inherit;
		font-size: 1.6rem;
		margin-top: 1.5em;
	}
	section.about h4 {
		font-size: 1.2rem;
		margin-top: 1.5em;
	}
	
	section.about p { font-size: 1.05rem; }
	
	section.about div > img {
		border-radius: 16px;
		box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 6px 20px rgba(0, 0, 0, 0.1);
		height: 240px;
		max-width: 100%;
	}
	
	section.about svg {
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		height: 24px;
		vertical-align: bottom;
		width: 24px;
	}
	
	section.about span.awardinfo {
		border-bottom: 1px dotted #666;
		cursor: help;
	}
	
		section.about span.awardinfo i {
			background: white;
			border-radius: 16px;
			box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 6px 20px rgba(0, 0, 0, 0.1);
			font-weight: 400;
			left: 0;
			padding: 24px;
			pointer-events: none;
			position: absolute;
			opacity: 0;
			top: 100%;
			transition: all 0.2s ease-out;
			transform: translate(0, -32px);
			width: 300px;
			z-index: 20;
		}
		
		section.about span.awardinfo:hover i {
			opacity: 1;
			transform: translate(0, 8px);
		}
		
			section.about span.awardinfo i img {
				height: 48px;
				width: 48px;
			}


	
	
	
section.stats {
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 16px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 6px 20px rgba(0, 0, 0, 0.1);
	flex-direction: column;
	padding: 24px;
}

	section.stats h2,
	section.stats h3,
	section.stats h4,
	section.stats p {
		line-height: 1.4em;
		margin-bottom: 0.3em;
	}
	
	section.stats h2 {
		font-size: 2rem;
		font-weight: 900;
	}
	section.stats h3 {
		color: inherit;
		font-size: 1.6rem;
	}
	section.stats h4 {
		font-size: 1.2rem;
		margin-top: 1.5em;
	}

	
div.stats {
	display: flex;
	gap: 25px;
	justify-content: center;
	margin: 40px 0 80px 0;
}

	div.stats div {
		background: white;
		box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 6px 20px rgba(0, 0, 0, 0.1);
		border-radius: 16px;
		border: 1px solid rgba(0, 0, 0, 0.1);
		flex: 1;
		padding-bottom: 24px;
	}
	
		div.stats div img.head {
			height: 64px;
			left: calc(50% - 32px);
			position: absolute;
			top: -32px;
			width: 64px;
		}
		
		div.stats div h3 {
			color: inherit;
			padding: 32px;
			text-align: center;
		}
		
		div.stats div h3 img {
			height: 32px;
			width: 32px;
		}
		
		div.stats div img.photo {
			border-radius: 8px;
			height: 32px;
			margin-right: 8px;
			vertical-align: middle;
			width: 32px;
		}
		
		div.stats table {
			width: 100%;
		}
		
			div.stats table tr.inactive {
				opacity: 0.6;
			}
		
			div.stats table th,
			div.stats table td {
				border-bottom: 1px solid rgba(0, 0, 0, 0.1);
				padding: 8px 24px 8px 24px;
				vertical-align: middle;
			}
			
			
			div.stats table th {
				font-weight: bold;
				padding-right: 0;
				text-align: left;
			}
			
			div.stats table td {
				padding-left: 0;
				text-align: right;
			}




span.hashtag {
	display: inline-block;
	background: #E2F6FF;
	border-radius: 4px;
	color: #3083D0;
	padding: 2px 4px;
	white-space: nowrap;
}
	

div.overlay {
	background: rgba(10, 17, 53, 0);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	bottom: 0;
	cursor: pointer;
	left: 0;
	position: fixed;
	pointer-events: none;
	right: 0;
	top: 0;
	transition: all 0.3s linear;
	z-index: 4;
}

div.popup {
	background: #303346;
	border-radius: 40px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1), 0px 6px 40px rgba(0, 0, 0, 0.3);
	left: 24px;
	margin: auto;
	max-width: 600px;
	opacity: 0;
	padding: 120px 40px 40px 40px;
	pointer-events: none;
	position: fixed;
	right: 24px;
	text-align: center;
	top: 300px;
	transform: translate(0, 40px);
	transition: all 0.3s ease-out;
	z-index: 5;
}

	div.popup img.badge {
		height: 256px;
		position: absolute;
		left: 0;
		margin: auto;
		right: 0;
		top: -140px;
		transition: all 0.3s ease-out;
		width: 256px;
	}
	
	div.popup h2 {
		font-size: 2rem;
		font-weight: 900;
		margin-bottom: 4px;
	}
	
	div.popup p {
		font-size: 1.1rem;
		line-height: 1.3em;
		margin-bottom: 8px;
	}
	
		div.popup p img {
			border-radius: 24px;
			height: 24px;
			vertical-align: sub;
			width: 24px;
		}
	
	div.popup button {
		background: rgba(255, 255, 255, 0.2);
		border-radius: 40px;
		color: #e20074;
		cursor: pointer;
		font-size: 0.8rem;
		font-weight: 900;
		height: 48px;
		padding: 16px;
		position: absolute;
		right: 24px;
		text-transform: uppercase;
		top: 24px;
		width: 48px;
	}
	
		div.popup button:before,
		div.popup button:after {
			background: #FFFFFF;
			border-radius: 2px;
			content: '';
			display: block;
			left: 12px;
			height: 2px;
			position: absolute;
			top: 23px;
			width: 24px;
		}
		
		div.popup button:before { transform: rotate(45deg); }
		div.popup button:after { transform: rotate(-45deg); }
	
	
	
	div.popup.profile {
		bottom: 100px;
		overflow: scroll;
		padding: 0;
		top: 100px;
	}
		
		div.popup.profile h6 {
			font-size: 1rem;
			opacity: 0.7;
			margin-bottom: 32px;
		}
	
		div.popup.profile div.person {
			align-items: center;
			background-color: #303346;
			color: white;
			display: flex;
			flex-direction: column;
			flex-wrap: wrap;
			overflow: hidden;
			padding: 24px;
			text-align: center;
		}
		
			div.popup.profile div.person img.bg {
				filter: blur(30px);
				-webkit-filter: blur(30px);
				left: -60px;
				opacity: 0.4;
				position: absolute;
				top: -60px;
				width: 120%;
				z-index: 0;
			}
		
			div.popup.profile div.person div {
				display: flex;
				flex: 1;
				text-align: center;
				width: 100%;
			}
				
				div.popup div.person span {
					color: rgba(255, 255, 255, 0.7);
					flex-grow: 1;
					font-size: 1rem;
					width: 100%;
				}
				
				div.popup div.person span b {
					color: white;
					display: block;
					font-size: 1.4em;
					font-weight: bold;
				}
				
				div.popup div.person span i {
					border-radius: 24px;
					display: block;
					height: 40px;
					margin: 0 auto 8px auto;
					padding: 8px;
					width: 40px;
				}
				
					div.popup div.person span.points i { background: #007FAF; }
					div.popup div.person span.awards i { background: #FF9A1E; }
					div.popup div.person span.karma i { background: #71CE06; }
	
		div.popup.profile img.badge {
			border: 4px solid white;
			border-radius: 90px;
			box-shadow: 0 4px 40px rgba(10, 17, 53, 0.1);
			height: 120px;
			margin: 0 0 16px 0;
			position: static;
			width: 120px;
			z-index: 5;
		}
	
		div.popup.profile div.awards {
			background: white;
			display: flex;
			flex-wrap: wrap;
			padding: 24px;
		}
		
			div.popup.profile div.award {
				align-items: center;
				background: #f4f4f4;
				border-radius: 16px;
				display: flex;
				margin: 0 0 8px 0;
				padding: 16px;
				text-align: left;
				width: 100%;
			}
			
				div.popup.profile div.award div.details {
					flex: 1;
				}
			
				div.popup.profile div.award h4 {
					font-size: 1.2rem;
					padding-bottom: 8px;
				}
				
				div.popup.profile div.award h6 {
					font-size: 1.2rem;
					font-weight: bold;
					right: 4px;
					position: absolute;
					top: 0;
				}
				
					div.popup.profile.archive div.award h6,
					div.popup.profile.lifetime div.award h6 { display: none; }
				
				
				div.popup.profile div.award img {
					height: 80px;
					margin: 0 16px 0 0;
					width: 80px;
				}
				
				div.popup.profile div.award div.details small {
					display: block;
					font-size: 0.8rem;
					opacity: 0.7;
				}
			
				div.popup.profile div.award:not(.active) {
					filter: grayscale(1);
					opacity: 0.4;
				}
		
		div.popup.profile div.award.karma {
			background: white;
			box-shadow: 0 0 0 1px inset #ddd;
		}
		
			div.popup.profile div.award.karma div.dot {
				margin: 0 16px 0 0;
				text-align: center;
				width: 80px;
			}
			
				div.popup.profile div.award.karma div.dot img {
					box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1), 0px 3px 10px rgba(0, 0, 0, 0.1);
					border-radius: 30px;
					height: 40px;
					margin: auto;
					width: 40px;
				}
			
				div.popup.profile div.award.karma div.dot svg {
					background: #71CE06;
					border-radius: 16px;
					height: 24px;
					margin: auto;
					padding: 4px;
					position: absolute;
					right: 8px;
					top: 0px;
					width: 24px;
					z-index: 3;
				}

div.popup.active {
	pointer-events: all;
	opacity: 1;
	transform: translate(0, 0);
}

	div.popup.active img {
		transform: translate(0, 0);
	}

div.popup.active + div.overlay {
	background: rgba(10, 17, 53, 0.5);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	pointer-events: all;
}


body.login {}

	body.login header {
		flex-direction: column;
		flex-wrap: wrap;
		text-align: center;
	}
	
	body.login header h1,
	body.login header div {
		flex: 1;
		width: 100%;
	}
	
	section.login {
		display: flex;
		align-items: center;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
		margin: 80px auto;
		text-align: center;
	}
	
	a.slackbutton {
		margin: 0 auto 8px auto;
	}
	
	a.slackbutton + p {
		color: white;
		font-size: 0.9rem;
		opacity: 0.7;
	}


@media screen and (max-width: 700px) {
	
	div.statusbar {
		background: rgba(10, 17, 53, 0.5);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		height: calc(env(safe-area-inset-top) + 0px);
		left: 0;
		right: 0;
		position: fixed;
		top: 0;
		z-index: 10;
	}
	
	header {
		margin-top: calc(env(safe-area-inset-top) + 16px);
	}
	
	header h1 { font-size: 2rem; }
	
	header h1 img { margin-right: 8px; }
	
	header h3 { font-size: 1.6rem; }
	
	header a.button {
		font-size: 0.8rem;
		padding: 8px 16px 8px 8px;
	}
	
	
	
	nav {
		margin-top: 24px;
	}
	
		nav div.tabs {
			background: rgba(10, 17, 53, 0.6);
			border-radius: 0;
			bottom: 0;
			flex-grow: 1;
			left: 0;
			padding: 0;
			padding-bottom: calc(env(safe-area-inset-bottom) + 0px);
			position: fixed;
			right: 0;
			z-index: 4;
		}
		
		nav div.fluid { display: none; }
		
		nav button {
			flex-grow: 1;
			width: 25%;
		}
		
			nav button:not(:first-child) { margin: 0; }
			
			nav div.tabs button {
				box-shadow: none;
				font-size: 0.8rem;
				font-weight: normal;
				opacity: 0.6;
				padding: 8px 16px 4px 16px;
			}
			
			nav div.tabs button svg {
				display: block;
				margin: 0 auto 6px auto;
			}
			
			nav div.tabs button.active {
				background: transparent;
				color: white;
				opacity: 1;
			}
		
		nav div.select {
			margin: 0;
			width: 100%;
		}
			
			nav select + i { top: 19px; }
	
	
	
	section {  }
	
		section.members div.member {
			flex-wrap: wrap;
			padding: 16px;
		}
		
		section.members div.profile {
			align-items: start;
			padding: 0;
		}
			
			section.members div.profile img.photo {
				height: 64px;
				margin-right: 16px;
				width: 64px;
			}
			
			section.members div.member:first-child div.profile:before { top: -27px; }
		
		section.members div.award img {
			height: 48px;
			width: 48px;
		}
		
		section.members div.award.more { display: block; }
		
		section.members span.more { display: none; }
		
		section.members span.points {
			position: absolute;
			right: 16px;
			top: 16px;
		}
		
			section.members span.points i { display: none; }
		
	
	
	section.awards div.award {
		align-items: center;
		display: flex;
		padding: 0 0 8px 0;
		width: 100%;
	}
		
		section.awards div.award img {
			height: 120px;
			margin: 0 -64px 0 0;
			width: 120px;
		}
		
		section.awards div.details {
			border-radius: 16px;
			flex: 1;
			padding: 24px 24px 24px 64px;
			text-align: left;
		}
	
	
	div.popup {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		left: 0;
		opacity: 1;
		right: 0;
		top: 200px;
		transform: translate(0, 100vh);
		transition: all 0.6s ease-out;
	}
	
		div.popup.active { transform: translate(0, 0vh); }
	
		div.popup h2 { font-size: 1.6rem; }
		
		div.popup div.person span,
		div.popup div.person p {
			font-size: 1rem;
		}
		
		div.popup.profile {
			bottom: 0;
			top: 80px;
		}
		
			div.popup.profile div.person {
				padding: 24px 16px;
			}
			
			div.popup.profile div.awards { padding: 8px; }
		
			div.popup.profile div.award	{
				align-items: start;
			}
				
				div.popup.profile div.award h6 {
					font-size: 1rem;
					padding: 0 0 4px 0;
					top: 2px;
				}
				
				div.popup.profile div.award img {
					height: 48px;
					width: 48px;
				}
				
			
			div.popup.profile div.award.karma div.dot { width: 48px; }
			
				div.popup.profile div.award.karma div.dot svg { right: -4px; }
	
	
	section.stats {}
	
		section.stats div.stats { flex-direction: column; }
}