@charset "utf-8";
@font-face {
	font-family: 'Open Sans Condensed';
	src: url('../font/osc.woff');
}
@font-face {
	font-family: 'Source Code Pro';
	src: url('../font/monospace.woff');
}
* {
	margin: 0;
	padding: 0;
}
*:not(input):not(textarea) {
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
body {
	background: #fff;
}
.wrapper {
	width: calc(100% - 40px);
	min-width: 900px;
	margin: 20px auto;
}
.wrapper>h1 {
	box-sizing: border-box;
	color: #920508;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 2rem;
	margin: 0 0 20px 0;
	font-weight: 100;
	height: 34px;
	line-height: 28px;
}
.imgSpan {
	box-sizing: border-box;
	display: inline-block;
	width:34px;
	height: 34px;
	background-color: #920508;
	background-image: url(../img/logo.svg);
	background-position: center;
	background-size: 26px;
	background-repeat: no-repeat;
	margin: 0 10px 0 0;
	border-radius: 17px;
}
.textSpan{
	vertical-align: 5px;
}
.areas {
	width: 100%;
}
.outputWrapper, .sourceWrapper {
	box-sizing: border-box;
	width: calc(50% - 10px);
	float: left;
	background: #3f3f3f;
	border: #838383 4px solid;
}
.outputWrapper {
	margin: 0 0 0 10px;
}
.sourceWrapper {
	margin: 0 10px 0 0;
}
#source, #output {
	box-sizing: border-box;
	width: 100%;
	height: 300px;
	padding: 5px 5px 5px 0;
}
.errorMessage{
	position: relative;
	box-sizing: border-box;
	border:none;
	border-top:#fff 1px solid;
	background: #3f3f3f;
	display: none;
	resize: none;
	width: 100%;
	height: 90px;
	margin-top: 10px;
}
.close{
	position: absolute;
	box-sizing: border-box;
	top:10px;
	right: 5px;
	width: 13px;
	height: 14px;
	border: #fff solid 1px;
}
#c1, #c2{
	position:absolute;
	box-sizing: border-box;
	width: 10px;
	height: 2px;
	background: #fff;
	top:5px;
	left:1px;
}
#c1{
	transform: rotate(45deg);
}
#c2{
	transform: rotate(135deg);
}
#error {
	box-sizing: border-box;
	width: calc(100% - 5px);
	height: 61px;
	padding: 5px 5px 5px 0px;
	margin-left: 5px;
}
.outputWrapper>p, .sourceWrapper>p, .errorMessage>p{
	padding: 5px 0 5px 10px;
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
	letter-spacing: .7px;
}
#loadFile, #hiddenOutput {
	display: none;
}
.outputWrapper2, .sourceWrapper2 {
	box-sizing: border-box;
	width: calc(50% - 10px);
	float: left;
}
.outputWrapper2 {
	margin: 0 0 0 10px;
}
.sourceWrapper2 {
	margin: 0 10px 0 0;
}
.setUrlButton, .urlButton, .loadButton, .submitButton, .copyButton, .backButton {
	display: block;
	float: left;
	padding: 3px 10px 3px 10px;
	margin: 10px 20px 40px 0;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #920508;
	border: #920508 solid 1px;
	border-radius: 5px;
}

.urlInput {
	position:absolute;
	box-sizing: border-box;
	display: block;
	float: left;
	height: 31px;
	width: 300px;
	padding: 3px 10px 3px 10px;
	margin: 10px 5px 40px 0;
	font-family: 'Open Sans Condensed', sans-serif;
	border: #666 solid 1px;
	border-radius: 5px;
	font-size: 1rem;
}
.setUrlButton, .backButton{
	position:absolute;
	left:327px;
	text-align: center;
}
.backButton{
	left:382px;
}
.setUrlButton, .urlInput, .urlButton, .backButton, .loadButton, .submitButton, .urlInput{
	opacity: 0;
	visibility:hidden;
}
.setUrlButton{
	display:block;
	width: 45px;
	height: 31px;
	font-size: 1rem;
	text-align: center;
	padding: 0;
	background: #fff;
}
.setUrlButton:hover, .urlButton:hover, .loadButton:hover, .submitButton:hover, .copyButton:hover, .backButton:hover {
	color: #666;
	border-color: #666;
	cursor: default;
}
.setUrlButton:active, .urlButton:active, .loadButton:active, .submitButton:active, .copyButton:active, .backButton:active {
	background: #FFE1E2;
}
footer{
	position: fixed;
	bottom: 0;
	width:100%;
	background: #fff;
	z-index: 9999;
	padding: 5px 0 5px 0;
	text-align: center;
	color: #920508;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: .8rem;
}
footer>a{
	color: #920508;
	text-decoration: none;
}