html,
body {
	padding: 0;
	margin: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: sans-serif;
}
button {
	background-color: #000;
	color: rgb(205, 214, 244);
	border-radius: 5px;
	border: 1px solid rgb(205, 214, 244);
	font-weight: 600;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5vw;
	transition: all 0.2s;
}
button:hover {
	transform: scale(1.05);
	background-color: #111;
	border: 1px solid rgb(225, 234, 255);
	color: rgb(225, 234, 255);
	cursor: pointer;
}
.stages {
	position: relative;
	height: 30px;
	pointer-events: none;
	.stage {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		transition:
			opacity 0.5s ease,
			visibility 0.5s ease;
	}
}

.active {
	opacity: 1 !important;
	visibility: visible;
	pointer-events: auto;
}
.progress {
	height: 15px;
	align-items: center;
	justify-content: space-between;
}
.bar {
	border-radius: 1vw;
	width: 90%;
	height: 15px;
	opacity: 1;
	background-color: #22222a;
}
.innerBar {
	transition: all 0.25s;
	background-color: #fff;
	width: 10%;
	height: 100%;
	border-radius: 1vw;
}
a {
	color: #8caaee;
}
span {
    color: #cdd6f4;
}
main {
	text-align: center;
	color: #cdd6f4;
}
.file {
	display: flex;
}
.visually-hidden-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}
.file-btn {
	background-color: #000;
	color: rgb(205, 214, 244);
	border-radius: 5px;
	border: 1px solid rgb(205, 214, 244);
	font-weight: 600;
	height: 30px;
	line-height: 28px;
	padding: 0 12px;
	box-sizing: border-box;
	transition: all 0.2s;
	cursor: pointer;
	white-space: nowrap;
}
.file-btn:hover {
	transform: scale(1.05);
	background-color: #111;
	border: 1px solid rgb(225, 234, 255);
	color: rgb(225, 234, 255);
}
#filename {
	margin: 0 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 30vw;
}
