[v-cloak] > * {display:none}
[v-cloak]::before { content: "loading..." }

#pauseLayer {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: white;
	opacity: 0.25;
	z-index: 10;
}
#info {
	display: block;
	width: 100%;
	min-height: 50px;
}
#game {
	position: relative;
	width: 100%;
	height: auto;
	/* min-height: 400px; */
	border: 2px solid red;
}
.playingCard {
	display: inline-block;
	height: 200px;
	width: 150px;
	border: 1px solid black;
	margin: 5px;
	position: relative;
	box-shadow: 5px 5px 10px #850000;
	/* overflow: hidden; */

	background-color: transparent;
	perspective: 1000px;
}
.playingCard:hover {
	cursor: pointer;
	border: 2px solid blue;
}
.playingCard .back, .playingCard .front {
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.playingCard .back {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background-color: rgb(135, 37, 130);
	z-index: 2;
}
.playingCard .back img {
	height: 200px;
	width: 150px;
}
.playingCard .front {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background-color: white;
	z-index: 1;
	overflow: hidden;
}
.playingCard .frontImageContainer {
	text-align: center;
}
.playingCard .front img {
	height: 175px;
	max-width: 800px;
	overflow: hidden;
}
.playingCard .front .matched { 
	position: absolute;
	top: 0px;
	bottom: 0px;
	opacity: 0.50;
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	color: green;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
.playingCard .label {
	text-align: center;
}
.flip-transition-enter { transform: rotateY(180deg); }
.flip-transition-enter-active { transition: transform 0.5s; }
.flip-transition-leave-active { transition: transform 0.5s; transform: rotateY(180deg); }

#scoreboard {
	float: right;
	border: 1px solid black;
	padding: 5px;
	margin: 10px;
	background-color: rgb(245,244,240);
}
#info {
	margin-bottom: 10px;
	min-height: 50px;
}
.gameButton {
	float: right;
	margin-top: 10px;
	margin-left: 10px;
}
#appWrapper:fullscreen {
	width: 100vw;
	height: 100vw;
	background-color: #f0f0f0;
}
#appWrapper:fullscreen #app {
	padding: 100px;
}
#appWrapper:fullscreen #app #game {
	background-color: #ffffff;
}
