/*=====================
  3.3 Productbox CSS start
==========================*/
.product-inline {
  background-color: rgba(237, 239, 244, 0.4);
  border-radius: 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  position: relative; }
  .product-inline .product-inline-content {
    width: 60%;
    padding-right: 10px; }
    .product-inline .product-inline-content .price h4 {
      font-weight: 400;
      margin-top: 0;
      margin-bottom: -2px; }
    .product-inline .product-inline-content h4 {
      margin-bottom: 3px;
      color: #222222;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: 600;
      margin-top: -3px; }
    .product-inline .product-inline-content h5 {
      color: #777777;
      margin-bottom: 3px; }
  .product-inline img {
    width: 90px;
    height: 90px;
    border-radius: 3px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 12px; }
    [dir="rtl"] .product-inline img {
      margin-right: 0;
      margin-left: 12px; }

.price {
  margin-top: 2px; }
  .price h4 {
    margin-bottom: 0; }
    .price h4 del {
      color: #777777;
      margin-left: 6px; }
    .price h4 span {
      color: #FF4C3B;
      font-size: 14px;
      margin-left: 6px; }

.wishlist-btn {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff; }
  [dir="rtl"] .wishlist-btn {
    left: 10px;
    right: unset; }
  .wishlist-btn .icli {
    color: #777777; }
  .wishlist-btn .icbo {
    display: none; }
  .wishlist-btn.active .icli {
    display: none; }
  .wishlist-btn.active .icbo {
    display: block;
    color: #FF4C3B; }
  .wishlist-btn.active .effect:before {
    -webkit-animation: fireworkLine 0.5s linear 0.1s;
            animation: fireworkLine 0.5s linear 0.1s; }
  .wishlist-btn.active .effect:after {
    -webkit-animation: fireworkPoint 0.5s linear 0.1s;
            animation: fireworkPoint 0.5s linear 0.1s; }

.product-box .img-part {
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  position: relative;
  overflow: hidden; }
  .product-box .img-part label {
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    background-color: #FF4C3B;
    position: absolute;
    left: 8px;
    top: 10px;
    border-radius: 2px;
    text-transform: uppercase;
    padding: 3px 9px; }
    [class="dark"] .product-box .img-part label {
      color: #ffffff; }
    [dir="rtl"] .product-box .img-part label {
      left: unset;
      right: 8px; }

.product-box .product-content {
  margin-top: 8px; }
  [dir="rtl"] .product-box .product-content {
    text-align: right; }
  .product-box .product-content h4 {
    margin: 0;
    color: #222222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700; }
  .product-box .product-content .price h4 {
    font-weight: 400;
    margin-bottom: -1px; }

.rating-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .rating-section h6 {
    margin-left: 5px; }

[dir="rtl"] .slick-slider .ratings {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 0; }

.ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .ratings li .icbo {
    color: #FFBA49; }
    .ratings li .icbo.empty {
      color: #dddddd; }
  .ratings li + li {
    margin-left: 4px; }