html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

html,
body {
	height: 100%;
	font-family: "Montserrat", sans-serif;
	background: rgb(152,244,241);
	background: radial-gradient(circle, rgba(152,244,241,1) 0%, rgba(0,30,79,1) 100%);
}

canvas {
	display: block;
}

body {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
	margin: 0;
}

.strong {
	font-weight: 600;
}

#unity-container {
	width: 100%;
	height: 100%;
}

#unity-canvas {
	width: 100%;
	height: 100%;
	background: #262222;
}

#unity-fullscreen-button {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 38px;
	height: 38px;
	background: url("fullscreen-button.png") no-repeat center;
	background-size: contain;
}

/* Loading cover styles etc */
#loading-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #001e4f;
}

#unity-loading-bar {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#unity-logo {
	text-align: center;
}

#unity-logo img {
	max-width: 80%;
}

#unity-progress-bar-empty {
	width: 80%;
	height: 24px;
	margin: 10px 20px 20px 10px;
	text-align: left;
	border: 1px solid white;
	padding: 2px;
}

#unity-progress-bar-full {
	width: 0%;
	height: 100%;
	background: white;
}

.light #unity-progress-bar-empty {
	border-color: black;
}

.light #unity-progress-bar-full {
	background: black;
}

.spinner,
.spinner:after {
	border-radius: 50%;
	width: 5em;
	height: 5em;
}

.spinner {
	margin: 10px;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #ffffff;
	transform: translateZ(0);
	animation: spinner-spin 1.1s infinite linear;
}

@keyframes spinner-spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* START SPLASH STYLES */

.start-splash {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #001e4f;
	color: white;
	z-index: 420000;
	display: flex;
	align-items: center;
	justify-content: center;
	inset: 0;
}

.start-splash h1 {
	margin-top: 0.75rem;
}

.start-splash h2 {
	margin-top: 0.75rem;
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

.start-splash__inner {
	max-width: 22rem;
}

.start-splash__header {
	display: grid;
	grid-template-columns: min-content auto;
	grid-template-rows: repeat(2, auto);
	align-items: center;
	justify-content: center;
	column-gap: 2.25rem;
}

.start-splash__logo {
	width: 74px;
	grid-row: 1/3;
}

.start-splash__main {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 3.875rem;
}

.input {
	border-radius: 10rem;
	border: none;
	padding: 1rem;
	background-color: #ffffff;
	font-family: inherit;
	text-align: center;
	width: 100%;
	margin-top: 2rem;
}

.button {
	border-radius: 10rem;
	border: none;
	padding: 1rem;
	background-color: #FCBF01;
	font-family: inherit;
	text-transform: uppercase;
}

.button:hover {
	cursor: pointer;
}

.button:disabled {
	background-color: #3f3f3f;
}

.button--start {
	width: 100%;
	margin-top: 2rem;
}

.button--enter {
	width: 40%;
	margin-inline: auto;
	display: block;
}

/* LOADING BRIEF STYLES */

.loading-brief {
	background-color: white;
	padding: 2rem;
	color: #001e4f;
	max-width: 960px;
	margin-inline: 3rem;
	margin-bottom: 3rem;
}

.loading-brief__header {
	display: grid;
	grid-template-columns: min-content auto;
	grid-template-rows: repeat(2, min-content);
	align-items: center;
	row-gap: 0.3rem;
	margin-bottom: 1.5rem;
}

.loading-brief__header img {
	width: 3.3rem;
	grid-row: 1/3;
	margin-right: 1.25rem;
}

.loading-brief__main {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-template-rows: minmax(0, min-content) 1fr;
	column-gap: 2.5rem;
}

.loading-brief__image {
	grid-row: 1/3;
	grid-column: 2/3;
}

.loading-brief__details,
.loading-brief__reportInner {
	padding: 1.6rem;
	line-height: 1.8;
}

.loading-brief__details {
	background-color: #2f908e;
	color: white;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.loading-brief__report {
	background-color: #f3f3f4;
	position: relative;
}

.loading-brief__reportInner {
	position: absolute;
	inset: 0;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

.app-text {
	justify-content: center;
	align-items: center;
	text-align: center;
	color: rgb(255, 255, 255);
	font-size: 12px;
}
