/** 
 * Stripe
 */
.checkoutPayPal .checkoutButtons .payment-method.stripe .shop-pg-logo {
  padding: 0 20px;
}

.more.stripe-only {
  width: 100%;
  /* Buttons and links */
  /* spinner/processing state, errors */
}
.more.stripe-only .powered-by {
  font-size: 0.7em;
  line-height: 1em;
  padding: 0.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 1em auto 0.5em;
  color: #5469d4;
  border: 1px solid #5469d4;
  max-width: 115px;
  border-radius: 0.3em;
}
.more.stripe-only .powered-by img {
  display: inline-block;
  margin-left: 0.3em;
  transform: translateY(1px);
}
.more.stripe-only span {
  display: block;
  margin: 0;
}
.more.stripe-only #cardholder-name {
  width: 100%;
}
.more.stripe-only #cardholder-name input {
  width: 100%;
  border: 0;
  color: #31325F;
  line-height: 40px;
  font-weight: 300;
  font-family: Helvetica Neue;
  font-size: 15px;
  height: 40px;
  outline: none;
}
.more.stripe-only #cardholder-name input:focus {
  outline: none;
}
.more.stripe-only #cardholder-name input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #bcc7d3;
}
.more.stripe-only #cardholder-name input::-moz-placeholder { /* Firefox 19+ */
  color: #bcc7d3;
}
.more.stripe-only #cardholder-name input:-ms-input-placeholder { /* IE 10+ */
  color: #bcc7d3;
}
.more.stripe-only #cardholder-name input:-moz-placeholder { /* Firefox 18- */
  color: #bcc7d3;
}
.more.stripe-only .display-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.more.stripe-only .display-grid label {
  width: 100%;
}
.more.stripe-only .hidden {
  display: none;
}
.more.stripe-only #card-error {
  color: rgb(255, 0, 0);
  text-align: left;
  font-size: 13px;
  line-height: 17px;
  margin-top: 12px;
}
.more.stripe-only button {
  background: #5469d4;
  color: #ffffff;
  font-family: inherit;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
  margin: 0.5em auto 0;
}
.more.stripe-only button:hover {
  filter: contrast(115%);
}
.more.stripe-only button:disabled {
  opacity: 0.5;
  cursor: default;
}
.more.stripe-only label {
  position: relative;
  color: var(--fontColor, black);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: 0.3em auto;
}
.more.stripe-only .group label:not(:last-child) {
  border-bottom: 1px solid #F0F5FA;
}
.more.stripe-only label > span {
  width: 120px;
  text-align: left;
  font-size: 0.8em;
  line-height: 1.5em;
}
.more.stripe-only .field {
  background: transparent;
  background: white;
  font-weight: 300;
  font-weight: normal;
  border: 0;
  color: #31325F;
  outline: none;
  -ms-flex: 1;
      flex: 1;
  padding-right: 10px;
  padding-left: 10px;
  cursor: text;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3em;
}
.more.stripe-only .field::-webkit-input-placeholder {
  color: #CFD7E0;
}
.more.stripe-only .field::-moz-placeholder {
  color: #CFD7E0;
}
.more.stripe-only .spinner,
.more.stripe-only .spinner:before,
.more.stripe-only .spinner:after {
  border-radius: 50%;
}
.more.stripe-only .spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  transform: translateZ(0);
}
.more.stripe-only .spinner:before,
.more.stripe-only .spinner:after {
  position: absolute;
  content: "";
}
.more.stripe-only .spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  transform-origin: 10.4px 10.2px;
  animation: loading 2s infinite ease 1.5s;
}
.more.stripe-only .spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  transform-origin: 0px 10.2px;
  animation: loading 2s infinite ease;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
