.spoiler-box {
	display: none;
}

.spoiler-lab {
	background-color: #000000;
	color: #000000;
	cursor: pointer;
}

:checked + .spoiler-lab {
	background-color: #AAAAAA;
	color: #000000;
}

.page {
	justify-content: flex-start;
	align-items: normal;
}

.image-intro {
	width: 150px;
	float: left;
	margin-right: 1em;
}

.book-box {
	margin: 1rem 0;
	padding: 1rem 2rem;
	box-sizing: border-box;
	box-shadow: inset 0px 0px 14px -4px var(--c-snippetShadowHover);
	display: flex;
	flex-direction: row;
	width: 100%;
}

.book-cover {
	min-width: 150px;
	width: 150px;
}

.book-info {
	display: flex;
	flex-direction: column;
	margin-left: 15px;
}

.book-title {
	font-size: 3em;
	margin-top: 0em;
	margin-bottom: 0em;
}

.book-author {
	margin-top: 0em;
}

.book-links {
	margin-top: 1em;
	margin-left: 2em;
	display: flex;
	flex-direction: row;
}

.book-links div {
	display: flex;
	flex-direction: column;
	transform: scale(1.0);
	transition: ease 0.5s;
	align-items: center;
}

.book-links a {
	align-items: center;
	text-align: center;
	margin-right: 3em;
}

.book-links a div {
	font-size: 0.70em;
	margin-top: 0.5em;
}

.book-links a img {
	width: 50px;
	height: 50px;
}

.book-links div:hover {
	transform: scale(1.3);
}

.book-review-icon {
	width: 35px;
	height: 20px;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.review-background {
	box-sizing: border-box;
	padding: 5px;
	height: 175px;
}

.review-background.book {
	background: #c1a77c;
	box-shadow: inset 0px 0px 14px -4px #383023;
}

.review-background.game {
	background: var(--c-themeHueOrange);
	box-shadow: inset 0px 0px 14px -4px #383023;
}

.book-review-unfilled {
	opacity: 0.3;
}

.review-score-box {
	max-width: 200px;
	align-content: center;
	margin-left: 20px;
}

.score-digits {
	text-align: right;
	font-size: 30px;
	float: right;
}

.score {
	font-size: 45px;
	float: right;
}

.score-separator {
	margin-top: 25px;
	font-size: 35px;
	float: right;
}

.score-out-of {
	margin-top: 40px;
	font-size: 25px;
	float: right;
}

.book-box-footer {
	font-size: 0.75em;
}

@media (max-width: 768px) {
	.book-box {
		flex-direction: column;
		align-content: center;
		justify-content: center;
		padding-bottom: 30px;
	}
	
	.book-title {
		text-align: center;
	}
	.book-author {
		text-align: center;
	}
	
	.book-cover {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	
	.book-info {
		margin-left: 0px;
	}
	
	.review-score-box {
		display: block;
		margin-top: 20px;
		margin-left: auto;
		margin-right: auto;
	}
}