/*@mixin carousel_next_prev_btn($left: 20px, $right: 20px) {
    .olw-nav{
        margin-top: 0;
    }
    .owl-prev{
        position: absolute;
        left: $left;
        font-size: 50px;
        color: #fff;
        top: calc(50% - 68px);
        
        &:hover{
            color: #65676b;
            background: transparent;
        }
    }

    .owl-next{
        position: absolute;
        right: $right;
        font-size: 50px;
        color: #fff;
        top: calc(50% - 68px);

        &:hover{
            color: #65676b;
            background: transparent;
        }
    }
}*/
#product .product_header {
  background: #121212;
  margin-bottom: 20px;
}

#product .product_header h2 {
  font-size: 30px;
  font-weight: 500;
  padding: 10px 0;
  color: #fff;
}

#product .product_filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #65676b;
}

#product .product_filter select {
  color: #65676b;
  margin-right: 10px;
  border: none;
  outline: none;
  text-transform: capitalize;
}

@media screen and (max-width: 600px) {
  #product .product_filter {
    display: block;
    text-align: center;
  }

  #product .product_filter .filter {
    padding-bottom: 15px;
  }
}

#product .product_content .img_figure {
  position: relative;
  overflow: hidden;
}

#product .product_content .img_figure .img {
  position: relative;
  overflow: hidden;
}

#product .product_content .img_figure img {
  margin-bottom: 5px;
  -webkit-transform: scale(1);
  transform: scale(1);
  margin-bottom: -4px;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#product .product_content .img_figure .badge-custom {
  position: absolute;
  left: 0;
  top: 20px;
  background: #ffff;
  border-radius: 0 50em 50em 0;
  padding: 3px;
  font-size: 11px;
  font-weight: 600;
  color: #e62e04;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#product .product_content .img_figure .badge-custom .box {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 11px;
  background: #e62e04;
  color: #ffffff;
  text-align: center;
  margin-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#product .product_content .img_figure .cartBtn {
  position: absolute;
  top: 10px;
  right: -45px;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

#product .product_content .img_figure .cartBtn li {
  background: #ffffff;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

#product .product_content .img_figure .cartBtn li:hover {
  background: #e62e04;
  color: #ffffff;
}

#product .product_content .img_figure figcaption {
  padding: 7px 5px;
}

#product .product_content .img_figure figcaption .product_price {
  color: #e62e04 !important;
  font-weight: 600;
}

#product .product_content .img_figure figcaption del {
  margin-right: 7px;
}

#product .product_content .img_figure figcaption del.price {
  color: #000000 !important;
}

#product .product_content .img_figure figcaption .review_btn {
  background: transparent;
  color: #bfbcbc;
  border: none;
  font-size: 13px;
  padding: 0;
}

#product .product_content .img_figure figcaption .popularCollection_name {
  text-transform: capitalize;
}

#product .product_content .img_figure figcaption p,
#product .product_content .img_figure figcaption a {
  color: #111111;
  font-size: 15px;
  font-weight: 600;
}

#product .product_content .img_figure:hover {
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

#product .product_content .img_figure:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#product .product_content .img_figure:hover .cartBtn {
  -webkit-transform: translateX(-150%);
  transform: translateX(-150%);
}

#product .product_content p,
#product .product_content a {
  color: #65676b;
  font-size: 15px;
}

/*# sourceMappingURL=product.css.map */