*{
	font-family: "Inter", sans-serif;
	color: black;
	font-size: 14pt;
}



a{
	font: inherit;
	color: inherit;
	text-shadow: white 0 0 2px;
}

a:hover{
	/*text-decoration: underline;*/
	background: #2099CF66;
	border-radius: 4px;
}

html{
	background-size: cover;
	background-color: #FFF;
	height: 100%;
	width: auto;
}

body {
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media (min-width: 800px) {
	body {
		padding-top: 38px;
	}
}

#body{
	position: relative;
	box-sizing: border-box;
	margin: auto;
	width: 100%;
	max-width: 640px;
	word-wrap: normal;
	line-height: 1.3;
	text-align: justify;
	background-color: #FFFD;
	border-radius: 16px;
	top: 0px;
	margin-bottom: 100px;
	padding: 10px;
}

main {
	box-sizing: border-box;
	padding: 10px;
	min-height: calc(100vh - 130px);
}
@media (min-width: 800px) {
	main {
		min-height: calc(100vh - 90px);
	}
}

h1, h2, h3, h4, h5, nav, #session_info {
	font-family: "Fira Sans", sans-serif;
}

h1{
	text-align: center;
	color: #184663;
	font-size: 32pt;
	font-weight: bold;
	margin-bottom: 0;
	margin-top: 0;
}

h2{
	text-align: center;
	color: black;
	font-size: 18pt;
	font-weight: semi-bold;
	padding:5px;
}

h3{
	color: black;
	font-size: 16pt;
	font-weight: semi-bold;
}

li{
	margin-left: 20px;

}

pre{
	text-align: left;
	font-family: monospace;
	line-height: 1.2em;
	font-size: inherit;
	color: limegreen;
}

label{
	color: purple;
	padding-top: 0;
	padding-bottom: 0;
	font-family: monospace;
	text-align: left;
}


button{
	width:100%; 
	height: 40px;
	text-align: center; 
	background-color: purple; 
	color: white; 
	font-weight: bold; 
	font-size: 15pt;
}


button:hover{
	color: #2099CFAA;
	}

label:hover{
	color: magenta;
	}


table{
	text-align: center;
	margin: auto;
	min-width: 320px;
}

th, td{
	border-radius: 5px;
	padding: 10px;
	min-width: 160px;
	min-height: 60px;
	margin: 5px;
	font-size: 12pt;
	/*background: #4444;*/
	font-family: monospace;
	font-weight: normal;
	text-align: center;
	/*color: white;*/
	/*border: 1.0px solid grey;*/
}

th{
	font-weight: bold;
}

td{
	font-weight: normal;
}

th:hover, td:hover, #listing:hover{
	background: #2099CF22;
	/*border: 1.0px solid #2099CFAA;*/
}

input {
	height: 32px;
	color: #2099CFFF;
	/*background-color: #4488;*/
	text-align: center;
}

/* remove those stupid tiny arrows on number inputs */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

#menu{
	position: absolute;
	color: #eee;
	font-size: 14pt;
	left: 0;
	right: 0;
	top: 0;
	text-align: left;
	padding: 0px 18px;
	z-index: 100;
	text-decoration: none;
	text-shadow: none;
	background: #555;
	/*background-image: linear-gradient(to bottom, #222f, #2228);*/
}
#menu a {
	position: relative;
	display: inline-block;
	padding: 4px 2px 4px;
	vertical-align: middle;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	border-radius: 4px 4px 0 0;
	transition: all 300ms ease;
}
#menu a:after {
	content:'';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #2ec1ff;
	border-radius: 2px;
	transition: all 300ms ease;
}
#menu a:hover:after {
	width: 100%;
	height: 2px;
}
#menu a:not(:first-of-type) {
	margin-left: 8px;
}
#menu a:hover {
	color: #fff;
	text-decoration: none;

/*	background-color: #2ec1ff;*/
/*	background-color: #555;*/
	background-color: transparent;
	border-bottom: 2px solid #2ec1ff;
}
#menu .header-logo {
	margin-right: 10px;
	padding: 5px;
	border: 0;
	border-radius: 4px;
}
#menu .header-logo:hover {
	border: 0;
}
#menu .header-logo img {
	display: block;
}
#menu:hover {
	
}

#listing{
	position: relative;
	/*color: white;*/
	left: 0px;
	right: 0px;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 11pt;
	word-wrap: normal;
	line-height: 2;
	/*background-color: #222A;*/
	border-radius: 5px;
	vertical-align: middle;
	min-width: 400px;
	text-align: left;
	/*border: 1.0px solid #ffffff44;*/
}

#code{
	position: relative;
	left: 0px;
	right: 0px;
	padding: 10px;
	font-size: 10pt;
	font-family: monospace;
	word-wrap: normal;
	line-height: 1;
	background-color: #111;
	color: lime;
	border-radius: 5px;
	vertical-align: middle;
	border: 0.5px solid grey;
	text-align: left;
}

#feature {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	margin: auto;
}

#feature iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#media{
	position: relative;
	width: 100%;
	font-size: 10pt;
	overflow: auto;
	background-color: #111;
	color: grey;
	min-height: 480px;
}


#footer{
	padding: 10px;
	text-align: left;
	font-size: 10pt;
	color: #aaa;
	text-align: center;
	margin-bottom: 0;
}

#session_info{
        width: 240px;
	color: yellow;
}
@media (max-width: 999px) {
	#session_info{
		display: inline-block;
	}
}
@media (min-width: 800px) {
	#session_info{
		position: absolute;
		text-align: right;
		right: 20px;
		top: 0px;
		z-index: 100;
		width: 200px;
	}
}

.center {
	/*text-align: center;*/
	display: block;
	margin-left: auto;
	margin-right: auto;
	/*width: 50%;*/
	
}

/*  Stripe  */
.product_container {
	text-align: center;
}
.product_image {
	width: 100%;
	max-width: 256px;
	height: auto;
}
#checkout-button {
	width: auto;
	padding: 10px 20px 12px;
	color: #000;
	font-size: 18px;
	text-shadow: none;
	line-height: 1;
	background-color: #2ec1ff;
	border-radius: 4px;
	border: 0;
}
#checkout-button:hover,
#checkout-button:active,
#checkout-button:focus {
	cursor: pointer;
	background-color: #fff;
}
/*  end Stripe  */
