/* product grid */
.product-grid {
	margin-bottom:30px;
}
.product-grid .caption{
	padding: 10px 15px;
	text-align:left;
	border-radius:0 0 5px 5px;
	position:relative;
}
.product-name{
	font-weight: bold;
	font-size: 16px;
	text-transform: capitalize;
	margin: 8px 0 0;
}
.product-name a {
	color: #222222;
	-webkit-transition: ease-in-out .3s all;
    -moz-transition: ease-in-out .3s all;
    transition: ease-in-out .3s all;
}
.product-name a:hover {
	color: #c70909;
	text-decoration:underline;
}
.product-description{
	display: -webkit-box;
	font-size: 14px;
	margin: 20px 0 0;
	font-weight:400;
	color: #333333;
	overflow: hidden;
	line-height: 14px;
	height: 28px;
	text-overflow: ellipsis;
	-webkit-line-clamp:2;
	-webkit-box-orient: vertical;
}

.price-tax{
	display: none;
}
.price {
	color: #c70909;
	font-size: 18px;
	font-weight:500;
	min-height:22px;
	margin:20px 0 0;
}
.price-old {
	color:#a4a4a4;
	font-size:14px;
	text-decoration: line-through;
	margin-right: 8px;
	font-weight:400;
}
.price-new {
	font-weight:500;
	color:#c70909;
}
.product-des{
	color: #777777;
	line-height: 24px;
	margin: 20px 0 0 0;
	font-size:14px;
}
.ratings .rating-box div[class^="rating"]{
	background-repeat: no-repeat;
	background-position: center center;
	font-size: 0;
	height: 11px;
}
.ratings .rating-box .rating0{
	background-image: url("image/rating0.png")
}
.ratings .rating-box .rating1{
	background-image: url("image/rating1.png")
}
.ratings .rating-box .rating2{
	background-image: url("image/rating2.png")
}
.ratings .rating-box .rating3{
	background-image: url("image/rating3.png")
}
.ratings .rating-box .rating4{
	background-image: url("image/rating4.png")
}
.ratings .rating-box .rating5{
	background-image: url("image/rating5.png")
}
.image > a{
	display: block;
	overflow: hidden;
	position: relative;
}
.image {
	position: relative;
	overflow:hidden;
	border-radius:10px 10px 0 0;
}
.img-r{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}
.product-layout:hover .img-r{
	opacity: 1;
}
.action-links,
.image img{
	-webkit-transition: all .7s ease 0s;
	-moz-transition: all .7s ease 0s;
	transition: all .7s ease 0s;
}
.item-inner {
	position:relative;
	display:inline-block;
	width:100%;
	padding:0 0 10px;
	border-radius:5px;
	background:#fff;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0);
}
.item-inner:hover {
	z-index:99;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.item-inner .image {
	padding-top:20px;
}
.item-inner .image .qv-button-container {
	position:absolute;
	left:0;
	right:0;
	top:50%;
	margin-top:-10px;
	opacity:0;
	text-align:center;
	z-index:2;
	-webkit-transition: ease .3s all;
    -moz-transition: ease .3s all;
    transition: ease .3s all;
}
.item-inner:hover .image .qv-button-container {
	opacity:1;
}
.item-inner .image .qv-button-container  button {
	width:40px;
	height:40px;
	line-height:40px;
	background:#c70909;
	border-radius:2px;
	color:#fff;
	border:0;
	font-size:0;
	padding:0;
	-webkit-transition: ease .3s all;
    -moz-transition: ease .3s all;
    transition: ease .3s all;
}
.item-inner .image .qv-button-container  button:hover {
	background:#999;
}
.item-inner .image .qv-button-container  button:before {
	font-family: 'plaza-icon';
    display: inline-block;
    font-size: 18px;
	content:'\e95c';
}
.item-inner .ratings {
	width:100%;
	margin: 0 auto;
	margin:8px 0 0;
}
.item-inner .actions {
    position: absolute;
    background: #fff;
	padding: 8px 15px 10px;
    opacity: 0;
    visibility: visible;
    top: 90%;
	left:0;
	right:0;
    z-index: 2;
    border-top: none;
    border-radius: 0 0 5px 5px;
	box-shadow: 0px 6px 7px 2px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
.item-inner:hover .actions {
	opacity: 1;
    visibility: visible;
    top: 100%;
}
.item-inner .actions .add-to-links {
    width:100%;
    text-align: center;
	background:#fff;
	display:inline-block;
	padding:3px 0 0;
}
.item-inner .add-to-links div {
    list-style: none;
	float:left;
	margin-right:12px;
}
.item-inner .add-to-links div:last-child {
	margin:0;
}
.item-inner .add-to-links button,
.item-inner .wishlist button {
    line-height: inherit;
    height: 40px;
	line-height:35px;
    width: auto;
    padding: 0;
    position: relative;
    text-align: center;
    font-weight: 400;
    display: inline-block;
    font-size: 0;
    color: #999999;
    cursor: pointer;
    border: 0;
    background: none;
    -webkit-transition: ease .5s all;
    -moz-transition: ease .5s all;
    transition: ease .5s all;
}
.item-inner .add-to-links button:before,
.item-inner .wishlist button:before {
    font-family: 'plaza-icon';
    display: inline-block;
    font-size: 18px;
	position:relative;
	top:3px;
}
.item-inner .add-to-links .cart button {
	padding:0 28px;
	height:40px;
	line-height:40px;
	width:auto;
	border-radius:3px;
	font-size:13px;
	font-weight:500;
	text-transform:uppercase;
	background:#c70909;
	color:#fff;
}
.item-inner .add-to-links .cart button:hover {
	background:#999999;
	color:#fff;
}
.item-inner .wishlist button:before {
	content: "\e977";
}
.item-inner .compare button:before {
	content: "\e9bd";
}
.item-inner .qv-button-container button:before {
	content: "\e9c1";
}
.item-inner .add-to-links button:hover {
	color:#c70909;
	background:none;
}
.label-product {
	position: absolute;
    top: 15px;
    right: 18px;
    width: auto;
	height: 21px;
	line-height:24px;
	padding: 0 10px 0 8px;
	font-size:10px;
	color:#fefefe;
	font-weight:500;
	background:#1560b2;
    display: inline-block;
	text-transform:uppercase;
	z-index:9;
}
.label-product:before {
	content:'';
	background:url('image/icon-new.png') no-repeat 0 0;
	width:11px;
	height:21px;
	position: absolute;
    left: -11px;
    top: 0;
}
.label-product:after {
	content:'';
	background:url('image/icon1-new.png') no-repeat 0 0;
	width:3px;
	height:21px;
	position: absolute;
    right: -3px;
    top: 0;
}
.label-product.label_sale {
	background: #c70909;
}
.label-product.label_sale:before {
	content:'';
	background:url('image/icon-sale.png') no-repeat 0 0;
	width:11px;
	height:21px;
	position: absolute;
    left: -11px;
    top: 0;
}
.label-product.label_sale:after {
	content:'';
	background:url('image/icon1-sale.png') no-repeat 0 0;
	width:3px;
	height:21px;
	position: absolute;
    right: -3px;
    top: 0;
}
.label-product + .label-product{
	display: none;
}
.btn-cart span{
	display: none;
}
.manufacture-product {
	margin:0;
	height: 22px;
}
.manufacture-product a:hover{
	color: #c70909;
}
.manufacture-product a {
	color:#999999;
	font-size:14px;
}
/* tabs product */
.tt-product { text-align:center; }
.tab-heading.nav-pills > li.active a:focus,
.tab-heading.nav-pills > li.active a:hover,
.tab-heading.nav-pills > li.active a,
.tab-heading.nav-pills > li a:focus,
.tab-heading.nav-pills > li a:hover{
	color: #c70909;
	background: none;
}
.tab-heading.nav-pills > li a {
	background: none;
	color: #222222;
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0 0 2px;
	cursor: pointer;
	position: relative;
	font-weight:500;
	letter-spacing:-0.025em;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}
.tab-heading.nav-pills > li a:after {
	content:'';
	width:100%;
	height:2px;
	position:absolute;
	left:0;
	bottom:0;
	background:#c70909;
	opacity:0;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}
.tab-heading.nav-pills > li.active a:after,
.tab-heading.nav-pills > li a:hover:after {
	opacity:1;
}
.tab-heading.nav-pills > li {
	float: none;
	display: inline-block;
	position: relative;
	margin-right:30px;
	z-index:1;
}
.tab-heading.nav-pills > li:last-child {
	margin:0;
}
.tab-heading.nav-pills > li:first-child a {
	padding-left:0;
	margin-left:0;
}
.tab-heading.nav-pills > li:last-child a {
	padding-right:0;
	margin-right:0;
}
.tab-heading {
	width:100%;
	text-align: center;
	padding: 0;
	display: inline-block;
    position: relative;
}
/* responsive */
@media(max-width: 1199px){
	.item-inner .product-name {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		width: 100%;
	}
	.item-inner .add-to-links .cart button { padding:0 15px; }
	.item-inner .add-to-links div { margin-right:10px; }
	.item-inner .add-to-links div.qv-button-container { display:none !important; }
}
@media (max-width: 991px){
	.price-old { font-size:13px; margin-right:5px; }
	.product-name { margin:5px 0 0; }
}
@media (max-width: 767px){
	.item-inner .product-name { margin:10px 0 0; }
}
@media(max-width: 560px){
	.tab-heading:before { display:none !important; }
	.tab-heading.nav-pills > li a { margin:0; }
}
@media(max-width: 480px){
	.tab-heading.nav-pills > li a { font-size:12px; }
	.tab-heading.nav-pills > li a:before { display:none; }
	.tab-heading.nav-pills > li { margin-right:15px; margin-bottom:10px; }
}