.billing-return {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  padding: max(32px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  place-items: center;
  overflow-y: auto;
  color: #f7f7f8;
  background:
    radial-gradient(circle at 50% 42%, rgba(43, 46, 44, .58), transparent 34%),
    #040505;
  font-family: "Avenir Next", Avenir, sans-serif;
  box-sizing: border-box;
}

.billing-return-card {
  width: min(100%, 620px);
  padding: 54px 46px 46px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: rgba(24, 24, 28, .94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  text-align: center;
  box-sizing: border-box;
}

.billing-return-icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 30px;
  place-items: center;
  border: 4px solid #f45b2c;
  border-radius: 50%;
  color: #f45b2c;
}

.billing-return-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.billing-return-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.billing-return-card p {
  margin: 18px auto 0;
  max-width: 450px;
  color: #aaa8ae;
  font-size: 19px;
  line-height: 1.5;
}

.billing-return-button {
  min-width: 210px;
  min-height: 58px;
  margin-top: 38px;
  padding: 0 28px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff6a32, #f45122);
  box-shadow: 0 14px 34px rgba(244, 81, 34, .25);
  font: 700 17px/1 "Avenir Next", Avenir, sans-serif;
}

@media (max-width: 600px) {
  .billing-return-card {
    padding: 42px 24px 34px;
    border-radius: 22px;
  }

  .billing-return-card p {
    font-size: 17px;
  }

  .billing-return-button {
    width: 100%;
  }
}
