* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "CastleT";
  src: url("../../coupon/fonts/CastleT.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

img {
  width: 100%;
  height: auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

header {
  width: 100%;
  height: 140px;
  background: linear-gradient(104deg, #04371b 40.29%, #0c5b2f 95.14%);
  position: fixed;
  z-index: 999;

  img {
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    width: 100%;
    height: 100%;
  }

  .prestige-logo-wrapper {
    width: 100%;
    justify-content: center;
    display: flex;
    margin-block: 60px;

    #hero-text-image {
      width: 6.08575rem;
      height: 2.70313rem;
      opacity: 0;
      /* start hidden */
      transition: opacity 0.3s ease;
      /* smooth fade-in */
    }

    #hero-text-image.loaded {
      opacity: 1;
      /* show only when loaded */
    }

  }

  #reward-back {
    width: 2.3125rem;
    height: 2.3125rem;

    position: fixed;
    z-index: 999;
    top: 3.8rem;
    left: 1.19rem;
  }

  #premium-offer-text {
    color: #e9af6e;
    font-family: "CastleT", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: fixed;
    top: 6.3rem;
    width: 100%;
    text-align: center;
  }

  .prestige-banner-top-right-edge {
    width: 5.9375rem;
    height: 140px;

    position: fixed;
    right: 0;
    background: url(../resources/images/banner-edge-image.png) 0px 0px / 100% 100% no-repeat;
  }

  .prestige-banner-bottom-left-edge {
    width: 5.9375rem;
    height: 140px;

    transform: rotate(-180deg);
    position: fixed;
    left: 0;
    background: url(../resources/images/banner-edge-image.png) 0px 0px / 100% 100% no-repeat;
  }
}

.rewards-section {
  margin-top: 150px;
  margin-bottom: 20px;
  width: 100%;
}

.description {
  line-height: 18px;
}

.loader-gif {
  height: 6rem;
  width: 6rem;
  align-self: center;
}