<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.discountBar {
    position: sticky;
    width: 100%;
    height: 53px;
    bottom: 0;
    left: 0;
    opacity: 0.9;
    background-image: url('../images/bannerBar-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 7;
  }

  .discountBar-Content {
    margin: 0px auto 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .discountBar-wrapper{
    display: flex;
    gap:11px;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
   }

  .discountBar-Content img {
    margin-top: -51px;
  }

  .discountBar-wrapper p {
    font-size: 22px;
    font-weight: 500;
    line-height: 26.63px;
    letter-spacing: -0.02em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-align: left;
    color: white;
    margin-left: 20px;
  }
  .discountBar-wrapper p {
    animation: 1.3s linear infinite blink;
  }

  .discountBar-wrapper a {
    font-size: 16px;
    font-weight: 500;
    line-height: 20.24px;
    text-decoration: underline;
    color: #fff;
  }

  .discountBar-wrapper a:hover {
    text-decoration: none;
  }

  @keyframes blink {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @media (max-width: 575px) {
    .discountBar{
        height: 53px;
        background-image: url('../images/bannerbar-mob-bg.svg');

    }
    .discountBar-Content {
        max-width: 370px;
        width: 100%;
        margin: -2px auto 8px;
        gap: 11px;
    }
    .discountBar-Content img {
        width: 56%;
        margin-top: -44px;
    }
    .discountBar-wrapper{
        flex-direction: column-reverse;
        gap: 0px;
        margin-top: 5px;
        align-items: flex-start;
    }
    .discountBar-wrapper p {
        font-size: 14px;
        margin-left:0;
    }
    .discountBar-wrapper a {
        font-size: 13px;
    text-decoration: underline;
    line-height: 11.24px;
    }
    .discountBar-wrapper{
        display: flex;
        gap:0px;
    }
    /* .discountBar-Content {
      max-width: 260px;
      width: 100%;
      margin: 0px auto 8px;
      flex-wrap: wrap;
      gap: 0;
    }

    .discountBar-Content img {
      width: 258px;
      margin-top: -16px;
    }

    .discountBar-Content p {
      font-size: 15px;
    }

    .discountBar-Content a {
      font-size: 13px;
    }

    .discountBar::before {
      left: 0px;
      bottom: 12px;
      width: 58px;
      height: 58px;
      background-size: contain;
      background-repeat: no-repeat;

    }

    .discountBar::after {
      right: 0;
      width: 52px;
      height: 42px;
      background-size: contain;
      background-repeat: no-repeat;
    }
    .discountBar {
    height: 69px;
    } */
  }</pre></body></html>