/* Flexible PureForm order CTA skin, scoped to explicit buy/pay buttons. */
.Btn.buy-pay-button {
  --pf-buy-button-bg: rgb(15, 15, 15);
  --pf-buy-button-height: 40px;
  --pf-buy-button-pad-x: 22px;
  min-width: 130px;
  width: auto;
  min-height: var(--pf-buy-button-height);
  height: auto;
  padding: 0 var(--pf-buy-button-pad-x);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pf-buy-button-bg);
  border: none;
  border-radius: 999px;
  color: white;
  gap: 8px;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease;
}

.Btn.buy-pay-button .svgIcon {
  width: 16px;
  flex: 0 0 auto;
}

.Btn.buy-pay-button .svgIcon path {
  fill: white;
}

.Btn.buy-pay-button::before {
  width: 145%;
  height: 240%;
  position: absolute;
  content: "";
  background-color: white;
  border-radius: 50%;
  left: -155%;
  top: -78%;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-radius .35s ease;
  mix-blend-mode: difference;
}

.Btn.buy-pay-button:hover::before {
  transform: translateX(106%);
  border-radius: 0;
}

.Btn.buy-pay-button:active {
  transform: translateY(1px) scale(.99);
}

.Btn.buy-pay-button span,
.Btn.buy-pay-button .svgIcon {
  position: relative;
  z-index: 1;
}

.Btn.buy-pay-button:hover {
  color: white;
}

.Btn.buy-pay-button:focus-visible {
  outline: 2px solid rgba(17, 17, 17, .55);
  outline-offset: 4px;
}

.Btn.buy-pay-button.buy-pay-button-wide {
  min-width: 148px;
}

.nav-cta.Btn.buy-pay-button {
  --pf-buy-button-height: 44px;
  --pf-buy-button-pad-x: 26px;
  min-width: max-content;
}

.btn-p.Btn.buy-pay-button {
  --pf-buy-button-height: 44px;
  --pf-buy-button-pad-x: 28px;
  min-width: 144px;
}

.offer-link.Btn.buy-pay-button {
  --pf-buy-button-height: 36px;
  --pf-buy-button-pad-x: 18px;
  min-width: 130px;
}

@media (max-width: 820px) {
  .Btn.buy-pay-button {
    min-width: 128px;
  }

  .hero-btns .Btn.buy-pay-button,
  .cta-btns .Btn.buy-pay-button {
    width: 100%;
  }
}
