.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: 5px;
  padding: 10px 20px 39px;
  position: relative;
}

.Common_Product_Card .outer_colored_card .img_holder {
  width: auto;
  height: 120px;
  margin: 0 auto;
}

.Common_Product_Card .outer_colored_card .img_holder .prod_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Common_Product_Card .outer_colored_card .text_holder {
  /* box-shadow: 0px 0px 6px #00000029; */
  border-radius: 3px;
  width: 90%;
  margin: 0 auto;
  padding: 6px 5px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.Common_Product_Card .outer_colored_card .text_holder .prod_name {
  text-align: center;
  font-size: 15px;
  color: #000000;
  margin-bottom: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* green theme */
.Common_Product_Card .outer_colored_card.green {
  background: #fffdeb;
}

.Common_Product_Card .outer_colored_card.green .text_holder {
  background: #fff6a1;
}

/* brown theme */
.Common_Product_Card .outer_colored_card.brown {
  background: #f7f0ff;
}

.Common_Product_Card .outer_colored_card.brown .text_holder {
  background: #dfc4ff;
}

/* blue theme */
.Common_Product_Card .outer_colored_card.blue {
  background: #eeefff;
}

.Common_Product_Card .outer_colored_card.blue .text_holder {
  background: #b5bbf6;
}

/* pink theme */
.Common_Product_Card .outer_colored_card.pink {
  background: #ffe9e8;
  color: #fff !important;
}

.Common_Product_Card .outer_colored_card.pink .text_holder {
  background: #a48685;
}
.Common_Product_Card .outer_colored_card.pink .text_holder .prod_name {
  color: #fff !important;
}
/* pink theme */
.Common_Product_Card .outer_colored_card.teal {
  background: #e5fdff;
}

.Common_Product_Card .outer_colored_card.teal .text_holder {
  background: #8ed0d5;
}

/* 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;
}

@media (min-width: 0px) and (max-width: 575px) {
  .Common_Product_Card .outer_colored_card .text_holder .prod_name {
    font-size: 13px;
  }
}
