@font-face {
	font-family: 'Aeonik';
	font-style: normal;
	font-display: swap;
	font-weight: 400;
	src:
		local('Aeonik Regular'),
		url('/fonts/regular.eot') format('eot'),
		url('/fonts/regular.woff2') format('woff2'),
		/* Super Modern Browsers */ url('/fonts/regular.woff') format('woff'); /* Modern Browsers */
	/* Latin */
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Aeonik';
	font-style: normal;
	font-display: swap;
	font-weight: 300;
	src:
		local('Aeonik Light'),
		url('/fonts/light.eot') format('eot'),
		url('/fonts/light.woff2') format('woff2'),
		/* Super Modern Browsers */ url('/fonts/light.woff') format('woff'); /* Modern Browsers */
	/* Latin */
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Aeonik';
	font-style: normal;
	font-display: swap;
	font-weight: bold;
	src:
		local('Aeonik Bold'),
		url('/fonts/bold.eot') format('eot'),
		url('/fonts/bold.woff2') format('woff2'),
		/* Super Modern Browsers */ url('/fonts/bold.woff') format('woff'); /* Modern Browsers */
	/* Latin */
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}

body {
	font-family:
		'Aeonik',
		-apple-system,
		BlinkMacSystemFont,
		'Helvetica Neue',
		sans-serif;
	background: #021534;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.spinner--wrapper {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: spinnerEnterAnimation 0.5s ease-out 0.5s both;
}

.spinner {
	box-sizing: border-box;
	border-top: 3.2px solid rgba(212, 175, 55, 0.1);
	border-right: 3.2px solid rgba(212, 175, 55, 0.1);
	border-bottom: 3.2px solid rgba(212, 175, 55, 0.1);
	border-left: 3.2px solid #d4af37;
	animation: spinnerAnimation 0.9s infinite linear;
}
.spinner,
.spinner:after {
	border-radius: 50%;
	width: 32px;
	height: 32px;
}

@keyframes spinnerAnimation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes spinnerEnterAnimation {
	0% {
		opacity: 0;
	}
}

#unsupported {
	position: fixed;
	top: 50%;
	left: 50%;
	max-width: 370px;
	padding: 40px;
	background: #0e254e;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
	transform: translate(-50%, -50%);
}

#unsupported h1 {
	margin: 0;
	font-weight: bold;
	font-size: 24px;
	-ms-letter-spacing: -0.002em;
	letter-spacing: -0.002em;
	line-height: 1.35;
}

#unsupported p {
	margin-top: 10px;
	color: #9498bf;
}

#unsupported h2 {
	margin: 30px 0 0;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.45;
}

#unsupported ul {
	list-style: none;
	padding: 5px 0 0;
	margin: 0;
}

#unsupported li {
	margin-top: 5px;
}

#unsupported a {
	text-decoration: none;
	color: #f3b11f;
	font-weight: bold;
}

#unsupported a:hover {
	text-decoration: underline;
}

#error {
	position: relative;
	max-width: 1440px;
	min-height: 100vh;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#error .logo {
	display: block;
	position: absolute;
	top: 30px;
	left: 30px;
	width: 100px;
}

#error .icon {
	width: 72px;
	height: 72px;
	stroke: #9498bf;
	stroke-width: 1.5;
}

#error .description {
	color: #9498bf;
	max-width: 500px;
	line-height: 1.35em;
}

#error .note {
	color: #4b5679;
	max-width: 400px;
	font-size: 14px;
	line-height: 1.35em;
}

#error .error-code {
	color: #4b5679;
	max-width: 400px;
	margin-top: 36px;
	font-size: 12px;
	line-height: 1.35em;
}

#error .link {
	text-decoration: none;
	color: #f3b11f;
}

#error .link:hover {
	text-decoration: underline;
}
