body {
	margin:0;
	padding:0;
	background-color:#fff;
}
body, body * {
	font-size:14px;
	font-family: 'Roboto',sans-serif!important;
}

body.home #output,
body.output #upload {
	display:none;
}
body.home #upload,
body.output #output {
	display:block;
}

#app {
	display:block;
	height:100vh;
	width:100%;
	padding:80px 20px 20px 20px;
	box-sizing:border-box;
}
.tabs {
	margin-top:40px;
	margin-bottom:20px;
}

/** APP LANDING **/
#app.home #title {
	display:block;
	margin:0 auto;
	position: absolute;
	max-width:calc(60% - 80px);
	top: 50%;
	left:0;
	right:0;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#app.home h1 {
	display:block;
	font-weight:100;
	color:#cecece;
	font-size:60px;
	text-align:center;
	text-transform:uppercase;
}
#app.home h2 {
	display:block;
	line-height:1.5;
	color:#666;
	font-weight:300;
	font-size:22px;
	text-align:justify;
	margin-bottom:80px;
}
/** UPLOAD LOG **/
#app.home #upload {
	display:block;
	width: 260px;
	text-align:center;
	background-color:#f5f5f5;
	margin:0 auto;
	cursor:pointer;
	padding:20px;
	border-bottom:2px solid #333;
	transition:.3s;
}
#app.home #upload:hover {
	width:300px;
}
#app.home #upload span {
	font-size:18px;
	color:#333;
}
#app.home #upload input {
	display:none;
}
/** UPLOAD LOG END **/
/** APP LANDING END **/

/** HEADER & NAVIGATION **/
#header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    padding: 5px 10px;
	background-color:#fff;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.23);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.23);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.23);
}
#logo,
#logo img {
	height:100%;
	width:auto;
	display:inline-block;
}
#nav {
	float:right;
}
#nav span {
	display: inline-block;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
    font-weight: 100;
    color: #cecece;
    cursor: pointer;
    margin-right: 24px;
    color: #333;
}
/** HEADER & NAVIGATION **/

/** APP OUTPUT **/
#app.output .cell {
	float: left;
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: default;
    border: 1px solid #fff;
    box-sizing: border-box;
}
#app.output table tr td {
	padding:5px 10px;
	transition:.3s;
}
#app.output table tr:hover td {
	background-color:#f1f1f1;
}
#app.output .tabs + .container div[tab-id=overview].active {
	display:flex;
}
#app.output .tile {
	flex-grow: 2;
    box-sizing: border-box;
    margin: 20px 1%;
    background-color: #fff;
	-webkit-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);
	transition:.3s;
}
#app.output .tile:hover {
	-webkit-box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 75%);
}
#app.output .tile .card {
	padding: 20px;
    background-color: #00b388;
    color: #fff;
    text-align: center;
    font-size: 60px;
    min-height: 160px;
    line-height: 160px;
}
#app.output .tile .details {
	padding: 10px;
    line-height: 1.4;
    background-color: #fff;
    color: #333;
	text-align:center;
}
/** APP OUTPUT **/

@media screen and (max-width: 992px) {
	#app.home #title {
		width:90%;
		max-width:90%;
	}
}