.h2el-boot-loader {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(900px 560px at 50% 38%, #1b2436 0%, transparent 58%),
		linear-gradient(180deg, #0b0e14 0%, #07090e 100%);
	color: #f6f1e6;
	font-family: "Segoe UI", Tahoma, sans-serif;
	transition: opacity .55s ease, visibility .55s ease;
}

.h2el-boot-loader.is-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.h2el-boot-loader__card {
	text-align: center;
	padding: 8px 20px 24px;
}

.h2el-boot-loader__ring {
	width: 68px;
	height: 68px;
	margin: 0 auto 20px;
	border-radius: 50%;
	border: 3px solid rgba(240, 198, 116, .16);
	border-top-color: #f0c674;
	border-right-color: #5eead4;
	animation: h2el-spin .85s linear infinite;
	box-shadow: 0 0 28px rgba(240, 198, 116, .18);
}

.h2el-boot-loader strong {
	display: block;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #f0c674;
	font-size: 12px;
	margin: 0 0 8px;
}

.h2el-boot-loader span {
	display: block;
	color: #a7b0c2;
	font-size: 13px;
}

@keyframes h2el-spin {
	to { transform: rotate(360deg); }
}
