body {
	font-family: Arial;
	color: white;
	background-color: #000000;
	margin: 0px;
	padding: 0px;
	font-size: 20px;
}

@font-face {
    font-family: 'Osaka';
    
	src: url('./fonts/osaka-re.otf') format('otf'),
	url('./fonts/osaka-re.ttf') format('ttf'),
	url('./fonts/osaka-re.woff') format('woff'),
	url('./fonts/osaka-re.woff2') format('woff2');
}

@font-face {
    font-family: 'Kamikaze';
    
	src: url('./fonts/Kamikaze.otf') format('otf'),
	url('./fonts/Kamikaze.ttf') format('ttf'),
	url('./fonts/Kamikaze.woff') format('woff'),
	url('./fonts/Kamikaze.woff2') format('woff2');
}

@font-face {
    font-family: 'ARLRDBD';
    
	src: url('./fonts/ARLRDBD.otf') format('otf'),
	url('./fonts/ARLRDBD.ttf') format('ttf'),
	url('./fonts/ARLRDBD.woff') format('woff'),
	url('./fonts/ARLRDBD.woff2') format('woff2');
}

div.content {
	width: 100%;
	margin-bottom: 50px;
	box-sizing: border-box;	
}

h1 {
	font-family: Osaka;
    	text-align: center;
	color: red;
	font-size: 70px;
	margin: 0px;
	text-shadow: 5px 5px 5px white;
}

h1.arial {
	font-family: ARLRDBD;
    text-align: center;
	color: white;
	font-size: 40px;
	margin: 20px 0px 20px 0px;
	text-shadow: none;
}

h1 a:link.home,a:visited.home,a:hover.home,a:active.home {
	text-decoration: none;
	color: red;
}

h2 {
	color: orange;
	margin-top: 50px;
}

p.sob {
    text-align: center;
	color: lime;
	font-size: 25px;
	font-family: ARLRDBD;
}

div.msg {
    text-align: center;
	color: white;
	border: 1px solid yellow;
	border-radius: 10px;
}

div.msg p {
    padding-left: 10px;
	padding-right: 10px;
}

div.msg p img {
    max-width: 30%;
	height: auto;
}

p a, ul li a {
	text-decoration: none;
	color: white;
	border-bottom: 3px dotted yellow;
	padding-bottom: 10px;
}

p.output {
	text-align: center;
}

p.output output {
	display: inline;
}

a,a:link,a:visited,a:hover,a:active div {
	text-decoration: none;
	color: white;
}

a div p span.dot {
	border-bottom: 3px dotted yellow;
	padding-bottom: 10px;
}


div.intro {
	width: 50%;
	margin: 0 auto;
}

input {
	width: 100%;	
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 20px;
	color: blue;
}



input#numbers {
	color: blue;
	font-weight: bold;
}

input[type=submit] {
	width: 100%;
	background-color: #4CAF50;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 40px;
	font-family: ARLRDBD;
}

input[type=submit]#register {
	background-color: orange;
}

input[type=submit]:hover {
	background-color: #45a049;
}

ul.check {
	list-style-image: url("./images/check.svg");
}

ul.x {
	list-style-image: url("./images/x.svg");
}

p.qr {
	text-align: center;
}

p.qr img {
	max-width: 75%;
	max-height: 150px;
	background-color: white;
}

p.bag {
	text-align: center;
}

p.bag img {
	max-width: 75%;
	height: auto;
}

p output {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-family: ARLRDBD;
	color: yellow;
	font-size: 25px;
	display: inline-block;
}

hr {
	border: 1px dashed silver;
}

table {
	width: 100%;
	border-collapse: collapse; 
}

tr.header {
	background-color: #330099;
	margin-bottom: 5px;
}

td {
	padding: 5px 10px 5px 10px;
}


tr.reportsheader {
	background-color: #330099;
	margin-top: 10px;
	margin-bottom: 10px;
	white-space: nowrap;
	font-weight: bold;	
}

tr.reports {
	background-color: inherit;
	margin-top: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #330099;
	white-space: nowrap;
}

tr.reportsheader td {
	padding: 15px 10px 15px 10px;
	white-space: nowrap;
	font-weight: bold;
}

tr.reports td {
	padding: 15px 10px 15px 10px;
	white-space: nowrap;
}

div.overflow {
	overflow-x: auto;
}

.collapsible {
	background-color: #777;
	color: white;
	cursor: pointer;
	padding: 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 20px;
	margin: 0px;
}

.active, .collapsible:hover {
	background-color: #555;
}

.collapsible:after {
	content: '\002B';
	color: white;
	font-weight: bold;
	float: right;
}

.active:after {
	content: "\2212";
}

.readme {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background-color: black;
}



/*---- Navigation ---*/
ul.nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #000000;
}

li.nav {
	float: left;
}

ul.nav li.nav a img {
	height: 30px;
	width: auto;
}

li.nav a.nav {
	display: block;
	color: white;
	text-align: center;
	padding: 10px 12px 10px 12px;
	text-decoration: none;
	border-bottom: none;	
}

li.nav a.nav:hover:not(.active) {
	background-color: #000000;
}

.active {
	background-color: #04AA6D;
}


/* ----- Checkbox ----- */

/* The container */
.container {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: yellow;
}

/* Hide the browser's default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
	background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}


/*--- Slider ---*/

.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 30px;
	background: yellow;
	outline: none;
	-webkit-transition: .2s;
	transition: opacity .2s;
}

.slider:hover {
	opacity: 1;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	background: #3399FF;
	cursor: pointer;
}

.slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: #3399FF;
	cursor: pointer;
}


/* ul.roman used on disclaimer */
.disclaimer p {
	padding-left: 35px;
	text-indent: -10px
}

.disclaimer p:first-child {
	padding-left: 35;
	text-indent: 35;
}

.disclaimer h3 {
	padding-left: 35px;
}

ol.roman,ol.roman li {
	list-style-type: lower-roman;
	border: none;
	list-style-position: inside;
}

ol.roman {
	padding-left: 40px;
	margin-bottom: 15px;
	border: none;
	list-style-position: inside;
}

ol.roman li {
	margin-bottom: 5px;
	border: none;
	list-style-position: inside;
}


/* Mobile Phones */
@media (max-width: 600px) {
	div.intro {
		width: 90%;
	}
}
