
* {
	box-sizing:border-box;
	margin:0;
	vertical-align:top;

/*
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
    -webkit-tap-highlight-color: transparent;


}

body.darkmode {
	background:#000;
}
body.darkmode button, body.darkmode .button {
	/*background: #00221d;*/
	opacity:.5;
}
body.darkmode select, body.darkmode input {
	opacity:.5;
}
body.darkmode header {
	background:#171717;
	opacity:.5;
}

a {
	color:#00897B;
	text-decoration:none;

	&:hover{
		color:#00CCAA;
	}
}

body {
	background:#111;
	color:#FFF;
	font-family:Roboto, "Segoe UI";
	font-size:16px;
}

input:focus ,select:focus,textarea:focus {
  outline: none;
  border-bottom:2px solid #00897B;
}
input,textarea {
	background:rgba(255,255,255,.05);
	border:0;
	border-bottom: 2px solid #333;
	padding:15px;
	color:#FFF;
	width: 150px;
	height:50px;
	color-scheme: dark;

}
select {
	color-scheme: dark;
	padding:13px;
	background:rgba(255,255,255,.05);
	border:0;
	border-bottom:2px solid #333;
	color:#FFF;
	width:120px;
	height:50px;
	margin:0;
}
option {
	background:#222;
	padding:6px;
}

input, select, textarea {
	font-size:16px;
	margin:2px;
}

textarea {
	line-height:1.6;
}


button,.button {
	display:inline-block;
	padding:16px;
	background:#00897B;
	border:0;
	border-bottom:4px solid rgba(0,0,0,.3);
	margin:2px 0 ;
	color:#FFF;
	min-width:100px;
	height:50px;
	font-size:14px;
	text-transform:uppercase;
	font-weight:600;
	color:rgba(255,255,255,.85);
	text-decoration:none;
	cursor:pointer;
	transition: background 0.3s, color 0.3s;
}
.button.--small,button.--small {
	font-size:80%;
	padding:.5rem .7rem;
	height:auto;
	border-bottom-width:3px;
	min-width:auto;
}

button:hover,.button:hover {
	color:rgba(255,255,255,1);
	background:#00c9b2;
}
button:active,.button:active {
	background:#004a40;
}



h-1 {
	font-size:170%;
	text-align:center;
	font-weight:bold;
	margin:48px;
}
h5 {
	font-size:.875rem;
	font-weight:400;
	letter-spacing:0.015625rem;
	margin:48px 15px 18px;
	/*padding: 7px 15px;*/
	color: #83BCB6;
	/*border-bottom: 2px solid #FB6542;*/
	/*text-transform: uppercase;   004a41*/
}
p {
	line-height:1.5;
	font-size:.875rem;
	letter-spacing:0.015625rem;
	margin:.5em;
}

main {
	padding:8px;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
}
header ~ main {
	top:56px;
}



	.notice {
		text-align:center;
		padding:20px;
	}

	table {
		width:100%;
	}
	th {
		font-weight:500;
		text-align:left;
	}
	td,th {
		padding:10px 0;
		border-bottom:solid 1px rgba(255,255,255,.05);
	}


/********************************************************
 * Navbar
 *********************************************************/

header {
	position:fixed;
	top:0;
	left:0;
	right:0;
	height:56px;
	background:#363640;
	box-shadow: 0 0px 10px #000;
	z-index:100;
}

header a {
	margin:8px;
	padding:8px;
	display:inline-block;
	color:rgba(255,255,255,.8);
	border-radius:99px;
	transition: background 0.5s, color 0.5s;
}

header a:hover {
	background:rgba(0,0,0,.25);
	color:#FFF;
}



header h6 {
	font-size:20px;
	margin:16px;
	display:inline-block;
	font-weight:normal;

}

header .titlewrapper {
	position:relative;
	display:inline-block;
	height:100%;
}

header .titlewrapper span {
	display:block;
	font-size:12px;
	color:rgba(255,255,255,.6);

	position:absolute;
	top:10px;
	white-space:nowrap;

}

header .titlewrapper h6 {
	display:block;
	margin:0;

	font-size:18px;
	font-weight:normal;

	position:absolute;
	bottom:10px;
	white-space:nowrap;
}



cite {
	padding:.0em .3em;
	background-color:#FFFFFF11;
	font-size:70%;
	opacity:.8;

	&.--inline {
		font-size:100%;
	}
}
