
.list-books{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	/* grid-template-columns: repeat(auto-fit,minmax(106px,var(--width-grid-template-photo))); */
	/* --width-grid-template-photo: calc(100% / 6 - 8px); */
	padding: 20px 25px;
	background: #6e1200;
	border-radius: 8px;
}
.list-books .book-cover{
	-webkit-box-shadow: 0px 2px 5px 0 rgba(0,0,0,.33);
    box-shadow: 0px 2px 5px 0 rgba(0,0,0,.33);
	/* margin-bottom:8px; */
	padding:8px;
	border-radius: 4px;
	background:rgba(245, 245, 245, 0.05);
	-webkit-transition: background-color .3s ease;
	transition: background-color .3s ease;
	position: relative;
	margin-bottom: 20px;
}
.list-books .book-cover .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	/*border-radius: 4px;*/
	transition: transform 1s;
	will-change: transform;
	transform-style: preserve-3d;
}
.list-books .book-cover .book-title{
	font-size: 14px;
	text-align: center;
	padding:5px 15px;
	color:#fff;
}
.list-books .book-cover:hover{
	background: rgba(245, 245, 245, 0.34);
}
.list-books .book-cover:hover .thumbnail img{
	transform: rotateY(180deg);
}
.form-search-book{
	padding: 20px;
	background: #6e1200;
	border-radius: 8px;
}
.form-search-book .submit-btn{
	background: #fff !important;
    color: #6e1200 !important;
    border: none;
    font-size: 16px;
    padding: 9px !important;
    margin-top: 15px !important;
}
.book-filter{
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
	padding: 3px 0;
    border-radius: 6px;
    background: rgba(196, 43, 13, 0.74);
    background-blend-mode: multiply;
}
.book-filter .book-filter-item{
	padding: 9px 20px;
    margin: 0 4px;
    border: none;
    line-height: 1.1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
	border-radius: 6px;
}
.book-filter .book-filter-item.active{
	background: #fff;
	color: #6e1200;
}
/* .book-shelf{
	width: 100%;
	height: 15px;
	background: #8f6259;
	margin-top: -16px;
	-webkit-box-shadow: -1px 28px 40px 1px rgba(0,0,0,.26);
	box-shadow: 0px 10px 18px -1px rgba(45, 8, 1, 0.77);
	grid-column: 1 / -1;
	margin-bottom: .5rem; 
	z-index:1;
} */

.book-cover::after{
	content: "";
	position: absolute;
	bottom: -15px;
	width: calc(100% + 16px);
	height: 15px;
	-webkit-box-shadow: 18px 4px 22px 0px rgba(45, 8, 1, 0.77);
	box-shadow: 18px 4px 22px 0px rgba(45, 8, 1, 0.77);
	background: #8f6259;
	left: -8px;
	right: -8px;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(220,53,69,1) !important;
}
.grid-view{
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	width: 30px;
	height: 30px;
	background: #ad2409;
	text-align: center;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(45, 8, 1, 0.77);
	box-shadow: 0px 0px 3px 0px rgba(45, 8, 1, 0.77);
}
.grid-list-wrapper .grid-list-table {
	display:none;
}
.grid-view-icon-search{
    left:0;
}
.form-search-book{
    display:none;
}
@media screen and (min-width:1200px){
	.grid-list-wrapper .grid-list-sm-down {
		display:none;
	}
	.grid-list-wrapper .grid-list-table {
		display:block;
	}
	
	.form-search-book{
	    display:block;
	}
	.grid-view-icon-search{
	    display:none;
	}
}
.text-line-clamp-lg-down-3{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}