/* idle mode */

.idleBody {
	height: 100vh !important;
	width: 100% !important;
}

.idle {
	/*background-color: rgba(0,0,0,0.975);*/
	background: #000;
	height: 100vh;
	width: 100%;
	position: absolute;
	right: 100%;
	z-index: 1000;
	display: flex;
}

.idle img {
	filter: brightness(80%);
}

@keyframes slideLeft100pc {
	0% {
		right: 100%;
	}

	100% {
		right: 0;
	}
}

@keyframes slideRight100pc {
	0% {
		right: 0;
	}

	100% {
		right: 100%;
	}
}

.idleContent {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.idleContent h1,
.idleContent h3,
.idleContent h4 {
	margin: 20px;
}

.idleLogo {
	margin: 20px;
	height: 2rem;
}

.idleSwarley {
	position: absolute;
	bottom: 0;
	left: 10%;
	height: 75vh;
	z-index: 1000;
}

.idleSwarley img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 600px) {
	.idleSwarley {
		height: auto;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
	}
}