/** 
 * Stripe
 */
.checkoutPayPal .checkoutButtons .payment-method.stripe {
  /* Buttons and links */
  /* spinner/processing state, errors */
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .logo {
  padding: 0 20px;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more .powered-by {
  color: #5469d4;
  border-color: #5469d4;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more span {
  display: block;
  margin: 0;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more #cardholder-name {
  width: 100%;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more #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;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more #cardholder-name input:focus {
  outline: none;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more #cardholder-name input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #bcc7d3;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more #cardholder-name input::-moz-placeholder {
  /* Firefox 19+ */
  color: #bcc7d3;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more #cardholder-name input:-ms-input-placeholder {
  /* IE 10+ */
  color: #bcc7d3;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more #cardholder-name input:-moz-placeholder {
  /* Firefox 18- */
  color: #bcc7d3;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more .display-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .more .display-grid label {
  width: 100%;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .hidden {
  display: none;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe #card-error {
  color: #697386;
  text-align: left;
  font-size: 13px;
  line-height: 17px;
  margin-top: 12px;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe 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: .5em auto 0;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe button:hover {
  filter: contrast(115%);
}
.checkoutPayPal .checkoutButtons .payment-method.stripe button:disabled {
  opacity: 0.5;
  cursor: default;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe label {
  position: relative;
  color: var(--fontColor);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin: .3em auto;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .group label:not(:last-child) {
  border-bottom: 1px solid #F0F5FA;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe label > span {
  width: 120px;
  text-align: left;
  font-size: .8em;
  line-height: 1.5em;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .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: .3em;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .field::-webkit-input-placeholder {
  color: #CFD7E0;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .field::-moz-placeholder {
  color: #CFD7E0;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .spinner,
.checkoutPayPal .checkoutButtons .payment-method.stripe .spinner:before,
.checkoutPayPal .checkoutButtons .payment-method.stripe .spinner:after {
  border-radius: 50%;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .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);
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .spinner:before,
.checkoutPayPal .checkoutButtons .payment-method.stripe .spinner:after {
  position: absolute;
  content: "";
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .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;
}
.checkoutPayPal .checkoutButtons .payment-method.stripe .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);
  }
}
