/* SEWARD product-button feedback v1.1.3. */
body.single-product .swc-product-buy {
  position: relative;
  transition: transform 160ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease !important;
  will-change: transform;
}

body.single-product .swc-product-buy:hover {
  transform: translateY(-2px);
}

body.single-product .swc-product-buy:active {
  transform: translateY(1px);
}

body.single-product .swc-product-form.is-submitting .swc-product-buy:not(.is-loading) {
  opacity: .55;
}

body.single-product .swc-product-buy.is-loading {
  padding-right: 44px !important;
  cursor: progress;
}

body.single-product .swc-product-buy.is-loading::after {
  content: "";
  position: absolute;
  right: 17px;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: seward-pbf-spin 700ms linear infinite;
}

body.single-product .swc-product-form__status {
  min-height: 18px;
  margin: 7px 0 0;
  color: #4d5357;
  font-size: 11px;
  line-height: 1.4;
}

body.single-product .swc-product-form__status.is-success {
  color: #16743b;
}

body.single-product .swc-product-form__status.is-error {
  color: #b1261f;
  font-weight: 700;
}

@keyframes seward-pbf-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  body.single-product .swc-product-buy:hover,
  body.single-product .swc-product-buy:active {
    transform: none;
  }

  body.single-product .swc-product-buy.is-loading::after {
    animation-duration: 1400ms;
  }
}
