/* Font */
@font-face {
    font-family: magdacleanmono;
    src: url(font/magdacleanmono-bold.ttf);
}

/* Base */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: none;
}
body {
    color: #000;
    background-color: #FFF;
    height: 100%;
    width: 100%;
    height: 100%;
    position: fixed;
    margin: 0;
    padding: 0;
    font-family: "magdacleanmono";
}
body, html {
	background-color: rgba(0, 0, 0, 0.56);
	background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 65%, rgba(127,127,127,1) 120%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(65%,rgba(255,255,255,0.56)), color-stop(120%,rgba(127,127,127,1)));
	background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 65%,rgba(127,127,127,1) 120%);
	background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 65%,rgba(127,127,127,1) 120%);
	background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 65%,rgba(127,127,127,1) 120%);
	background: radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 65%,rgba(127,127,127,1) 120%);
}

#content {
	height: 100%;
}
#overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Boot */
#center-pane {
	width: 60%;
	height: 100%;
	position: absolute;
	left: 20%;
	top: 0px;
}
#left-pane {
	float: left;
}
#right-pane {
	float: right;
}
#content #left-pane, #content #right-pane {
	width: 20%;
	height: 100%;
}
#content #left-pane {
	border-right: 3px solid #000;
}
#content #right-pane {
	border-left: 3px solid #000;
}

#overlay #left-pane, #overlay #right-pane {
	width: 100px;
	height: 100%;
	margin: -10% 0;
}
#overlay .background {
	height: 140%;
    background: #000;
}
#overlay #left-pane .background {
    border-top-right-radius: 50px 50%;
    border-bottom-right-radius: 50px 50%;
}
#overlay #right-pane .background {
    border-top-left-radius: 50px 50%;
    border-bottom-left-radius: 50px 50%;
}

#boot-log {
    font-size: 0.5em;
    margin: 25px 20px;
}

#loading-pane-container {
	opacity: 0;
	position: absolute;
    display: block;
    width: 100%;
    bottom: 50%;
    font-size: 1.5em;
}
#loading-pane {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}
#loading-pane span {
	padding: 1px 2px;
}
#loading-name {
	opacity: 0;
	padding: 1px 2px;
}
#loading-bar-container {
	opacity: 0;
	border: 2px solid #000;
	padding: 1px;
	height: 32px;
}
#loading-bar {
	background: #000;
	width: 0;
	height: 100%;
}
#loading-connected {
	opacity: 0;
	position: absolute;
    display: block;
    width: 100%;
    bottom: 50%;
    font-size: 2.4em;
    text-align: center;
}
#loading-connected span {
	padding: 2px 4px;
}

#message-container {
	position: absolute;
    display: block;
    width: 100%;
    bottom: 50%;
}
#message-container p {
	font-size: 2em;
    text-transform: uppercase;
	text-align: center;
	display: block !important;
}

#message-container hr {
    width: 30px;
    border-top: 2px solid #000;
    border-bottom: none;
}
#message-container p, #message-container hr {
    margin-top: 0;
    margin-bottom: 0;
}
#main-container p.hidden {
    color: #000;
}
#message-marker {
    position: absolute;
    display: block;
    width: 100%;
    top: 50%;
    vertical-align: top;
	text-align: center;
}
#triangle {
    color: #F00;
    font-size: 2em;
}

input[type=text] {
	background: #000;
	color: #FFF;
	border: 0px;
	padding: 10px 3px 3px;
    font-family: 'Lekton', sans-serif;
    font-weight: 0.1;
    text-transform: uppercase;
}
input[type=text]:focus {
	outline: none;
}

#input-text {
	font-size: 1em;
	width: 100%;
}

/* Util */
.selectable {
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}
.uppercase {
    text-transform: uppercase;
}
.clear {
	clear: both;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.pad-small {
	padding: 1px 2px;
}
.pad-medium {
	padding: 2px 4px;
}
.invert {
	color: #FFF;
	background-color: #000;
}

.blink {
	animation: blink 1s steps(5, start) infinite;
	-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
	to {
		visibility: hidden;
	}
}
@-webkit-keyframes blink {
	to {
		visibility: hidden;
	}
}

/* Media */
/* 
@media(max-width: 900px) {
	body {
	    color: #FFF !important;
	    background: #000;
	}
	
	#main hr {
		border-top: 2px solid #FFF;
	}
	
	#left-pane {
		border-right: 3px solid #FFF;
	}
	#right-pane {
		border-left: 3px solid #FFF;
	}
	
	input[type=text] {
		background: #FFF;
		color: #000;
	}
	
	.invert {
		color: #000;
		background-color: #FFF;
	}
}
 */
