.rewards-section {
  /* margin-top: 30%; */
  /* margin-top: 150px;

  width: 100%; */

  .reward-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    height: 80vh;
    overflow-y: overlay;
    overflow-x: hidden;

    .reward {
      /* width: 22.5rem; */
      width: 90%;
      height: fit-content;

      border-radius: 0.875rem;
      border: 0.5px solid #ebe4e3;
      background: #ebe4e3;
      box-shadow: 0 5px 10px 0 rgba(229, 229, 229, 0.5);
      padding: 0.44rem;
      position: relative;

      .outline {
        width: 4.0625rem;
        height: 4.5rem;
        transform: rotate(90deg);
        position: absolute;
        background: 0px 0px / 100% 100% no-repeat;
        right: 2px;
        bottom: -4px;
        border-radius: 0.875rem;
      }

      .reward-description {
        display: flex;
        margin-inline: 1rem;
      }

      .reward-content {
        position: relative;
        /* top: 3%; */

        .reward-info {
          margin-block: 0.72rem;
          /* width: 70%; */

          .logo {
            max-width: 60%;
            width: auto;
            height: 40px;
            /* lets height scale with width */
            display: block;
            margin: 0;
            object-fit: contain;
            /* ensures the image stays proportionate */
          }


          .title {
            color: #794d1f;

            font-size: 1.125rem;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            margin-block: 0.1rem;
          }

          .description {
            color: #492d10;
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 300;
            /* line-height: 1rem; */
            letter-spacing: -0.02113rem;
            margin-block: 0.1rem;
          }

          .additional-description {
            color: #644527;
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: 0.8125rem;
            margin-block: 0.1rem;
            margin-top: 0.5rem;
          }
        }

        .discount-section {
          /* margin-block: 1.5rem; */
          position: absolute;
          inset-inline-end: 100px;


          .discount {
            color: #644527;
            width: 5.8125rem;
            font-size: 1rem;
            font-style: normal;
            font-weight: 800;
            line-height: 1rem;
            letter-spacing: -0.02113rem;
            position: absolute;
            /* bottom: 6rem; */
            text-align: center;
            top: 14px;
          }

          .lottie-animation {
            width: 100px;
            position: absolute;
            top: 2vh;
            /* right: -8px; */
            height: 87px;
          }
        }
      }

      .reward-image {
        /* width: 21.57575rem; */
        width: 100%;
        height: 9.1875rem;

        border-radius: 0.75rem;
        /* background: linear-gradient(168deg, #f4f0ef 11.22%, #e5dcda 91.39%); */
      }
    }
  }
}

.timing-section {
  color: #644527;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.8125rem;

  .timing-title {
    font-weight: 700;
    margin: 0.5rem 0;
  }

  .timing-block {
    margin-bottom: 0.4rem;

    .timing-day {
      margin-block: 0.1rem;
    }

    .timing-time {
      margin-block: 0.1rem;
    }
  }
}