/* Lib Customize */

.special-advanced .section-title h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
}
.special-advanced .section-title h3 i{
	font-size: 20px;
    margin-right: 12px;
}
/* Set color */

.special-advanced .color-blue{
    background: #007bff;
}

.special-advanced .color-green{
    background: #28a745;
}

.special-advanced .color-teal{
    background: #20c997;
}

.special-advanced .color-cyan{
    background: #17a2b8;
}

.special-advanced .color-purple{
	background: #6f50a7;
}

.special-advanced .color-red{
    background: #e40046;
}
.special-advanced .color-orange{
    background: #e44311;
}
.special-advanced .color-pink{
    background: #e83e8c;
}
.special-advanced .color-yellow{
    background: #f7bf18;
}

.special-advanced .product-card {
    overflow: hidden;
    transition: all 0.4s ease-out;
}
.special-advanced .product-card:hover {box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.1); }
.special-advanced .product-card .product-image{ position: relative; }
.special-advanced .product-card .product-image a.image{ display: block; width: 80%;}
.special-advanced .product-card .product-image img{
    width: 100%;
    height: auto;
    padding-top: 10px;
}
.special-advanced .product-card .product-discount-label{
    color: #fff;
    background: #ff3c20;
    font-size: 13px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 5px;
    position: absolute;
    top: 12px;
    left: 12px;
}
.special-advanced .product-card .product-sale-label{
    color: #fff;
    background: #78a206;
    font-size: 13px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 5px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.special-advanced .product-card .product-links{
    width: 145px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 65%;
    left: 50%;
    transition: all 0.4s ease 0s;
    text-align: center;
    cursor: pointer;
}
.special-advanced .product-card:hover .product-links{
    opacity: 1;
    top: 50%;
}
.special-advanced .product-card .product-links li{
    display: inline-block;
    margin: 0 2px;
}
.special-advanced .product-card .product-links li a{
    color: #2c2c2c;
    background: #fff;
    font-size: 16px;
    line-height: 42px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: block;
    position: relative;
    transition: all 0.4s ease-out 0s;
}
.special-advanced .product-card .product-links li a:hover{
    color: #ccc;
    box-shadow: 1px 1px 30px 0 rgba(0, 0, 0, 0.2);
}
.special-advanced .product-card .product-links li a:before,
.special-advanced .product-card .product-links li a:after{
    content: attr(data-tip);
    color: #fff;
    background-color: #555;
    font-size: 12px;
    line-height: 18px;
    padding: 5px 10px;
    white-space: nowrap;
    display: none;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -40px;
    transition: all 0.3s ease 0s;
}
.special-advanced .product-card .product-links li a:after{
    content: '';
    height: 10px;
    width: 10px;
    padding: 0;
    transform: translateX(-50%) rotate(45deg);
    top: -18px;
    z-index: -1;
}
.special-advanced .product-card .product-links li a:hover:before,
.special-advanced .product-card .product-links li a:hover:after{
    display: block;
}
.special-advanced .product-card .product-content{
    padding: 12px 12px 15px;
    position: relative;
}
.special-advanced .product-card .group-cate-rating {
  border-bottom: 1px solid #ebebeb;
  display: flex;
}
.special-advanced .product-card .cate a{
	color: #a4a4a4;
    font-size: 12px;
    margin-top: 9px;
}
.special-advanced .product-card .cate a:hover{
	color: #6f50a7;
}
.special-advanced .product-card .rating{
	padding-left: 40px;
}
.special-advanced .product-card .title{
    font-size: 15px;
    height: 35px;
    overflow: hidden;
}

.special-advanced .product-card .price{
    color: #313136;
    font-size: 15px;
    font-weight: 600;
    display: block;
    transition: all 0.4s ease-in-out;
}
.special-advanced .product-card .price-old{
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
    padding-left: 5px;
    font-weight: 500;
}
.special-advanced .product-card .price-new{
    color: #e80f0f;;
}
.special-advanced .product-card:hover .image{ opacity: 0.5; }
.special-advanced .product-card .add-to-cart{
    background-color: #f5d730;
    line-height: 40px;
    width: 140px;
    height: 40px;
    border-radius: 50px;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    top: -50px;
    left: 50%;
    transition: all .4s ease-out;
    border:0;
}
.special-advanced .product-card .add-to-cart span {
  color: #202020;
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 21px;
  overflow: hidden;
  display: block;
  padding-left: 30px;
}
.special-advanced .product-card .add-to-cart:hover{ 
	background-color: #f5d730; 
	
}
.special-advanced .product-card .add-to-cart span:hover{
	color: #6f50a7;
}
.special-advanced .product-card:hover .add-to-cart{
    opacity: 1;
    bottom: 8px;
}
.special-advanced .product-card .add-to-cart i {
  width: 41px;
  height: 41px;
  background-color: #ffffff;
  border-radius: 50px;
  display: block;
  float: left;
  font-size: 20px;
  text-align: center;
  line-height: 41px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
}

.special-advanced .owl-product .owl-item{
	padding: 5px;
}

.special-advanced .owl-product .owl-nav .owl-prev {
	
	display: block;
	left: 5px;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	z-index: 8;
}
.special-advanced .owl-product .owl-nav .owl-prev span{
  font-size: 60px;
  color: rgba(36,36,36,.15);;
}
.special-advanced .owl-product .owl-nav .owl-next {
	color: rgba(36,36,36,.15);
	display: block;
	right: -10px;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	z-index: 8;
}
.special-advanced .owl-product .owl-nav .owl-next span{
  font-size: 60px;
  color: rgba(36,36,36,.15);;
}
.special-advanced .owl-product .owl-nav .owl-prev span:hover,
.special-advanced .owl-product .owl-nav .owl-next span:hover
{
	color: #888;
}

.special-advanced .owl-product:hover .owl-nav .owl-next,
.special-advanced .owl-product:hover .owl-nav .owl-prev
{
	opacity: 1;
}
.special-advanced .rating .fa-stack {
	font-size: 6px;
}
.special-advanced .rating .fa-star-o {
	color: #999;
	font-size: 12px;
}
.special-advanced .rating .fa-star {
	color: #FC0;
	font-size: 12px;
}
.special-advanced .rating .fa-star + .fa-star-o {
	color: #FC0;
}
.special-advanced .banner{
	margin-top: 5px;
	position: absolute;
	z-index: 2;
}
.special-advanced .banner img{
	width: 200px;
	height: 410px;
}
.special-advanced .banner:hover{
	opacity: 0.6;
}


@media (min-width: 768px) and (max-width: 1080px) {

  .special-advanced .owl-product{
    margin-left: 70px;
  }

}

@media (min-width: 760px) and (max-width: 720px) {
    .special-advanced .owl-product{
         margin-left: 0px;
     }

}

@media (min-width: 320px) and (max-width: 480px) {

	.special-advanced .rating{
		display: none;
	}
}