@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
    background: black;
    color: rgb(220,220,220);
    font-family: 'roboto mono', monospace;
}

a {
	color: #aaa;
}

.overlay {
    /*pointer-events: none;*/
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 1;
	color: #aaa;
}

.overlay.hidden {
    opacity: 0;
    transition: linear 0.25s;
    pointer-events: none;
}

.hide {
	display: none !important;
}

.pb-0 {
	padding-bottom: 0;
}
.mb-0 {
	margin-bottom: 0;
}

.d-flex {
	display: flex
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.center-top {
	position: absolute;
    left: 50%;
    top: 10px;
    transform: translate(-50%, -10px);
}

canvas {
  display:block;
  vertical-align:bottom;
  pointer-events: none;
  width: 20%;
}

.main {
    text-align: center;
}

.controls{
    position:absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
	width: 100%;
	text-align: center;
}

.controls a {
    color: #aaa;
    text-decoration: none;
}

.modal {
    position: absolute;
    width: 500px;
    top: -500px;
    min-height: 200px;
    visibility: hidden;
    left: 50%;

    border: 1px solid red;
    background: black;

    transform: translate(-50%, -50%);
}

.logo-neon {
	color: #aaa;
	text-shadow: rgb(78, 78, 78) 0px 0px 40px;
}

.text-gray {
	color: #666;
}


.body {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

h3,h5,label {
	color: #aaa;
}

label {
	
}

h5 {
	margin-bottom: 8px;
}

input,button {
	border: 1px solid #aaa;
	background: 0 0;
	color: #ccc;
	padding: 5px;
	outline: 0;
	font-family: 'roboto mono', monospace;
}

input {
	margin-bottom: 10px;
}

input[type="submit"],button {
	cursor: hand;
	transition: background-color 0.1s;
}

input[type="submit"]:hover,button:hover {
	background-color: rgba(255, 255, 255, 0.06);
}

th, td {
	padding: 8px;
	border: 1px solid #333;
}

th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
}

td {
	
}

.text-align-center {
	text-align: center;
}

div.table-wrapper {
	max-height: 500px;
	overflow-x: auto;
	overflow-y: auto;
}

.icon-button {
	color: #dcdcdc;
	background-color: transparent;
	border: 1px solid #666;
	width: 30px;
	height: 30px;
	cursor: hand;
	transition: background-color 0.1s;
}

.icon-button:hover {
	background-color: rgba(255, 255, 255, 0.06);
}

.w-100 {
	width: 100%;
}

/* Toast */
.toast {
	color: #ccc !important;
}

.toast-info {
	background-color: rgba(47, 150, 180, 0.2) !important;
}

.toast-error {
	background-color: rgba(189, 54, 47, 0.2) !important;
}

.toast-success {
	background-color: rgba(81, 163, 81, 0.2) !important;
}

.toast-warning {
	background-color: rgba(248, 148, 6, 0.2) !important;
}
/***************/


/* Loader */
.loader {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

.loading-container {
    text-align: center; 
    width: 100%; 
	height: 100%;
    position: absolute;
    top: 48%; 
	left: 48%;
}

.spinner {
    position: absolute;
    height: 60px;
    width: 60px;
    margin: 0px auto;
    -webkit-animation: rotation .8s infinite linear;
    -moz-animation: rotation .8s infinite linear;
    -o-animation: rotation .8s infinite linear;
    animation: rotation .8s infinite linear;
    border-left: 6px solid rgba(30, 30, 30,1.15);
    border-right: 6px solid rgba(30, 30, 30,1.15);
    border-bottom: 6px solid rgba(30, 30, 30,1.15);
    border-top: 6px solid rgba(60, 60, 60,1.15);
    border-radius: 100%;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(359deg);}
}
/* */

::-webkit-scrollbar {
 width: 5px;
 height: 5px;
}
::-webkit-scrollbar-thumb {
 background: #666;
 border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover{
 background: #999;
}
::-webkit-scrollbar-track{
 background: #333;
 border-radius: 6px;
 box-shadow: inset 7px 10px 12px #000;
}
