.card-awards {
  text-align: left;
  position: relative;
  display: inline-block;
  background-color: #fff;
  overflow: hidden;
  border-radius: 12px;
  margin: 4px;
  box-shadow: 0px 0.874317px 1.74863px rgba(5, 5, 61, 0.08),
    0px 2px 10px rgba(5, 5, 61, 0.08);
  width: 330px;
  height: 150px;
  > .product {
    width: 100px;
    height: 100px;
    margin: 25px 10px;
    display: inline-block;
    > img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  > .description {
    width: 195px;
    display: inline-block;
    margin-top: 35px;
    position: absolute;
    > .title {
      margin: 0;
      padding: 0;
      text-align: left;
      overflow: hidden;
      white-space: normal;
      height: 52px;
      > span {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #101010;
      }
    }
    .progress {
      margin-top: 5px;
      display: flex;
      justify-content: space-around;
      progress {
        display: inline-block;
        width: 70%;
        margin-top: 15px;
      }
      .progress-label {
        display: inline-block;
        width: 30%;
        text-align: center;
        font-family: "Poppins";
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        color: #101010;
        div:nth-child(2) {
          margin-top: -7px;
        }
      }
    }
  }
}
