/* News */

.BooksContainer {
	width: 100%;
	height: auto;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 50px;
	position: relative;
	/*text-align: center;*/
}

.BookResultBlock {
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
}

.BookResultBar {
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border: 1px solid #cecece;
    padding: 5px;
}

/* clearfix */
.BooksContainer:before,
.BooksContainer:after {
    content: "";
    display: table;
}
.BooksContainer:after {
    clear: both;
}

@keyframes start {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}


@-webkit-keyframes start {
	from {
		-webkit-transform: scale(0);
	}
	to {
		-webkit-transform: scale(1);
	}
}

.BookItem {
	/*background-color: #fff;*/
	/*float: left;*/
    /*padding: 0px;*/
	padding: 0px;
	margin: 0px;/*
	padding-bottom: 30px;*/
	-moz-box-shadow: 0 0 3px #888;
	-webkit-box-shadow: 0 0 3px #888;
	box-shadow: 0 0 3px #888;
	overflow: hidden;
	/*border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;*/
	cursor: pointer;
    margin: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative; 
    display: inline-block; 
    
}

@media all and (min-width: 961px) {
    .BookItem {
        width: 280px;
        height: 380px;
    }
}

@media all and (min-width: 769px) {
    
    .BookItem {
        width: 280px;
        height: 380px;
    }
}

@media all and (max-width: 768px) {
    .BookItem {
        width: 95%;
        height: 800px;
    }
}

.BookItem:hover, .BookItem:focus {
	-webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.6);
}

.BookItemOnSale {
    -moz-box-shadow: 0 0 8px #c00;
	-webkit-box-shadow: 0 0 8px #c00;
	box-shadow: 0 0 8px #c00;
	overflow: hidden;
}

.BookItemOnSale:hover, .BookItemOnSale:focus {
	-webkit-box-shadow: 0 0 8px 2px rgba(200, 0, 0, 0.6);
	-moz-box-shadow: 0 0 8px 2px rgba(200, 0, 0, 0.6);
	box-shadow: 0 0 8px 2px rgba(200, 0, 0, 0.6);
}

.BookItem img {
	vertical-align: top;
    width: 100%;
    /*height: ;*/
    /*max-height: 340px;*/
    min-height: 380px;
}

.BookItem .ThemePhoto {
    /*padding-bottom: 0%;
    height: 100%;*/
    width: 100%;
    position: relative;
}

.BookItem {
    background-color: #333;
}

.BookItem .caption {
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    color: #fff;
    z-index: 100;
	overflow: hidden;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    left: 0;
}

.BookItemOnSale .caption {
    background-color: rgba(200,0,0,0.6);
}

.BookItem .captionSlide {
    padding-top: 10px;
	height: 150px;
    width: 100%;
    display: block;
    bottom: -150px;
    line-height: 50pt;
    text-align: center;
}

.BookItem:hover .captionSlide {
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.BookItemSold .captionSlide {
    padding-top: 10px;
	height: 100%;
    width: 100%;
    display: block;
    bottom: -100%;
    line-height: 50pt;
    text-align: center;
}

.BookItemSold:hover .captionSlide {
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.BookItem .MarkedIcon {
    margin: 2px;
    margin-left: 5px;
    padding: 2px;
    float: left;
    background-color: rgba(200, 200, 200, 0.8);
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    /*border: 1px solid #eee;*/
    -webkit-transition: opacity .5s ease-in-out;
        -moz-transition: opacity .5s ease-in-out;
        -ms-transition: opacity .5s ease-in-out;
        -o-transition: opacity .5s ease-in-out;
        transition: opacity .5s ease-in-out;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    
}

.BookItem .MarkedIcon i {
    color: #222;
    padding-left: 2px;
    padding-right: 2px;
}

.BookItem .MarkedIcon i.onSale {
    color: #cc0000;
}

.BookItem .MarkedIcon i.fa-diamond {
    color: #000099;
}

.Cart {
    position: absolute;
    top: 100px;
    left: 20px;
    width: auto;
    height: auto;
    z-index: 100;
    margin: 2px;
    margin-left: 5px;
    padding: 2px;
    float: left;
    background-color: #eee;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border: 1px solid #eee;
    -webkit-transition: box-shadow .3s ease-in-out;
        -moz-transition: box-shadow .3s ease-in-out;
        -ms-transition: box-shadow .3s ease-in-out;
        -o-transition: box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out;
    cursor: pointer;
    position: fixed;
    -webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.6);
}

.Cart:hover {
    -webkit-box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.6);
}

.Cart span i {
    font-size: 36px;
    padding: 10px;
}

.Cart .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 120;
    width: 25px;
    height: 25px;
    background-color: #ff8000;
    color: #fff;
}

/*
@media all and (min-width: 961px){
    .CollectionBlock {
        display: flex;
    }
}

.CollectionDetailDiv {
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 1px solid #cecece;
}

@media all and (min-width: 961px){
    .CollectionDetailDiv {
        height: auto;
    }
}

.CollectionDetailBlock {
    padding-top: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #bbb;
}

.CollectionDetailBlock .DetailTitle {
    font-weight: 600;
    font-size: 16px;
    padding: 5px;
}

.CollectionDetailBlock .DetailContent {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
}
*/

.CollectionImage {
    width: 90%;
    height: auto;
    /*height: 100%;*/
    /*z-index: 10;*/
}

td.TableTitle {
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
}

img.BookPrefacePhoto {
    /*width: 25%;*/
    display: inline-block;
    width: 100%;
}

.Cart {
    display: none;
}

img.cartImg {
    width: 100px;
}


.RemoveCartItemBTN {
    opacity: 0.6;
    -webkit-transition: opacity .3s ease-in-out;
        -moz-transition: opacity .3s ease-in-out;
        -ms-transition: opacity .3s ease-in-out;
        -o-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
    cursor: pointer;
    color: #990000;
}

.RemoveCartItemBTN:hover {
    opacity: 0.8;
}

.CartContainerTotalDiv {
    width: 100%;
    text-align: right;
}

.CartContainerTotalDiv table {
    width: 100%;
    text-align: right;
}

.CartContainer h5 {
    font-size: 20px;
    /*text-align: center;*/
    line-height: 1.5em;
}

.CartContainer h5 u {
    font-size: 28px;
}

.SaleOrgPriceBlock {
    text-decoration:line-through;
    font-size: 14px;
}

.SalePriceBlock {
    color: #990000;
    font-size: 18px;
    padding: 10px;
}