.product-register-banner-wrapper {
    position: relative;
    width: 100%;
    height: 142px;
    background-color: #ffffff;
    border: 1px solid #ff9828;
    border-radius: 8px;
    display: flex;
    direction: rtl;
    align-items: center;
    cursor: pointer;
  }
.product-register-banner-wrapper a {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner-clip-path {
    width: 100%;
    height: 100%;
    background-color: #ffb25e;
    position: absolute;
    right: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    clip-path: polygon(50% 0, 100% 100%, 100% 0);
  }
  .product-register-banner-wrapper img.boxes {
    width: 217px;
    height: 150px;
    position: absolute;
    z-index: 5;
    right: 0;
    top: -40px;
  }
  .banner-content {
    height: 50px;
    margin: 56px auto 32px;
    display: flex;
    align-items: center;
  }
  .banner-question {
    font-weight: 500;
    font-size: 32px;
    color: #ff8603;
    padding-right: 100px;
    margin-left: 72px;
  }
  .banner-button {
    padding: 0px 16px 0px 4px;
    gap: 8px;
    width: 185px;
    height: 36px;
    background-color: #ff9828;
    border-radius: 100px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
  }
  .banner-button span:last-child {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #ff9828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
  }
  .register-banner-place-holder span {
    height: 129px;
    border-radius: 8px;
    padding: 32px 16px 16px;
  }
  @media (min-width: 769px) and (max-width: 991px) {
    .banner-question {
      font-size: 2.2rem;
      padding-right: 110px;
    }
    .product-register-banner-wrapper img.boxes {
      width: 175px;
      height: 130px;
    }
    .banner-button {
      width: 167px;
      height: 30px;
      font-size: 1.4rem;
    }
    .banner-button span:last-child {
      width: 26px;
      height: 26px;
      font-size: 1.7rem;
    }
  }
  
  @media (max-width: 768px) {
    .product-register-banner-wrapper {
      height: 111px;
    }
    .register-banner-place-holder span {
      height: 111px;
    }
    .banner-clip-path {
      clip-path: polygon(0 0, 100% 60%, 100% 0);
    }
    .product-register-banner-wrapper img.boxes {
      width: 120px;
      height: 82px;
      top: -23px;
    }
    .banner-content {
      height: 31px;
      margin: 62px auto 0;
      width: 100%;
      justify-content: space-between;
      padding: 0 8px;
    }
    .banner-question {
      font-size: 1.8rem;
      color: #ff8603;
      padding-right: 0;
      margin-left: 0;
    }
    .banner-button {
      padding: 0px 8px 0px 2px;
      gap: 4px;
      width: 86px;
      height: 20px;
      border-radius: 100px;
      font-size: 1.2rem;
      font-weight: 500;
    }
    .banner-button span:last-child {
      width: 16px;
      height: 16px;
    }
    .banner-button span:last-child svg {
      width: 12px;
      height: 12px;
    }
  }
  @media (max-width: 375px) {
    .banner-question {
      font-size: 1.4rem;
    }
    .product-register-banner-wrapper img.boxes {
      width: 110px;
      height: 70px;
    }
  }
  @media all and (display-mode: standalone){
    .banner-button {
      width: 95px;
      justify-content: space-between;
    }
  }