* {
	box-sizing: border-box;
}

body,
html {
	height: 100%;
	display: grid;
}
body {
	font-size: 14px;
	line-height: 200%;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 0.5pt;
	color: #5e788c;
	background-color: #1d212c;
	background-image: url('img/bg.gif');
	background-repeat: repeat;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
body {
		opacity: 1;
		transition: 1s opacity;
}
body.fade-out {
		opacity: 0;
		transition: none;
}
#container {
	margin: 20px auto;
	width: 600px;
}
#content {
	text-align: justify;
}
#menu ul {
	list-style-type: none;
	margin: 20px 0;
	padding: 0;
	overflow: hidden;
	text-align: center;
}
#menu li {
		display: inline-block;
		font-size: 2.143em;
		line-height: 100%;
	font-family: 'Cutive Mono', monospace;
	text-transform: uppercase;
	letter-spacing: 2px;

	padding: 5px;
	text-decoration: none;
	box-shadow: none;
	-o-transition: background-color .2s linear;
	-webkit-transition: background-color .2s linear;
	-moz-transition: background-color .2s linear;
	transition: background-color .2s linear;
}
#menu a {
	padding: 10px 20px;
	display: block;
	color: #5ca9d3;
	background-color: #191b22;
	border-radius: 15px;
}
#menu a:hover {
	color: #ffd35c;
}
#menu a.active {
	color: #ffd35c;
	background-color: #fff;
	cursor: default;
}
#title {
	text-align: left;
}
a {
	text-decoration: none;
	color: #de554f;
	transition: all 0.3s ease;
}

#content a {
		position: relative;
}

#content a:after{
		content:'';
		position:absolute;
		width: 100%;
		height: 0;
		left:0;
		bottom: -3px;                    /* <- distance */
		border-bottom: 6px solid #000;
		z-index: -999;
}

#content a:hover {
	color: #fff;
}

h1 {
	margin-top: 5px;
	position: relative;
	top: 50px%;
	left: 0;
	font-weight: 300;
	font-style: italic;
	font-size: 14pt;
	font-family: 'Arial Narrow', sans-serif;
	text-transform: uppercase;

		color: #484848;

}


h2 {
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: normal;
	font-size: 14pt;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
h2 span.line {
	padding: 0 15px 0 0;
	background-color: #1d212c;
}
h2:before {
	content: "";
	margin: 0 auto;
	position: absolute;
	top: 41%; left: 0; right: 0; bottom: 0;
	border-top: 4px solid;
	width: 100%;
	z-index: -1;
}

#header a {
			box-shadow: inset 0 -10px #fff6d6; /* fff3c9; */
}

b {
	color: #ffd57c;
}

.bold {
	font-weight: bold;
	font-style: italic;
}

.bold,
i {
	color: #ee9e74;
}

div.stats {
	width: 60%;
	text-indent: 0;
	margin: 30px auto;
	border: 1px solid transparent;
	background-color: #191b22;
	border-radius: 15px;
}
div.stats ul {
	list-style-type: none;
}












/* JOIN FORM */

#form-container {

	border-radius: 10px;
	padding: 20px;
}
input,
select,
textarea {
	width: 100%;
	box-sizing: border-box;
	resize: vertical;

	padding: 10px;

	color: #5e788c;
	font-size: 14px;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: .5pt;

	background-color: transparent;
	border: 1px solid #5e788c;
	border-radius: 5px;

	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;

	transition: border 0.2s linear, background 0.2s linear;
}
select {
	color: #ee9e74;
	background-image: url('img/arrow.svg');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: .65em auto;
}
select option[selected="selected"] {
	color: red;
}
.password1 {
	float: left;
	width: 50%;
	max-width: 50%;
	border-right: 10px solid transparent;
}
.password2 {
	float: left;
	width: 50%;
	max-width: 50%;
}
input[type=button],
input[type=submit],
input[type=reset] {
	color: #5ca9d3;
	background-color: #191b22;
	border: 0;
	cursor: pointer;
}
input[type='submit']:hover,
input[type='reset']:hover {

}


.floating-label-wrap {
	margin-bottom: 20px;
}

/* Making the label break the flow */

.floating-label
{
		position: absolute;
		top: 0;
		left: 0;
		user-select: none;
		z-index: 1500;
}

/* Hide the browser-specific focus styles */

.floating-label-field
{
		color: #ffd57c;
		border-width: 0;
		z-index: 2000;
}
.floating-label-field:focus
{
		outline: 0;
		box-shadow: 0;
}
.floating-label-field::placeholder
{
		color: orange;
}

/* Make the label and field look identical on every browser */

.floating-label,
.floating-label-field
{
		font: inherit;
		line-height: 1;

		display: block;

		width: 100%;
}

.floating-label-field,
.floating-label-wrap
{
		position: relative;
}

/* Input Style */

.floating-label-field--s3
{
		border: 1px solid #5e788c; /* must match general input style */
}
.floating-label-field--s3 + .floating-label
{
		position: absolute;
		top: .2em;
		left: .2em;

		display: inline-block;

		width: auto;
		margin: 0;
		padding: .75em;

		transition: transform .25s, opacity .25s, padding .25s ease-in-out;
		transform-origin: 0 0;

		color: #ee9e74; /* color of placeholder */
		font-weight: normal;
}
.floating-label-field--s3:focus,
.floating-label-field--s3:not(:placeholder-shown)
{
		border-color: #5ca9d3;
}
.floating-label-field--s3:focus + .floating-label,
.floating-label-field--s3:not(:placeholder-shown) + .floating-label
{
		z-index: 2500;

		padding: .5em;
		font-weight: 400;

		transform: translate(-.5em, -1em) scale(.8);

		color: #5ca9d3; /* color of floating label */
		background-color: #1d212c;
		border-radius: 5px;
}

/* Common Styles */
/* Identical inputs on all browsers */

.floating-label-field--s1:not(textarea),
.floating-label-field--s2:not(textarea),
.floating-label-field--s3:not(textarea)
{
		max-height: 4em;
}

.floating-label-field--s1,
.floating-label-field--s1 + .floating-label,
.floating-label-field--s2,
.floating-label-field--s2 + .floating-label
{
		padding: 1.5em;
}

.floating-label-field--s1 + .floating-label,
.floating-label-field--s2 + .floating-label
{
		z-index: 1500;
}

.floating-label-field--s1::placeholder,
.floating-label-field--s3::placeholder
{
		color: transparent;
}

/* Member List */

.fan {
	border-collapse: collapse;
	width: 100%;
}
.fan tr {
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.fan td {
	padding: 10px;
}
.fan tr:first-child td:first-child {
	width: 40%;
}
.fan tr:first-child td:nth-child(2) {
	width: 50%;
}
.show_members_no_website {
	opacity: 0.5;
}