@import "/core/styles/forms.css";
@import "/core/styles/tables.css";
html, body {
	background: rgb(86, 100, 105);
	margin: 0;
	font-family: 'helvetica', sans-serif;
	font-size: 12pt;
	color: rgb(47, 47, 47);
	-webkit-font-smoothing: antialiased !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	-moz-osx-font-smoothing: grayscale;
}
h1, h2 {
	color: #a2ad35;
	font-size: 150%;
	text-transform: capitalize;
	font-weight: 200
}
a, a:visited {
	color: #8e982f;
	text-decoration: none;
	transition: .3s
}
a:hover {
	color: #464a17;
	text-decoration: underline
}
.header {
	background: rgb(35, 46, 49);
	color: #c1ce41;
	position: relative;
	z-index: 9
}
.wrapper {
	background: #f2f2f2;
	position: relative;
	z-index: 8;
}
.sleeve {
	max-width: 1500px;
	margin: auto;
	box-sizing: border-box
}
.content {
	padding: 20px;
	box-sizing: border-box;
}
.sleeve {
	position: relative;
}
.header .sleeve a:first-child,
.header .sleeve a:first-child:visited {
	color: #c1ce41;
	text-decoration: none;
	text-transform: uppercase
}
.header .sleeve a:last-child,
.header .sleeve a:last-child:visited {
	display: block;
	position: absolute;
	right: 20px;
	top: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	box-sizing: border-box;
	border-top: 3px solid #c1ce41;
	border-bottom: 3px solid #c1ce41;
	transition: .5s
}
.header .sleeve a:first-child:hover,
.header .sleeve a:last-child:hover {
	text-decoration: none
}
.menu_open {
	transform: rotate(-90deg)
}
.footer {
	color: #c1ce41;
	text-align: center;
	position: relative;
	z-index: 7
}
.footer p {
	margin: 0
}
.debug {
	background: rgb(32, 37, 39);
	color: #c1ce41;
	font-family: monospace;
	opacity: .25
}
.menu_disabled {
	opacity: 0
}
nav {
	position: absolute;
	right: 20px;
	top: 0;
	display: none
}
nav a, nav a:visited {
	display: block;
	background: #c1ce41;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 3em;
	margin-top: 1px;
	min-width: 300px;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	transition: .3s;
	z-index: 10
}
nav a:hover {
	background: #707823;
	text-decoration: none;
}
.gateway_form {
	width: 500px;
	height: auto;
	background: rgb(219, 219, 219);
	padding: 20px;
	margin: auto;
	box-sizing: border-box
}
.full {
	width: 100%;
	box-sizing: border-box
}
.nowrap {
	white-space: nowrap
}
@media only screen and (max-width: 900px) {
	html, body {
		font-size: 18px;
	}
	nav {
		right: 0;
	}
	.gateway_form {
		width: 100%;
	}
	.header {
		text-align: center
	}
	.debug {
		display: none
	}
	input[type=file],
	input[type=text],
	input[type=password],
	input[type=submit],
	input[type=time],
	input[type=number],
	select,
	textarea,
	label {
		width: 100% !important
	}
	label {
		padding-top: 0 !important;
		padding-bottom: 20px !important;
		padding-left: 0 !important;
		padding-right: 0 !important
	}
}