:root {
	--main-red: #ff3e00;
	--bg-blue: rgba(160, 193, 229, 0.74);
	--bg-grey: rgba(233, 233, 227, 0.95);
	;
}

html,
body {
	position: relative;
	width: 100%;
	height: 100%;
	color: #333;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	/*	background: rgb(75, 71, 71) url('https://images.pexels.com/photos/459225/pexels-photo-459225.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260') no-repeat left top;
*/
	background-size: cover;
	background-attachment: fixed;
}

body::-webkit-scrollbar {
	width: .5em;
	color: red;
}

body::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(10, 10, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
	background-color: darkgrey;
	outline: 1px solid rgb(67, 125, 182);
}

input {
	border-style: unset;
	border: solid 2px var(--bg-blue)
}

button {
	border-style: unset;
	font-size: .8rem;
	letter-spacing: .1rem;
	text-transform: uppercase;
	border-radius: .5rem;
	padding: .5rem;
	margin: .5rem;
	background-color: var(--bg-blue);
	border: solid 1px lightgrey;
	box-shadow: none;
	transition: all ease-in .5s;
	cursor: pointer;
	font-weight: 500;
	color: grey;
}

/*button:hover {
	color: #666;
	transition: all ease-in .5s;
	transform: scale(105%);
}*/

.Uploader {
	position: relative;
	border: dashed 4px grey;
	padding: 1rem;
	width: 100%;
	height: 100px;
	background-color: var(--bg-blue);
	opacity: 0.7;
	border-radius: 10px;
	max-width: 600px;
	transition: all 0.5s ease-out;
}

.Uploader::before {
	position: absolute;
	left: 0px;
	top: 40%;
	font-size: 1.5rem;
	opacity: .3;
	width: 100%;
	content: 'choose a file or drag it here for upload';
}

.Uploader:hover {
	cursor: pointer
}

.Uploader .dragover {
	border: dashed 6px #333;
	transition: all 0.5s ease-out;
}

.FileList {
	width: 100%;
	height: 90%;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 1rem;
}

.File {
	font-size: 1rem;
	padding: .3em;
	display: flex;
	width: 100%;
	justify-content: space-between;
	cursor: pointer;
	border-bottom: solid 1px transparent;
	transition: all .5s ease-in-out;
}

.File .TotalSize {
	color: green
}

.File.Error {
	color: red;
}

.File.Error .TotalSize {
	color: red;
}

.File.Error:hover {
	border-bottom: solid 1px red;
	transition: all .5s ease-in-out;
}

.File:hover {
	border-bottom: solid 1px lightgray;
	transition: all .5s ease-in-out;
}

.Filename {
	width: 70%;
	overflow-x: hidden;
	text-overflow: ellipsis;
	text-align: left;
}

.Filesize {
	text-align: right;
	color: grey;
	width: auto;
	padding-right: 1em;
	font-size: .8em;
	min-width: 80px;

}

.Loading {
	animation: blinker .5s linear infinite;
	transition: all .5s ease-in-out;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

label {
	display: block;
	color: grey;
	margin: .5rem;
}

input {
	font-size: .9rem;
	padding: .5rem;
	border-radius: .5rem;
}