<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.books, .single-book {
	overflow: hidden
}
.single-book-w-footer {
	height: 850px;
	width: 100%;
	margin-bottom: 275px
}
.single-book {
	left: 0;
	top: 0;
	position: absolute;
	height: 100%;
	width: 100%
}
.books {
	width: 100%;
	/* display: flex; */
	flex-wrap: wrap;
	justify-content: center;
	align-items: center
}
.book {
	width: 240px;
	height: 330px;
	position: relative;
	text-align: center;
	margin: 2%
}
.book-cover, .light {
	position: absolute;
	border-radius: 3px
}
.book-cover {
	z-index: 1;
	width: 100%;
	height: 100%;
	transform-origin: 0 50%;
	-webkit-transform-origin: 0 50%;
	background: 0 0/cover #111;
	box-shadow: inset 4px 1px 3px #ffffff60, inset 0 -1px 2px #00000080;
	transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out
}
.effect, .light {
	height: 100%;
	transition: .5s
}
.book .book-cover {
	background-size: 100% 100%
}
.effect {
	width: 20px;
	margin-left: 10px;
	border-left: 2px solid #00000010;
	background-image: linear-gradient(90deg, rgba(255, 255, 255, .2) 0, rgba(255, 255, 255, 0) 100%)
}
.light {
	width: 90%;
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 100%);
	top: 0;
	right: 0;
	opacity: .1;
	-webkit-transition: .5s
}
.book:hover {
	cursor: pointer
}
.book:hover .book-cover {
	transform: perspective(2000px) rotateY(-30deg);
	-webkit-transform: perspective(2000px) rotateY(-30deg);
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	box-shadow: inset 4px 1px 3px #ffffff60, inset 0 -1px 2px #00000080, 10px 0 10px -5px #00000030
}
.book:hover .effect {
	width: 40px
}
.book:hover .light {
	opacity: 1;
	width: 70%
}
.book-inside {
	width: calc(100% - 2px);
	height: 96%;
	position: relative;
	top: 2%;
	border: 1px solid grey;
	border-radius: 3px;
	background: #fff;
	box-shadow: 10px 10px 10px -2px #00000030, inset -2px 0 0 grey, inset -3px 0 0 #dbdbdb, inset -4px 0 0 #fff, inset -5px 0 0 #dbdbdb, inset -6px 0 0 #fff, inset -7px 0 0 #dbdbdb, inset -8px 0 0 #fff, inset -9px 0 0 #dbdbdb
}</pre></body></html>