* {
	border: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	background: white;
	font-family: Helvetica, Verdana, Arial, sans-serif;
}

#loader {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	z-index: 10;
}

.logo-fadein {
	opacity: 0;
	animation: fadeIn 1.2s ease-in-out forwards;
	width: 300px;
	height: auto;
	margin-bottom: 40px;
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.progress {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	max-width: 400px;
	height: 20px;
	background-color: #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.progress .full {
	width: 0%;
	height: 100%;
	background-color: #ff6600;
	transition: width 0.3s ease-in-out;
}
