FinishLevelUI {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	background-color: rgba(0,0,0,0.5);
	//backdrop-filter: blur( 10px );
	pointer-events: all;

	.heading-container {
		position: absolute;
		top: 10%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.button-container {
		position: absolute;
		bottom: 10%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.title {
		font-size: 85px;
		font-family: Poppins;
		color: #b6b6b6;
	}

	.title-sub {
		font-size: 50px;
		font-family: Poppins;
		color: #b6b6b6;
	}

	.time {
		font-size: 70px;
		font-family: Poppins;
		color: #fff;
	}

	.button {
		width: 500px;
		height: 70px;
		padding: 10px;
		margin: 10px;
		background-color: #00ff90;
		color: #000000;
		font-size: 30px;
		text-transform: uppercase;
		font-weight: 1000;
		cursor: pointer;
		align-items: center;
		justify-content: center;

		&:hover {
			background-color: rgba( lighten(lightgray, 10%), .8 );
			sound-in: ui.button.over;
		}
	}

	&.open {
		display: none;
	}
}
