/* general styles */
html {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 62.5%;
	color: rgb(64,64,64);
	box-sizing: border-box;
	background: rgb(255,255,255);
}
*, *:before, *:after {
	box-sizing: inherit;
}

body {
	font-family: sans-serif;
}

.container {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	padding: 24px 24px;
	background: rgb(255,255,255);
}

.brand {
	width: 50%;
	height: 50%;
	margin: 0 0 24px 0;
	padding: 0;
}
.brand img {
	width: 50%;
	margin: 0;
	padding: 0;
	border: 0;
}

h1 {
	font-size: 20px;
	margin: 0 0 4px 0;
	padding: 0;
}

p {
	font-size: 1.6rem;
	line-height: 1.45;
}

h1 + p {
	margin: 0 0 32px 0;
	padding: 0 0 24px 0;
	border-bottom: 1px rgb(192,192,192) solid;
}

/* -------- */

form {
	margin: 0 0 32px 0;
	font-size: 1.6rem;
	font-weight: 400;
}

/* textarea to show files as json */
textarea#uploaded {
	width: 100%;
	min-height: 300px;
	font-size: 10px;
/*	display: none;*/
}


/* show upload progress with bars */
.progress-bar-area {
	margin-top: 20px;
}
.progress {
	display: none;
	position: relative;
	width: 100%;
	height: 32px;
	background: #C7DA9F;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 16px;
}
.bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 32px;
	background: rgb(122,199,7);
	text-align: left;
	color: white;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 32px;
	padding: 0 8px;
}
.bar.red {
	background: tomato;
}

/* -------- */

.footnote {
	width: 100%;
	margin: 0;
	padding: 12px 0 0 0;
	border-top: 1px rgb(192,192,192) solid;
	font-size: 1.4rem;
}

.footnote a {
	font-weight: 500;
	color: rgb(215,0,20);
	text-decoration: none;
}

@media only screen and (max-width: 480px) {
	.container {
		padding: 24px 16px;
	}
}

@media only screen and (max-width: 360px) {
	.footnote {
		font-size: 1.12rem;
	}
}

@media only screen and (min-width: 770px) {
	html {
		padding: 24px 0 0 0;
		background: rgb(40,53,68);
	}
	.container {
		border-radius: 16px;
	}
}