@font-face {
    font-family: Typewriter;
    src: url('MonospaceTypewriter.ttf');
}

* {
    font-family: Typewriter;
    table-align: center;
	text-align: center;
}

body {
    color: white;
    text-shadow: 0px 0px 7px white;
    background-color: black;
	overflow-x: hidden;
	font-size: 14px;
}

table, tr {
    display: flex;
    justify-content: center;
}

button {
    background-color: black;
	border: solid 3px white;
	color: white;
	padding: 3px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

h1, h2 {
    display: inline;
    font-size: 20px;
}

.table_center {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    align-items: center;
}

.table_inline {
    display: flex;
}

.open {
	background-color: rgb(30, 30, 30);
	cursor: pointer;
}

.open:hover {
	background-color: rgb(60, 60, 60);
}

.closed {
	background-color: rgb(30, 0, 0);
	cursor: not-allowed;
}

.closed:hover {
	background-color: rgb(60, 0, 0);
}

.bought {
	background-color: rgb(0, 60, 0);
	cursor: default;
}

.alp_tab_scroll {
	white-space: nowrap;
	flex-wrap: nowrap; 
  	overflow: auto;
}

.tab {
	font-size: 20px;
	background-color: black;
	border: solid 3px white;
	padding: 3px;
	cursor: pointer;
}

.tab:hover {
	background-color: #383838;
}

.alp_tab {
	width: 200px;
	height: 85px;
	border: solid 3px white;
	background-color: black;
	flex: 0 0 auto;
}

.alp_tab:hover {
	background-color: #383838;
}

.alp_upg {
	font-size: 12px;
	width: 220px;
	height: 120px;
	border: solid 3px white;
}

.alp_reset {
	font-size: 12px;
	width: 150px;
	height: 70px;
	border: solid 3px white;
}

.auto_upg {
	font-size: 12px;
	width: 40%;
	height: 100px;
	border: solid 3px white;
}

[tooltip] {
	position: relative;
	z-index: 2;
	white-space: pre-wrap;
}

[tooltip]:before,
[tooltip]:after {
	visibility: hidden;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	pointer-events: none;
	white-space: pre-wrap;
}

[tooltip]:before {
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-bottom: 5px;
	margin-left: -80px;
	padding: 7px;
	width: 160px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #000;
	background-color: hsla(0, 0%, 5%, 0.9);
	color: #fff;
	content: attr(tooltip);
	text-align: center;
	font-size: 14px;
	line-height: 1.2;
	transition-duration: 0.5s;
	white-space: pre-wrap;
}

[tooltip]:after {
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	width: 0;
	border-top: 5px solid #000;
	border-top: 5px solid hsla(0, 0%, 5%, 0.9);
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	content: " ";
	font-size: 0;
	line-height: 0;
	transition-duration: 0.5s;
	white-space: pre-wrap;
}

[tooltip]:hover:before,
[tooltip]:hover:after {
	visibility: visible;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
	white-space: pre-wrap;
}