@media all and (max-width: 639px) {
	.globalWrap {
		padding-left: 0;
		padding-right: 0;
	}
	.globalWrap .restartButton {
		margin: 0 auto;
		display: flex;
	}
	.stats {
		padding-left: 22px;
		padding-right: 22px;
	}
}
.cardWrap {
	position: relative;
	min-width: 318px;
	min-height: 318px; /* hard-coded to improve appearance prior to JS init */
	margin: 0 auto 36px;
}
.flipCard {
	position: absolute;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.flipCard.vanishing {
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	pointer-events: none;
}
.flipCard > * {
	position: absolute;
}
.flipCard .back {
	background: #ffffff;
}
.flipCard img {
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	pointer-events: none;
}
.illustration {
	width: 48px;
	height: 48px;
	margin: 0 auto;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../common/img/illustration.svg);
	background-size: 48px 48px;
	margin-bottom: 12px;
}
.cardWrap.loading::before {
	content: "";
	display: block;
	position: absolute;
	width: 32px;
	height: 32px;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: #f4e9de;
	border-radius: 5px;
	-webkit-animation: cyclicFlip 1.2s ease-in-out infinite;
	-moz-animation: cyclicFlip 1.2s ease-in-out infinite;
	animation: cyclicFlip 1.2s ease-in-out infinite;
}
@-webkit-keyframes cyclicFlip {
	from {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	50% {
		-webkit-transform: scale(-1, 1);
		transform: scale(-1, 1);
	}
	to {
		-webkit-transform: scale(-1, -1);
		transform: scale(-1, -1);
	}
}
@-moz-keyframes cyclicFlip {
	from {
		transform: scale(1, 1);
	}
	50% {
		transform: scale(-1, 1);
	}
	to {
		transform: scale(-1, -1);
	}
}
@keyframes cyclicFlip {
	from {
		transform: scale(1, 1);
	}
	50% {
		transform: scale(-1, 1);
	}
	to {
		transform: scale(-1, -1);
	}
}
