/* Maintaince background */
.game-wrapper.down {
	background: no-repeat center url(./maintenance.webp);
	background-size: cover;
	min-height: 100vh;
}

.game-wrapper.down .footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	margin-bottom: 20px;
}

.link {
	color: white;
	font-weight: bold;
}
/* *********************** */

/* Maintaince status */
.shutdown-status {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -8px;
	width: 100%;
	opacity: 0;
	transition: all 0.6s ease-in;
	transform: translateY(-150%);
}

.shutdown-status.show {
	opacity: 1;
	transform: translateY(-00%);
	z-index: 1;
}

.shutdown-status svg {
	max-width: 26px;
}

.shutdown-status p {
	color: white;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	font-size: 18px;
	margin-left: 8px;
}

.shutdown-status p .timer {
	color: yellow;
}

/* ***************** */
