.nav {
  position: fixed;
  top: 0;
  width: 100%;
  .nav-button {
    background-color: #fff;
    text-align: left;
    padding: unset;
    cursor: pointer;
    width: 100%;
    border: unset;
    border-radius: unset;
    color: #05053d;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    > * {
      margin: 20px 8px;
      vertical-align: middle;
      &.back-icon {
        margin-right: 10px;
      }
    }
  }
  .options-menu {
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    height: 44px;
    position: relative;
    > .opt {
      font-family: Inter;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: -0.02em;
      font-feature-settings: "tnum" on, "lnum" on;
      color: #373764;
      margin: auto;
      text-align: center;
      &.active {
        font-weight: 600;
        color: #05053d;
        border-left: none;
        border-right: none;
        border-top: none;
        text-align: center;
      }
      > .indicator {
        height: 4px;
        background-color: #4a90e2;
        bottom: 0;
        position: absolute;
        border-radius: 100px 100px 0px 0px;
      }
    }
  }
  + .content {
    padding-top: 110px;
  }
}
.content {
  //   margin-top: 30px;
  .empty-state {
    text-align: center !important;
    margin-top: 30px;
    * {
      text-align: center !important;
    }
    .description {
      margin: 24px 16px 0px 16px !important;
      width: inherit !important;
    }
  }
  .carousel-cards {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 24px;
    .stars-card {
      width: 160px;
      height: 232px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0px 0.874317px 1.74863px rgba(5, 5, 61, 0.08),
        0px 2px 10px rgba(5, 5, 61, 0.08);
      border-radius: 12px;
      margin: 4px;
      .product {
        width: auto;
        height: 140px;
        > img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
      .promo-title {
        margin: 12px 12px 0 12px;
        font-family: Inter;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-feature-settings: "tnum" on, "lnum" on;
        color: #05053d;
        height: 40px;
        overflow: hidden;
        text-align: left;
      }
      .promo-status {
        border-radius: 12px;
        width: fit-content;
        margin-top: 8px;
        margin-left: 12px;
        > label {
          font-family: "Inter";
          font-style: normal;
          font-weight: 600;
          font-size: 12px;
          line-height: 16px;
          letter-spacing: -0.02em;
          font-feature-settings: "tnum" on, "lnum" on;
          padding: 2px 8px;
        }
      }
      .comming-soon {
        background-color: #e0e0ff;
        color: #1723d3;
      }
      .enroll-now {
        background-color: #ffde6a;
        color: #05053d;
      }
      .enrolled {
        background-color: #1723d3;
        color: #ffffff;
        img {
          transform: translate(-3px, 2px);
          width: 12px;
          height: 12px;
        }
      }
      .winner-pending {
        background-color: #ffdfbc;
        color: #955000;
      }
      .winner-check {
        background-color: #d6f1ed;
        color: #087d6f;
      }
    }
  }
}
