body {
	color: #fff;
	cursor: default;
	margin: 0;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

#shadow {
	background-color: #000;
	cursor: not-allowed;
	opacity: 0.5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 98;
}

#wrapper {
	background: #000;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

#ctrl > section,
#config,
.tabs {
	border: 2px solid #999;
	border-radius: 6px;
	display: inline-block;
	font-size: 100%;
	font-weight: normal;
	overflow: hidden;
	position: absolute;
}

#ctrl, #config {
	left: 0;
	top: 0;
}

input[type=checkbox] {display: none;}
input[type=radio] {display: none;}


table {
	font-size: 100%;
	width: 100%;
}

th, td {
	height: 100%;
	padding: 0.5em;
	text-align: center;
	vertical-align: top;
}

th {
	background: #444;
	overflow: hidden;
	text-overflow: ellipsis;
}

td label {
	cursor: pointer;
	display: inline-block;
	width: 100%;
}


.btn, .blank {
	border: 1px outset #000;
	border-radius: 6px;
	cursor: pointer;
	vertical-align: top;
}
.btn {background: #999;}
.blank {
	background: #111;
	border-color: #333;
}

.svg {filter: invert(1);}
.svg5 {filter: invert(0.5);}

.svg.green, .svg5.green {filter: invert(0.6) sepia(1) saturate(3) hue-rotate(60deg);}
.svg.red, .svg5.red {filter: invert(0.5) sepia(1) saturate(60);}

.toggle {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #e90;
        border: none;
        border-radius: 1em;
        cursor: pointer;
        display: inline-block !important;
        height: 2em;
        margin-left: 0;
        overflow: hidden;
        outline: none;
        position: relative;
        transition: background-color ease-in-out 0.25s;
        vertical-align: middle;
        width: 5em;
}
.toggle:before {
        background: #fff;
        border-radius: 50%;
	box-shadow: 0 0 1px #300;
        color: #fff;
        display: block;
        font-size: 80%;
        font-weight: bold;
        height: 2.5em;
        left: 0.25em;
        top: 0.25em;
        line-height: 2.5em;
	margin: -0.25em 0 0 -0.25em;
        position: absolute;
        text-indent: -3em;
        text-shadow: 1px 1px #000;
        transition: all ease-in-out 0.25s;
        white-space: nowrap;
        width: 2.5em;
        z-index: 2;
}
.toggle:checked {background-color: #e60;}
.toggle:checked::before {left: 4em;}
