/* Description: Transfer the in-page styles from product.php to a separate CSS file.*/
.add_cart_restricted.rewardbtn {
  background: #fff;
  border: 1px solid #ba8c2a;
  font-size: 13px;
  font-weight: 500;
  color: #ba8c2a;
  padding: 8px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 38px;
}

.add_cart_restricted.rewardbtn:hover {
  background: #ba8c2a;
  color: #fff;
}

.auction_options {
  width: 100%;
  margin: 5px 0;
}

/*Styel for product details page suggest list*/
.product_card_list.suggest_item_list .product_list {
  grid-template-columns: repeat(3, 1fr);
}
.product_card_list.suggest_item_list .product_list .add_cart_restricted,
.product_card_list.suggest_item_list .product_list .but_add_cart.buy {
  position: unset;
}
@media only screen and (max-width: 768px) {
  .product_card_list.suggest_item_list .product_list {
    grid-template-columns: repeat(2, 1fr);
  }
  @media only screen and (max-width: 500px) {
    .suggest_item_box {
      padding: 0px;
    }
    .suggest_item_box > div:nth-of-type(1) {
      padding: 20px;
    }
    .product_card_list.suggest_item_list .price_box {
      flex: 0;
    }
  }
}

.product_details_profile_box .product_label {
  background: unset;
  padding: 0;
  font-weight: 700;
}
