@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*End of Myers Reset*/
* {
	box-sizing:border-box;
}
body {
	background-color:#FDFFFC;
	font-family: gill-sans-nova, sans-serif;
	font-weight: 300;
	font-style: normal;
	line-height:120%;
}
strong {
	font-weight: 800;
}
small {
	font-weight: 300 !important;
}
i {
	font-style: italic;
}
a {
	text-decoration:none;
}
#container {
	position:relative;
	width:100%;
}
#key {
	text-align:center;
	padding:2em;
}
h1, h2 {
	font-weight:800;
	margin-bottom:1em;
}
h1 {
	font-size:calc(22px + .5vw);
}
h2 {
	font-size:calc(14px + .5vw);
}
#table-keys {
	display:flex;
	width:100%;
}
#table-keys li {
	flex:1;
	list-style:none;
	border:2px solid #323232;
	padding:1em;
	font-weight: 800;
}
.left {
	margin-left:1em;
}
button {
	display:block;
	color:#323232;
	border:0;
}
.active, button:hover {
	cursor:pointer;
	border:4px solid #323232;
}
.vert {
	height:4.4%;
	width:3%;
}
.single {
	height:5.7%;
	width:7%;
}
.double {
	height:3.6%;
	width:7.2%;
}
.double-vert {
	height:7.2%;
	width:3.6%;
}
.table-hor {
	height:1.6%;
	width:2.7%;
}
.table-vert {
	height:3.1%;
	width:1.4%;
}
.regular {
	background-color:rgba(0,0,0,0.15);
}
.silver {
	background-color:rgba(183,216,125,0.5);
}
.gold {
	background-color:rgba(247,214,137,0.5);
}
.platinum {
	background-color:rgba(106,200,197,0.5);
}
.presidential{
	background-color:rgba(162,119,180,0.5);
}
.table {
	background-color:rgba(213,185,151,0.5);
}
.taken {
	background-image:url("../_images/cross-square.svg");
	background-size:cover;
}
div.show-off {
	display:none;
	position:absolute;
	top:0;
	left:125%;
	background-color:#c2f2ff;
	border:2px solid #323232;
	padding:1em 2em;
	font-size:calc(10px + .5vw);
	animation:pop-up .5s forwards, fade 1s 30s forwards, pop-down .25s 31s forwards;
	z-index:999;
}
@keyframes pop-up {
	0% {
		transform:scale(0);
	}
	100% {
		transform:scale(1);
	}
}
@keyframes fade {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes pop-down {
	0% {
		transform:scale(1);
	}
	100% {
		transform:scale(0);
	}
}
.active > div.show-off {
	display:block;
}
.arrow-right {
	position:absolute;
	top:-2px;
	left:-11px;
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent; 
	border-right:10px solid #323232; 
}