/* Product Post Box */
/* .product-post-box */
.product-post-box{
    margin: 15px 0;
    background: #fff;
     -webkit-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.34);
    -moz-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.34);
    box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.34); 
    transition: all 0.65s;
    -webkit-transition: all 0.65s;
    -moz-transition: all 0.65s;
    -o-transition: all 0.65s;
    -ms-transition: all 0.65s;
}
.product-post-box:hover{
    -webkit-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    -khtml-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    transition: all 0.65s;
    -webkit-transition: all 0.65s;
    -moz-transition: all 0.65s;
    -o-transition: all 0.65s;
    -ms-transition: all 0.65s;
}

.product-post-box .img{
    height: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    object-fit: none;
    -webkit-object-fit: none;
    -moz-object-fit: none;
    -o-object-fit: none;
    -ms-object-fit: none;
    object-position: center;
    -webkit-object-position: center;
    -moz-object-position: center;
    -o-object-position: center;
    -ms-object-position: center;
}
.product-post-box .img:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.product-post-box .img img {
    cursor: pointer;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.65s;
    -webkit-transition: all 0.65s;
    -moz-transition: all 0.65s;
    -o-transition: all 0.65s;
    -ms-transition: all 0.65s;
    opacity: 1;
}
.product-post-box .img img:hover{
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    transition: all 0.65s;
    -webkit-transition: all 0.65s;
    -moz-transition: all 0.65s;
    -o-transition: all 0.65s;
    -ms-transition: all 0.65s;
}
.product-post-box .meta-data{
    padding: 10px;
    height: 62px;
    overflow: hidden;
}
.product-post-box .meta-data h2{
    text-transform: uppercase;
    font-weight: 100 !important;
    font-size: 22px;
    padding: 0;
    margin: 0;
}
.product-post-box .meta-detail{
    padding: 10px;
}
.product-post-box .meta-detail .bid,.product-post-box .meta-detail .bids,.product-post-box .meta-detail .last-bid,.product-post-box .meta-detail .view-bid{
    float: left;
    width: 50%;
    font-size: 13px;
    margin: 2px 0;
}
.product-post-box .meta-detail .bids,.product-post-box .meta-detail .view-bid{
    text-align: right;
}
.product-post-box .meta-detail .bid span,.product-post-box .meta-detail .bids span,.product-post-box .meta-detail .last-bid span,.product-post-box .meta-detail .view-bid span{
    color: #3366CC;
    font-weight: bold;
    font-size: 17px;  
    font-size: 15px;  
}
.product-post-box .meta-detail .bids span{
    color: #663366;
}
.product-post-box .meta-detail .last-bid span{
    color: #ed4951;
}
.product-post-box .meta-detail .view-bid span{
    color: #663366;
}
.product-post-box .meta-detail .bid-button{
    margin: 5px 0;
    height: 50px;
    text-align: right;
}
.product-post-box .meta-detail .bid-button a.action-bid{
    color: #000;
    background: #fff;
    padding: 7px 20px;
    font-size: 22px;
    border: 1px solid #000;
}
.product-post-box .meta-detail .bid-button a.action-close{
    color: #fff;
    background: #ed4951;
    line-height: 50px;
    padding: 7px 20px;
    font-size: 22px;
    border: 1px solid #ed4951;
}
.product-post-box .meta-detail .bid-button a.action-bid:hover{
    color: #fff;
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
}
.product-post-box .meta-detail .bid-button a.action-bid:before{
    background: #000;
}
.product-post-box span.star{
    position: absolute;
    right: 7px;
    top: 7px;
    font-size: 20px;
    z-index: 5;
    color: #ed4951;
}
.browse-more-div{
    text-align: center;
    margin: 15px 0;
}
.browse-more-div a{
    padding: 15px 50px;
    background: #ed4951;
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    letter-spacing: 2px;
}
.browse-more-div a:hover{
    background: #000;
}





























