/*by me*/
#product_by .item_box{
    display:block;
}

.item_view {
  height: 220px;
  border-radius: 10px;
  background-color: rgba(20, 33, 61, .1);
  position: relative;
  margin-bottom: 18px;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(20,33,61,0.05);
  -moz-box-shadow: 0px 0px 0px 1px rgba(20,33,61,0.05);
  box-shadow: 0px 0px 0px 1px rgba(20,33,61,0.05);
}
.item_view .item_view_overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(20, 33, 61, .6);
  border-radius: 10px;
  position: absolute;
  opacity: 0;
  transition: .5s;
  display: flex;
  padding: 10px;
}
.item_view .item_view_overlay:hover {
  opacity: 1;
}
.item_view .item_view_overlay .item_details {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item_view .item_view_overlay .free_item i{
    font-size: 14px;
    color: #14213D;
    background-color: #FCA311;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
}

.item_view .free_item .price{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    position: absolute;
    top: 14px;
    left: 44px;
}


.item_view .paid_item_top .bd-taka {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  color: #14213D;
  background-color: #FCA311;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  line-height: 24px;
  text-align: center;
  font-weight: bold;
}
.item_view .paid_item_top .price {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 14px;
  left: 44px;
}


.item_view .item_view_overlay .item_title {
  padding: 0 10px 3px 5px;
}
.item_view .item_view_overlay .item_title .item_name {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.item_view .item_view_overlay .icon_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}
.item_view .item_view_overlay .icon_container .item_icons {
  color: #14213D;
}
.item_view .item_view_overlay .icon_container .item_icons:hover i {
  background-color: #FCA311;
}
.item_view .item_view_overlay .icon_container .item_icons i {
  font-size: 16px;
  line-height: 30px;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 14px;
  transition: .3s;
}

.item_view .item_view_overlay .icon_container .item-active-like i {
  background-color: #FCA311;
}
.item_view .item_view_overlay .icon_container .item-active-like:hover i {
  background-color: #FCA311;
}

.item_view .item_view_img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}


.item_bottom {
  display: flex;
  justify-content: space-between;
}
.item_bottom .author_details {
  display: flex;
  align-items: center;
}
.item_bottom .item_bottom_icons {
  display: flex;
  justify-content: flex-end;
}
.item_bottom .author_details .item_author_img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.item_bottom .author_details .item_author_img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.item_bottom .author_details a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #14213D;
  margin-left: 14px;
  transition: .3s;
}
.item_bottom .author_details a:hover {
  color: #FCA311;
}
.item_bottom .item_bottom_icons a {
  color: #95989A;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  margin-left: 15px;
}
.item_bottom .item_bottom_icons a i {
  margin-right: 5px;
}
.item_bottom .item_bottom_icons .item_bottom_cart i {
  color: #14213D;
  transition: .3s;
}
.item_bottom .item_bottom_icons .item_bottom_cart i:hover {
  color: #FCA311;
}