/*
	=================================
	Header 
	=================================
*/

.header_input {
	font-size: 14px;
	position: absolute;
	top: 3px;
	left: 0;
	right: 0;
	bottom: 3px;
	margin: auto;
	width: 500px;
	display: block;
	padding: 12px;
	text-align: center;
	border: 1px dashed #ccc;
}

.upload_area {
    position: absolute;
    overflow: hidden;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    margin: auto;
    border: 2px dashed white;
    border-radius: 20px;
    display: table;
}

.upload_txt {
	display: table-cell;
	vertical-align: middle;
	color: white;
	font-size: 24px;
	margin: auto;
	text-align: center;
}

.upload_input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
}

.header_btns {
	position: absolute;
	top: 5px;
	right: 20px;
}

.header_btns span {
	position: relative;
	top: -5px;
}

.header_btn {
	border: 1px solid #333333;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	display: inline-block;
	cursor: pointer;
}

	.black_btn {
		background-color: #1a1a1a;
	}
	.white_btn {
		background-color: white;
	}
	.green_btn {
		background-color: #519839;
	}



/*
	=================================
	Body 
	=================================
*/

.fileinfo {
	margin: 20px auto 20px auto;
	text-align: center;
}

.error {
    color: red;
    display:none;
    font-size:10pt;
    font-style:italic;
    margin: 10px 0;
    text-align: center;
}

.file {
	display: none;
	position: relative;
	margin: auto;
	cursor: crosshair;
	-moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}

	.file::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 1px dashed grey;
		box-sizing: border-box;
	}

.results_container {
	display: none;
	margin-bottom: 50px;
}

.result {
	position: relative;
	width: 80%;
	min-height: 100px;
	margin: 20px auto 0px auto;
	background-color: white;
	border: 1px solid grey;
	box-sizing: border-box;
	padding: 10px 20px;
	font-family: monospace;
}

.vertical_bar {
	position: absolute;
	top: 0;
	height: 100%;
	width: 1px;
	left: 0px;
	background-color: #4affff;
}

.horizontal_bar {
	position: absolute;
	left: 0;
	width: 100%;
 	height: 1px;
	top: 0px;
	background-color: #4affff;
}




