.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;
  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 {
  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: 16px;
  color: #000;
  margin-bottom: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: 600;
}

/* 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: #b22c35 ;
}

/* 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, #b22c35 0%, #EA203100 100%) 0% 0% no-repeat padding-box;
}

.Common_Product_Card .outer_colored_card.dark_green .text_holder {
  background: #b22c35 0% 0% no-repeat padding-box;
}


/* white theme */
.Common_Product_Card .outer_colored_card.white {
  background: #fff;
  border: 1px solid #C4C4C4;
}

/* white theme */
.Common_Product_Card .outer_colored_card.gray {
  background: #F1F1F1;
  border: 1px solid #F1F1F1;
}



@media (min-width: 0px) and (max-width: 575px) {
  .Common_Product_Card .outer_colored_card .text_holder .prod_name {
    font-size: 13px;
  }
}