/****** Product ******/
.product-box {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.product-box:hover {
  -webkit-box-shadow: 0 3px 30px rgba(0,0,0,0.5);
  box-shadow: 0 3px 30px rgba(0,0,0,0.5);
  z-index: 5;
}
.product {
  -webkit-box-shadow: 0 3px 2px rgba(0,0,0,0.15) , 0 0 1px rgba(0,0,0,0.15);
  box-shadow: 0 3px 2px rgba(0,0,0,0.15) , 0 0 1px rgba(0,0,0,0.15);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 15px;
  background: #fff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.product-img-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
  margin: 20px;
  margin-bottom: 10px;
}
.product-img-banner,
.product-img-alt-banner,
.product-banner-alt-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.product-img-primary,
.product-img-alt,
.product-img {
  width: 100%;
  display: block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.product-img-alt {
  position: absolute;
  right: 0;
  top: 0;
}
.product-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 4;
  text-indent: 99999;
}
.product-img-alt {
  -webkit-transform: translate3d(101%, 0, 0);
  -moz-transform: translate3d(101%, 0, 0);
  -o-transform: translate3d(101%, 0, 0);
  -ms-transform: translate3d(101%, 0, 0);
  transform: translate3d(101%, 0, 0);
  z-index: 2;
}
.product-title {
  -webkit-box-shadow: 0 1px 8px rgba(0,0,0,0.2);
  box-shadow: 0 1px 8px rgba(0,0,0,0.2);
  display: table;
  z-index: 2;
  margin: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  background: #fff;
  color: #000;
  padding: 7px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1px;
}
.product-icon-quick-view {
  position: absolute;
  z-index: 5;
  display: block;
  text-align: center;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: #486d97;
  color: #fff;
  bottom: 20px;
  right: 20px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transform: translate3d(0, -10px, 0) scale(0.8);
  -moz-transform: translate3d(0, -10px, 0) scale(0.8);
  -o-transform: translate3d(0, -10px, 0) scale(0.8);
  -ms-transform: translate3d(0, -10px, 0) scale(0.8);
  transform: translate3d(0, -10px, 0) scale(0.8);
}
.product-icon-quick-view:hover {
  background: #44688f;
  color: #fff;
  text-decoration: none;
  -webkit-transform: translate3d(0, 0, 0) scale(1.2);
  -moz-transform: translate3d(0, 0, 0) scale(1.2);
  -o-transform: translate3d(0, 0, 0) scale(1.2);
  -ms-transform: translate3d(0, 0, 0) scale(1.2);
  transform: translate3d(0, 0, 0) scale(1.2);
}
.product-icon-quick-view:focus {
  color: #fff;
}
.product-left:after {
  content: '';
  display: table;
  clear: both;
}
.product-left .product-img-wrap {
  float: left;
  width: 25%;
  margin-right: 20px;
}
.product-left .product-caption {
  float: left;
  width: 50%;
}
.product-left .product-caption-feature-list {
  position: static;
  font-size: 14px;
}
.product-left .product-caption-title {
  font-size: 18px;
  height: auto;
}
.product-left .product-caption-price > span {
  font-size: 25px;
  margin-bottom: 10px;
}
.product-left .product-caption-rating {
  font-size: 12px;
}
@media (max-width:992px) {
  .product-left .product-img-wrap {
    float: none;
    width: 100%;
    margin: 0;
  }
  .product-left .product-caption {
    float: none;
    width: 100%;
  }
  .product-left .product-actions {
    display: none;
  }
}
.product-actions {
  position: absolute;
  top: 42px;
  right: 15px;
  z-index: 5;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-actions > li {
  margin-bottom: 10px;
}
.product-info-block-rating,
.product-caption-rating {
  list-style: none;
  margin-bottom: 3px;
  padding: 0;
  overflow: hidden;
  font-size: 9px;
}
.product-info-block-rating > li,
.product-caption-rating > li {
  float: left;
  margin-right: 3px;
  color: #d9d9d9;
}
.product-info-block-rating > li.rated,
.product-caption-rating > li.rated {
  color: #ffc120;
}
.product-info-block-sm .product-info-block-title {
  font-size: 15px;
}
.product-info-block-sm .product-info-block-price {
  font-size: 17px;
}
.product-plus {
  position: absolute;
  bottom: 80px;
  left: -80px;
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  width: 40px;
  background: #486d97;
  z-index: 5;
  color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transform: translate(0, -50px);
  -moz-transform: translate(0, -50px);
  -o-transform: translate(0, -50px);
  -ms-transform: translate(0, -50px);
  transform: translate(0, -50px);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.25);
  box-shadow: 0 0 2px rgba(0,0,0,0.25);
}
.product-plus:hover {
  color: #fff;
  background: #3d5d80;
  text-decoration: none;
}
.product-quick-view {
  display: inline-block;
  background: #262626;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 5;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  padding: 2px 5px;
  -webkit-transform: translate3d(105%, 0, 0);
  -moz-transform: translate3d(105%, 0, 0);
  -o-transform: translate3d(105%, 0, 0);
  -ms-transform: translate3d(105%, 0, 0);
  transform: translate3d(105%, 0, 0);
}
.product-quick-view:hover {
  text-decoration: none;
  background: #486d97;
  color: #fff;
}
.product:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3) , 0 0 1px rgba(0,0,0,0.3) , 0 0 15px rgba(158,182,209,0.2);
  box-shadow: 0 3px 6px rgba(0,0,0,0.3) , 0 0 1px rgba(0,0,0,0.3) , 0 0 15px rgba(158,182,209,0.2);
}
.product:hover .product-img-alt,
.product:hover .product-more-info-link,
.product:hover .product-hover-block,
.product:hover .product-to-cart,
.product:hover .product-plus,
.product:hover .product-quick-view {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.product:hover .product-img-primary {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.product:hover .product-title {
  bottom: -50px;
}
.product:hover .product-to-cart,
.product:hover .product-plus {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.product:hover .product-img-wrap-single .product-img-primary {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.product-info-active .product-info-block-hide {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.product-info-active .product-info-block {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-box-shadow: -1px 0 3px rgba(0,0,0,0.2);
  box-shadow: -1px 0 3px rgba(0,0,0,0.2);
}
.product-info-active .product-info-block-wrap-inner {
  -webkit-animation-name: infoBlock;
  -moz-animation-name: infoBlock;
  -o-animation-name: infoBlock;
  -ms-animation-name: infoBlock;
  animation-name: infoBlock;
  -webkit-animation-duration: 0.7s;
  -moz-animation-duration: 0.7s;
  -o-animation-duration: 0.7s;
  -ms-animation-duration: 0.7s;
  animation-duration: 0.7s;
}
.product-info-active .product-img-alt {
  -webkit-transform: translate3d(-30%, 0, 0) scale(1.1);
  -moz-transform: translate3d(-30%, 0, 0) scale(1.1);
  -o-transform: translate3d(-30%, 0, 0) scale(1.1);
  -ms-transform: translate3d(-30%, 0, 0) scale(1.1);
  transform: translate3d(-30%, 0, 0) scale(1.1);
}
.product-info-active .product-hover-block {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.product-info-active .product-plus {
  left: -20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.product-info-active .product-quick-view {
  right: 70%;
}
.product-info-active .product-quick-view > span {
  display: none;
}
.product-info-active .product-img-wrap-single .product-img-primary {
  -webkit-transform: translate3d(-30%, 0, 0) scale(1.1);
  -moz-transform: translate3d(-30%, 0, 0) scale(1.1);
  -o-transform: translate3d(-30%, 0, 0) scale(1.1);
  -ms-transform: translate3d(-30%, 0, 0) scale(1.1);
  transform: translate3d(-30%, 0, 0) scale(1.1);
}
.product-img-banner,
.product-img-alt-banner {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.product-banner-contents {
  padding: 0 50px;
  position: absolute;
  top: 350px;
  left: 0;
  text-align: center;
  z-index: 3;
  color: #fff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
}
.product-banner-title {
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 45px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.85);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.product-banner-caption {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  -ms-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translate3d(0, 30px, 0);
  -moz-transform: translate3d(0, 30px, 0);
  -o-transform: translate3d(0, 30px, 0);
  -ms-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
  font-weight: 300;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.5);
}
.product-banner-desc {
  font-size: 18px;
}
.product-banner-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: #000;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
}
.product-banner-btn {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #fff;
  color: #fff;
  margin-top: 5px;
  text-transform: uppercase;
  font-size: 14px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.product-banner-btn:hover {
  -webkit-border-radius: 7px;
  border-radius: 7px;
  background: #486d97;
  border-color: #486d97;
  color: #fff;
  text-decoration: none;
}
.product-banner-logo {
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  width: 100%;
  z-index: 3;
  text-align: center;
}
.product-banner-logo > img {
  width: 25px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.product-banner-img-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0) scale(1.1);
  -moz-transform: translate3d(0, 0, 0) scale(1.1);
  -o-transform: translate3d(0, 0, 0) scale(1.1);
  -ms-transform: translate3d(0, 0, 0) scale(1.1);
  transform: translate3d(0, 0, 0) scale(1.1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: grayscale(50%);
}
.product-banner-alt-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: #000;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.product-banner-alt-title {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 3px;
  left: 50%;
  top: 50%;
  display: table;
  padding: 15px 18px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.4);
  text-align: center;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.product-banner-alt-btn {
  position: absolute;
  z-index: 3;
  color: #fff;
  padding: 15px 25px;
  background: rgba(72,109,151,0.85);
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 20px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.product-hover .product-banner-mask {
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  -webkit-box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
}
.product-hover .product-banner-contents {
  top: 200px;
}
.product-hover .product-banner-caption {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.product-hover .product-img-banner {
  -webkit-transition: 10s;
  -moz-transition: 10s;
  -o-transition: 10s;
  -ms-transition: 10s;
  transition: 10s;
  -webkit-transform: scale(1.5) translate3d(0, 0, 0);
  -moz-transform: scale(1.5) translate3d(0, 0, 0);
  -o-transform: scale(1.5) translate3d(0, 0, 0);
  -ms-transform: scale(1.5) translate3d(0, 0, 0);
  transform: scale(1.5) translate3d(0, 0, 0);
}
.product-hover .product-banner-logo > img {
  -webkit-transform: scale(1.6) translate3d(0, 80px, 0);
  -moz-transform: scale(1.6) translate3d(0, 80px, 0);
  -o-transform: scale(1.6) translate3d(0, 80px, 0);
  -ms-transform: scale(1.6) translate3d(0, 80px, 0);
  transform: scale(1.6) translate3d(0, 80px, 0);
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.product-hover .product-banner-title {
  background: none;
}
.product-hover .product-banner-img-wrap {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-filter: grayscale(0);
}
.product-hover .product-banner-alt-mask {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.product-hover .product-banner-alt-title {
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.product-hover .product-banner-alt-btn {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  margin-top: 0;
}
.product-slide {
  margin: 5px;
}
.product-caption {
  padding: 10px 15px;
  position: relative;
}
.product-caption-feature-list {
  font-size: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 10px;
  bottom: 11px;
}
.product-caption-feature-list > li {
  margin-left: 5px;
  padding-left: 5px;
  border-left: 1px solid #d9d9d9;
  display: inline-block;
  color: #8c8c8c;
}
.product-caption-feature-list > li:first-child {
  border: none;
  margin: 0;
  padding: 0;
}
.product-caption-title {
  font-weight: 400;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 1px;
/*  height: 40px;*/
  overflow: hidden;
  line-height: 1.3em;
  color: #0d0d0d;
}
.product-caption-title > a {
  color: #000;
}
.product-caption-title-sm {
  font-size: 11px;
}
.product-caption-price {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 12px;
}
.product-caption-price > span {
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
}
.product-caption-price > span.product-caption-price-new {
  color: #000;
  font-weight: 700;
}
.product-caption-price > span.product-caption-price-old {
  margin-right: 7px;
  color: #727272;
  text-decoration: line-through;
}
.product-labels {
  position: absolute;
  top: 10px;
  left: -3px;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  text-transform: uppercase;
  color: #fff;
}
.product-labels > li {
  background: #486d97;
  color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.4);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
  padding: 3px 7px;
  line-height: 1em;
  margin-bottom: 5px;
  display: table;
}
.product-sm-left {
  padding: 10px;
}
.product-sm-left:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.product-sm-left .product-img-wrap {
  float: left;
  width: 40%;
  padding: 7px;
  margin: 0;
}
.product-sm-left .product-caption {
  float: left;
  width: 60%;
  padding: 0 15px;
}
.product-sm-left .product-caption-feature-list {
  margin-top: 5px;
  display: relative;
  right: auto;
  bottom: auto;
}
.product-sm-left .product-caption-title {
/*  height: 55px;*/
  font-size: 14px;
}
.product-sm-left .product-caption-price {
  margin-top: 6px;
}
.product-sm-left .product-caption-title {
  font-size: 13px;
/*  height: 35px;*/
}
.product-sm-left .product-caption-price > span {
  font-size: 15px;
}
.product-sm {
  padding: 10px;
}
.product-sm .product-caption {
  margin-top: 7px;
  padding: 0 5px;
}
.product-sm .product-caption-title {
  line-height: 1.25em;
  font-size: 13px;
/*  height: 32px;*/
}
.product-sm .product-caption-price {
  margin-top: 5px;
}
.product-sm .product-caption-price > span {
  font-size: 14px;
}
.product-sm .product-img-wrap {
  padding: 7px;
  margin: 0;
}
.product-tabs .tab-content {
  background: #fff;
  padding: 20px 25px;
  border: 1px solid #ddd;
  border-top: none;
}
.product-tabs .nav-tab-icon {
  margin-right: 3px;
}
.product-tabs .nav > li > a {
  color: #595959;
  font-weight: 500;
  margin-right: 5px;
  font-size: #5b5b5b;
}
.product-tabs .nav > li.active > a {
  -webkit-box-shadow: 0 -3px 5px rgba(0,0,0,0.08);
  box-shadow: 0 -3px 5px rgba(0,0,0,0.08);
}
.product-tab-rating-title {
  margin-bottom: 3px;
}
.product-overview-text {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 30px;
}
@media (max-width:992px) {
  .product-overview-text {
    position: static;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0;
    padding: 15px;
  }
}
.product-overview-section {
  padding: 20px 0;
}
.product-overview-title {
  font-size: 25px;
  line-height: 1.4em;
}
.product-overview-desc {
  font-size: 17px;
  line-height: 1.6em;
  color: #838383;
}
.product-overview-img {
  width: 100%;
  padding: 0 30px;
}
.product-page-product-wrap {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.product-page-product-wrap:before {
  content: '';
  z-index: -1;
  position: absolute;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  max-width: 300px;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  -webkit-box-shadow: 0 15px 10px rgba(0,0,0,0.7);
  box-shadow: 0 15px 10px rgba(0,0,0,0.7);
}
.product-page-product-wrap > img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
}
.product-page-product-rating {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-page-product-rating > li {
  display: inline-block;
  margin-right: 5px;
  font-size: 17px;
  color: #7a7a7a;
}
.product-page-product-rating > li.rated {
  color: #ffc120;
}
.product-page-product-rating-sign {
  font-size: 12px;
  margin-bottom: 5px;
}
.product-page-product-rating-sign a {
  color: #7a7a7a;
}
.product-page-product-rating-sign a:hover {
  text-decoration: none;
  color: #595959;
}
.product-page-product-rating.product-rating-big > li {
  font-size: 38px;
}
.product-page-product-rating.product-rating-big > li.count {
  margin-left: 7px;
  font-weight: 700;
  color: #486d97;
}
.product-page-desc,
.product-page-desc-lg {
  font-size: 16px;
  color: #727272;
}
.product-page-desc-lg {
  font-size: 20px;
  line-height: 1.6em;
  margin-bottom: 20px;
}
.product-page-features-table {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 500;
}
.product-page-features-table-specs,
.product-page-features-table-details {
  width: 25%;
}
.product-page-price {
  font-size: 40px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 1px;
}
.product-page-price-list {
  font-size: 25px;
  font-weight: 400;
  line-height: 1em;
  text-decoration: line-through;
  color: #838383;
  margin-bottom: 5px;
}
.product-page-price-sign {
  font-size: 13px;
  color: #a6a6a6;
  margin-bottom: 1px;
}
.product-page-side-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #d9d9d9;
}
.product-page-side-title {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 7px;
}
.product-page-side-text {
  font-size: 11px;
  color: #939393;
  margin-bottom: 5px;
}
.product-page-share-item {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: 14px;
}
.product-page-share-item > li {
  float: left;
  margin-right: 5px;
}
.product-page-share-item > li .fa {
  display: block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  color: #fff;
}
.product-page-share-item > li .fa.fa-facebook {
  background: #46629e;
}
.product-page-share-item > li .fa.fa-twitter {
  background: #55acee;
}
.product-page-share-item > li .fa.fa-pinterest {
  background: #cd2129;
}
.product-page-share-item > li .fa.fa-instagram {
  background: #457399;
}
.product-page-share-item > li .fa.fa-google-plus {
  background: #dd4b39;
}
.product-page-share-item > li .fa:hover {
  text-decoration: none;
}
.product-page-area {
  background: #fff;
  padding: 30px 0;
}
.product-rate-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-rate-list > li {
  height: 26px;
  overview: hidden;
  margin-bottom: 7px;
}
.product-rate-list-item {
  margin: 0;
  font-size: 13px;
  height: 26px;
  line-height: 26px;
  float: left;
  width: 25%;
}
.product-rate-list-bar {
  width: 65%;
  float: left;
  background: #d9d9d9;
  height: 20px;
  margin-top: 3px;
}
.product-rate-list-bar > div {
  background: #ffc120;
  height: 20px;
}
.product-rate-list-count {
  float: left;
  width: 10%;
  text-alighn: right;
  padding-left: 7px;
  height: 26px;
  line-height: 26px;
  margin: 0;
  font-size: 11px;
  color: #7a7a7a;
}
.product-review {
  margin-bottom: 15px;
  padding-bottom: 15px;
  overflow: hidden;
  border-bottom: 1px dashed #d9d9d9;
}
.product-review-author {
  float: left;
  margin-right: 20px;
}
.product-review-author-img {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.product-review-content,
.product-review-content-full {
  display: table;
  width: 70%;
  float: left;
  border-right: 1px dashed #d9d9d9;
  padding-right: 15px;
}
.product-review-content-full {
  padding-right: 0;
  border-right: none;
  width: 85%;
}
.product-review-title {
  margin-bottom: 5px;
  font-size: 18px;
}
.product-review-meta {
  font-style: italic;
  color: #838383;
  margin-bottom: 3px;
  margin-top: 2px;
  font-size: 13px;
}
.product-review-body {
  font-size: 14px;
}
.product-review-side {
  float: left;
  width: 15%;
  margin-left: 15px;
}
.product-review-side-sign {
  margin-bottom: 3px;
  font-size: 14px;
  color: #727272;
}
.product-review-rate {
  display: inline-block;
  margin-right: 5px;
  padding: 5px 10px;
  background: #737373;
  color: #fff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.product-review-rate:hover {
  background: #486d97;
  color: #fff;
  text-decoration: none;
}
.product-review-rate .fa {
  margin-right: 3px;
}
.product-review-actions {
  margin-bottom: 0;
}
.product-review-actions > li > a {
  font-size: 12px;
  color: #8b8b8b;
}
.product-review-actions > li > a:hover {
  color: #595959;
  text-decoration: none;
}
.product-accessory-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
.product-accessory {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.product-accessory-img {
  width: 100%;
}
.product-accessory-title {
  font-size: 15px;
  margin-top: 4px;
  line-height: 1.4em;
}
.product-accessory-title > a {
  color: #595959;
}
.product-accessory-price {
  margin-bottom: 7px;
  font-size: 27px;
  font-weight: 500;
}
.product-accessory-included-list {
  padding-left: 17px;
  margin-top: 15px;
  font-size: 16px;
}
.product-accessory-included-list > li {
  margin-bottom: 7px;
}
.product-page-qa {
  margin-bottom: 15px;
  border-bottom: 1px dashed #e6e6e6;
}
.product-page-qa-form {
  margin: 15px 0;
}
.product-page-qa-question {
  font-weight: 500;
}
.product-page-qa-question,
.product-page-qa-answer {
  min-height: 35px;
  position: relative;
  padding-left: 35px;
  font-size: 17px;
  margin-bottom: 15px;
}
.product-page-qa-question:before,
.product-page-qa-answer:before {
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  content: 'Q:';
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1em;
  font-size: 25px;
  font-weight: 700;
  color: #486d97;
}
.product-page-qa-answer {
  margin-left: 30px;
  font-size: 16px;
}
.product-page-qa-answer:before {
  content: 'A:';
}
.product-page-qa-text {
  margin-bottom: 3px;
}
.product-page-qa-meta {
  font-size: 12px;
  font-style: italic;
  color: #838383;
  margin-bottom: 0;
}
.product-page-option-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.product-page-option-list > li {
  margin-bottom: 15px;
}
.product-page-option-title {
  width: 45px;
  font-size: 16px;
  margin-bottom: 0;
  float: left;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
}
.product-page-option-select {
  font-size: 14px;
  height: 40px;
  padding: 0 10px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #b3b3b3;
  float: left;
}
.product-page-option-select:focus {
  outline: none;
}
.product-page-actions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.product-page-actions-list > li {
  float: left;
  margin-right: 10px;
}
.product-page-qty-item {
  border: 1px solid #ccc;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  overflow: hidden;
}
.product-page-qty {
  background: #fff;
  height: 39px;
  width: 39px;
  line-height: 39px;
  float: left;
  display: block;
  text-align: center;
  padding: 0;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.product-page-qty:focus {
  outline: none;
}
.product-page-qty-input {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  width: 50px;
}
.product-list {
  list-style: none;
  padding: 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  overflow: hidden;
}
.product-list > li {
  border-bottom: 1px solid #e6e6e6;
}
.product-list > li:last-child {
  border-bottom: none;
}
.product-list .product {
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.product-list .product-left .product-img-wrap {
  width: 30%;
}
.product-list .product-left .product-caption {
  width: 70%;
}
.product-review-thumb {
  padding: 15px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  background: #fff;
}
.product-review-thumb-header {
  overflow: hidden;
  margin-bottom: 10px;
}
.product-review-thumb-reviewer-img {
  width: 20% !important;
  float: left;
  margin-right: 5%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.product-review-thumb-reviewer-name {
  font-size: 13px;
  margin-bottom: 0;
}
.product-review-thumb-header-side {
  float: left;
  width: 75%;
  display: table;
  padding-top: 2px;
}
.product-review-thumb-rating {
  list-style: none;
  margin-bottom: 4px;
  padding: 0;
  overflow: hidden;
}
.product-review-thumb-rating > li {
  line-height: 1em;
  color: #808080;
  float: left;
  margin-right: 2px;
}
.product-review-thumb-rating > li.rated {
  color: #ffc120;
}
.product-review-thumb-body {
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.3em;
  font-style: italic;
  margin-bottom: 2px;
  height: 60px;
  overflow: hidden;
}
.product-review-thumb-link {
  margin-left: 10px;
  font-size: 13px;
}
.product-review-thumb-product {
  overflow: hidden;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.product-review-thumb-product-img {
  float: left;
  width: 20% !important;
  margin-right: 5%;
}
.product-review-thumb-product-title {
  height: 55px;
  overflow: hidden;
  float: left;
  width: 75%;
  font-weight: 400;
  line-height: 1.4em;
}
.product-review-thumb-product-title > a {
  color: #595959;
}
.product-review-thumb-product-title > a:hover {
  color: #486d97;
  text-decoration: none;
}
@-moz-keyframes infoBlock {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }

  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(-7px, 0, 0);
    -moz-transform: translate3d(-7px, 0, 0);
    -o-transform: translate3d(-7px, 0, 0);
    -ms-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes infoBlock {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }

  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(-7px, 0, 0);
    -moz-transform: translate3d(-7px, 0, 0);
    -o-transform: translate3d(-7px, 0, 0);
    -ms-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes infoBlock {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }

  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(-7px, 0, 0);
    -moz-transform: translate3d(-7px, 0, 0);
    -o-transform: translate3d(-7px, 0, 0);
    -ms-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-ms-keyframes infoBlock {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }

  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(-7px, 0, 0);
    -moz-transform: translate3d(-7px, 0, 0);
    -o-transform: translate3d(-7px, 0, 0);
    -ms-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes infoBlock {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -o-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }

  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(-7px, 0, 0);
    -moz-transform: translate3d(-7px, 0, 0);
    -o-transform: translate3d(-7px, 0, 0);
    -ms-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/****** End of Product ******/

.panel-default {
     border-color:#fff;
}


.panel-default>.panel-heading {
   
     background-color: #fff; 
    
    
    
/* **********   detiles********/
.product-page-area {
    background: #fff;
    padding: 30px 0;
    }