* {
  padding: 0;
  margin: 0;
}

img {
  border: none;
  outline: none;
  /*max-width: 100%;*/
}

a {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

/* Product Heading */
.product .heading {
  margin-bottom: 30px;
  display: block;
}

.heading.inc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 25px;
}

/* ==============================================================
     # Trend Products
=================================================================== */

.trend-product-area .trend-items .equal-height {
  margin-bottom: 80px;
}

.trend-product-area .trend-items .item {
  padding: 5px;
  background: #ffffff;
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

.trend-product-area .trend-items .item .top-info {
  padding: 25px;
}

.trend-product-area .trend-items .item .bottom-info {
  padding: 25px;
  border-top: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trend-product-area .trend-items .item .bottom-info .price {
  float: right;
}

.trend-product-area .trend-items .item .bottom-info .icon {
  float: left;
}

.trend-product-area .trend-items .item .bottom-info h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #666666;
}

.trend-product-area .trend-items .item .bottom-info a {
  display: inline-block;
  color: #0078ff;
  border: 2px solid #0078ff;
  padding: 5px 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.trend-product-area .trend-items .item .top-info h4 a {
  font-weight: 600;
  line-height: 1.4;
}

.trend-product-area .trend-items .item .top-info .author {
  margin-bottom: 15px;
  display: block;
}

.trend-product-area .trend-items .item .top-info .author a {
  color: #0078ff;
  font-weight: 500;
}

.trend-product-area .trend-items .item .top-info .item-type {
  margin-bottom: -5px;
  display: flex;
  justify-content: space-between;
}

.trend-product-area .trend-items .item .top-info .item-type a,
.trend-product-area .trend-items .item .top-info .item-type p {
  text-transform: capitalize;
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.5px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.trend-product-area .trend-items .item .top-info .item-type a > i,
.trend-product-area .trend-items .item .top-info .item-type p > i {
  margin-right: 3px;
  color: #0078ff;
}

.trend-product-area .trend-items .item .top-info .item-type .rating i {
  display: inline-block;
  color: #fec42d;
  font-weight: 600;
}

.trend-product-area .trend-items .item .top-info .item-type .rating .no-rating i {
  color: #666666;
  font-weight: 500;
}

.trend-product-area .trend-items .item .top-info .item-type .rating .three-out-of-five i:nth-child(4),
.trend-product-area .trend-items .item .top-info .item-type .rating .three-out-of-five i:nth-child(5) {
  font-weight: 500;
}

.trend-product-area .trend-items .item .top-info .item-type .rating .four-out-of-five i:nth-child(5) {
  font-weight: 500;
}

.trend-product-area .trend-items .item .top-info .author span {
  color: #666666;
}

.trend-product-area .trend-items .item .top-info .author span a {
  color: #666666;
}

/* Trend product overlay */
.trend-product-area .trend-items .item .thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.trend-product-area .trend-items .item img {
  display: inline-block;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  max-width: 100%;
}

.trend-product-area .trend-items .item:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.3;
}

.trend-product-area.shadow-less .trend-items .item:hover img {
  filter: none;
  opacity: 1;
}

.trend-product-area .trend-items .item .thumb .overlay {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -30%);
  -webkit-transform: translate(0, -30%);
  -moz-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  -o-transform: translate(0, -30%);
  right: 0;
  text-align: center;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  opacity: 0;
  padding: 15px;
}

.trend-product-area .trend-items .item .thumb .overlay a {
  display: inline-block;
  padding: 10px 30px;
  background: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 5px;
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

.trend-product-area .trend-items .item:hover .thumb .overlay {
  opacity: 1;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.trend-product-area .trend-items .item .thumb .overlay a:last-child {
  background: #0078ff;
  color: #ffffff;
}

