/*******************************************************
Product list Styles
********************************************************/
.product-container {
  text-align: center;
  margin-bottom: 30px;
}
.product-container .left-block {
  position: relative;
}
.product-container .right-block {
  position: relative;
}
.product-container .label {
  position: absolute;
  top: 20px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 6px;
  color: white;
  line-height: 10px;
  min-width: 40px;
  text-align: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.product-container .label-new {
  right: 20px;
  background: #77c66d;
}
.rtl .product-container .label-new {
  left: 20px;
  right: auto;
}
.product-container .label-sale {
  top: 45px;
  right: 20px;
  background-color: #f65b47;
}
.rtl .product-container .label-sale {
  left: 20px;
  right: auto;
}
.product-container .label-reduction {
  left: 20px;
  background-color: #f65b47;
}
.rtl .product-container .label-reduction {
  right: 20px;
  left: auto;
}
.product-container .label-reduction:before {
  color: #fe6658;
}
.product-container .content_price {
  margin: 0 0 5px;
}
.product-container .price {
  color: black;
  font-size: 15px;
  font-weight: 700;
}
.product-container .price-old, .product-container .old-price {
  color: #666666;
  text-decoration: line-through;
}
.product-container .name {
  height: 25px;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}
.product-container .name a {
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-decoration: none;
  line-height: 21px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
}
.product-container .name a:hover {
  color: #cfa15e;
}
.product-container .product-image-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  text-align: center;
}
.product-container .product-image-container .image-effect {
  transform-style: inherit;
  -moz-transform-style: inherit;
  -webkit-transform-style: inherit;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.product-container .product-image-container .image-no-effect {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.product-container .product-effect {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  left: -100%;
}
.rtl .product-container .product-effect {
  right: -100%;
  left: auto;
}
.product-container .box-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35px;
  width: 100%;
  background-color: #333;
}
.product-container .box-buttons .btn {
  padding: 0;
  border: none;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  float: left;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.rtl .product-container .box-buttons .btn {
  float: right;
}
.product-container .box-buttons i {
  line-height: 35px;
}
.product-container .box-buttons-left {
  width: 64%;
  float: left;
}
.rtl .product-container .box-buttons-left {
  float: right;
}
.product-container .box-buttons-left .btn {
  width: 100%;
  padding: 0 10px;
  line-height: 35px;
}
.product-container .box-buttons-right {
  width: 36%;
  float: left;
}
.rtl .product-container .box-buttons-right {
  float: right;
}
.product-container .box-buttons-right .btn {
  width: 50%;
  color: white;
  border-left: white;
  border-style: none none none solid;
  border-width: 0 0 0 1px;
}
.rtl .product-container .box-buttons-right .btn {
  border-right: white;
  border-left: inherit;
}
.rtl .product-container .box-buttons-right .btn {
  border-style: none solid none none;
}
.rtl .product-container .box-buttons-right .btn {
  border-width: 0 1px 0 0;
}
.product-container:hover .product-effect {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  left: 0;
}
.rtl .product-container:hover .product-effect {
  right: 0;
  left: auto;
}
.product-container:hover .box-buttons {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

/*******************************************************
Product list(Grid, list) Styles
********************************************************/
#tiva-grid .product-container {
  margin-bottom: 45px;
}

#tiva-list .product-container {
  text-align: left;
}
.rtl #tiva-list .product-container {
  text-align: right;
}
#tiva-list .product-container .product-image-container {
  margin-bottom: 0;
}
#tiva-list .product-des {
  margin-bottom: 20px;
}
