.front-banner {
	background: url('../img/banner-background.jpg');
	background-size: 100% 100%;
	-webkit-box-shadow: 0 0 10px #aaa;
	-moz-box-shadow: 0 0 10px #aaa;
	box-shadow: 0 0 10px #aaa;
}
.add-book {
	float:right;
	margin-top: -3px;
	margin-left:10px;
}

.rate-form {
	padding-left:5px;
	cursor:pointer;
	display: inline-block;
}
.rate-form .fa, .rate .fa {
	font-size:24px;
	color:#aaa;
}
.rate-form .fa.checked, .rate .fa.checked {
	color:orange;
}

.panel-heading {
	color: #626b6e !important;
	font-size: 16px;
	font-weight: bold;
}
.trumbowyg-button-pane button {
	width: 34px !important;
}
#books {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
	justify-content:center;
}
#books .book {
	cursor:pointer;
	width: 200px;
	text-align:center;
	margin-bottom: 15px;
	perspective: 200px;
	position:relative;
	border-bottom: 1px solid #eee;
	padding-bottom:20px;
}
.no-image {
	display:inline-block;
	background: #ddd;
	text-align: center;
}
#books .left-side {
	width: 0px;
	height: 213px;
	background: #999;
	position: absolute;
	top: 13px;
	right: 157px;
	border-radius:1px;
	border-top-left-radius:2px;
	border-bottom-left-radius:2px;
	transition: all 0.3s;
}

#books .book .image, .no-image {
	width: 140px;
	height: 221px;
	border-radius: 2px;
	margin: 10px 0;
	transform: rotate3d(0, 1, 0, 0deg);
	margin-left:10px;
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.1);
	border-left:2px solid #999;
}
#books .book:hover > .image {
	transform: rotate3d(0, 1, 0, 10deg);
}
#books .book:hover > .left-side {
	width: 10px;
	top: 2px;
	right: 165px;
	height: 233px;
	transform: rotate3d(0, 1, 0, -25deg);
}
#books .title {
	color: #000;
	text-decoration:none;
}
.rate .fa {
	font-size:18px;
}
.no-image .author {
	background: rgba(0,0,0,0.1);
	font-size: 14px;
}
.no-image .logo {
	color: rgba(0,0,0,0.3);
	text-shadow:1px 1px 1px #fff;
	font-size: 74px;
	display:inline-block;
	margin-top:10px;
	font-weight: bold;
}
.no-image .design-title {
	font-size:16px;
	color: rgba(0,0,0,0.5);
}
.book h2, .book h3 {
	margin: 9px 0;
}