/* CSS Document */

@font-face {
	font-family: 'Gabriel Weiss\' Friends Font';
	src: url('/includes/font/GabrielWeissFriendsFont.eot');
	src: url('/includes/font/GabrielWeissFriendsFont.eot?#iefix') format('embedded-opentype'),
		url('/includes/font/GabrielWeissFriendsFont.woff2') format('woff2'),
		url('/includes/font/GabrielWeissFriendsFont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}  

body {
	background-color: #000;
	font-family: 'Gabriel Weiss\' Friends Font';
	font-size: 1em;
	margin:0;
	color: #fff;
	background:#000;
}

header {	
	display:flex;
	align-items:center;
	flex-direction: column;
	padding:2em;
}

#cog {
	position:absolute;
	top:0;
	left:0;
	width:2em;
	margin:0.5em;
	cursor: pointer;
	transition: all 0.5s;

}

#cog:hover {
	transform: scale(1.2);
	transition: all 0.5s;
}

#menu {
	display:none;
	width:100vw;
	text-align:center;
}

#menu div {
	line-height:2em;
}

.menuinput {
	width: 2em;
	padding:0;
	margin:0.5em;
	transform: scale(1.2);
}

#logo {
	width:50vw;
	max-width:400px;
}

#container {
	display:flex;
	flex-direction: column;
	align-items: center;
}

input {
	border: 1px solid #fff;
	font-size: 1.5em;
	text-align: center;
	padding: 0.5em;
}

input::placeholder {
	color: #ddd;
	transition: all 1s;
}

input:focus {
	outline:none;	
	background:#fff;
	color:#000;
	transition: all 0.4s;
}

input:focus::placeholder {
	color: #fff;
}

section#buttons {
	display: flex;
    width: 100%;
}

button {
	display: block;
	margin: auto;
	border: 1px solid #fff;
	padding: 1em;
	width: 50%;
	cursor: pointer;
	border-radius: 1em;
	margin-top: 1em;
        background-color: #000;
        color: #fff;

}

button:hover {
	background-color: #fff;
	color: #000;	
}

button.nav {
	width: 20%;
}

#result {
	display:none;
	width:100%;
	margin:1em;
}

#page {
	display:flex;
	flex-direction: column;
	align-items: center;
}

h3 {
	margin: 0.5em;
}

table.dataTable tbody tr.odd {
        background: #aaa;
}

table.dataTable tbody tr.even {
	background: #ddd;
}

table.dataTable tbody tr td {
	text-align: center;
}

#result a {
	color:#000;
	font-family:Tahoma;
	text-decoration: none;
}

.dataTables_wrapper .dataTables_filter input {
	background-color: #fff;
}

.dataTables_wrapper .dataTables_length select {
	background-color: #fff;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    color: #ddd;
}

#frame {
	display:block;
}

.loading {
	display: inline;
	position: relative;
	width: 80px;
	height: 80px;
	top: -225px;
	left: 205px;
}
.loading div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #fff;
	border-radius: 50%;
	animation: loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #fff transparent transparent transparent;
}
.loading div:nth-child(1) {
	animation-delay: -0.45s;
}
.loading div:nth-child(2) {
	animation-delay: -0.3s;
}
.loading div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes loading-ring {
	0% {
  		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#frame img {

}

#frame p.text {
	top: -80px;
	display: none;
	position: relative;
	text-align: center;
	padding:0.5em;
	text-shadow: 1px 2px 1px #000, 2px 3px #000;
}
