.Common_Product_Card {
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.Common_Product_Card:hover {
  transform: translateY(-10px);
}

.Common_Product_Card .outer_colored_card {
  border-radius: 0px;
  padding: 0 0 0px 0;
  position: relative;
}

.Common_Product_Card .outer_colored_card .img_holder {
  width: auto;
  height: 300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.Common_Product_Card .outer_colored_card .img_holder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px; /* overlay height */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.Common_Product_Card .outer_colored_card .img_holder .prod_img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.Common_Product_Card .outer_colored_card .text_holder {
  border-radius: 3px;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
}

.Common_Product_Card .outer_colored_card .text_holder .prod_name {
  text-align: center;
  font-size: 17px;
  color: #dfdfdf;
  margin-bottom: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 200px;
  font-weight: 500;
  margin-top: 5px;
  position: absolute;
  bottom: 3px;
  left: 12px;
}

/* green theme */
.Common_Product_Card .outer_colored_card.green {
  background: transparent linear-gradient(199deg, #e4fc96 0%, #f8ffe1 100%) 0%
    0% no-repeat padding-box;
}

.Common_Product_Card .outer_colored_card.green .text_holder {
  background: rgb(71 111 0);
}

/* brown theme */
.Common_Product_Card .outer_colored_card.brown {
  background: transparent linear-gradient(216deg, #f8ca67 0%, #fff4de 100%) 0%
    0% no-repeat padding-box;
}

.Common_Product_Card .outer_colored_card.brown .text_holder {
  background: #b78518 0% 0% no-repeat padding-box;
}

/* blue theme */
.Common_Product_Card .outer_colored_card.blue {
  background: transparent linear-gradient(220deg, #b4e8ff 0%, #eefaff 100%) 0%
    0% no-repeat padding-box;
}

.Common_Product_Card .outer_colored_card.blue .text_holder {
  background: #208dbc 0% 0% no-repeat padding-box;
}

/* pink theme */
.Common_Product_Card .outer_colored_card.pink {
  background: transparent linear-gradient(220deg, #ffb4fa 0%, #ffecfe 100%) 0%
    0% no-repeat padding-box;
}

.Common_Product_Card .outer_colored_card.pink .text_holder {
  background: #b85ab1 0% 0% no-repeat padding-box;
}

/* pink theme */
.Common_Product_Card .outer_colored_card.teal {
  background: transparent linear-gradient(220deg, #b7f8ff 0%, #effffd 100%) 0%
    0% no-repeat padding-box;
}

.Common_Product_Card .outer_colored_card.teal .text_holder {
  background: #54959c 0% 0% no-repeat padding-box;
}

/* dark green theme */
.Common_Product_Card .outer_colored_card.dark_green {
  background: transparent linear-gradient(176deg, #1d6034 0%, #ea203100 100%) 0%
    0% no-repeat padding-box;
}

.Common_Product_Card .outer_colored_card.dark_green .text_holder {
  background: #1d6034 0% 0% no-repeat padding-box;
}

/* white theme */
.Common_Product_Card .outer_colored_card.white {
  background: #e9e9e9;
  /* border: 1px solid #c4c4c4; */
}

/* white theme */
.Common_Product_Card .outer_colored_card.gray {
  background: #f1f1f1;
}

@media (min-width: 0px) and (max-width: 575px) {
  .Common_Product_Card .outer_colored_card .text_holder .prod_name {
    font-size: 13px;
  }
  .Common_Product_Card .outer_colored_card .img_holder {
    height: 180px !important;
  }
}

@media (min-width: 0px) and (max-width: 1199px) {
  .Common_Product_Card .outer_colored_card .img_holder {
    height: 250px;
  }
}

@media (min-width: 0px) and (max-width: 991px) {
  .Common_Product_Card .outer_colored_card .img_holder {
    height: 230px;
  }
  .Common_Product_Card:hover {
    transform: translateY(0px);
  }
}
