/* ==================== play.css ==================== */

.Play .body .answer {
	position: relative;
}

.Play .body.onemore .answer::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 2.5em;
	background: url(../images/onemore.svg) no-repeat center center;
	background-size: contain;

	animation-name: blink;
	animation-timing-function: steps(1);
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.Play .answer button {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5em 0.5em 1em;
}

.Play .answer button .ill {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 8.5em;
	height: 8.5em;
}

@media (max-width: 767px) {

	.Play .question .pkg {
		width: 6em;
	}
	.Play .question .title {
		margin-left: 1em;
	}
	.Play .question {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.Play .answer {
		margin-top: 0.5em;
	}
	.Play .body.onemore .answer {
		margin-top: 3.5em;
	}
	.Play .body.onemore .answer::before {
		transform: translateY(-0.5em);
	}
}

@media (min-width: 768px) {
	.Play .body {
		margin-top: 3em;
	}
	.Play .question {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.Play .question .pkg img {
		width: 8.5em;
	}
	.Play .question .title {
		margin-top: 1em;
	}

	.Play .body.onemore .answer::before {
		transform: translateY(-0.25em);
	}
}