.stripe-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.stripe-wrapper label {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-variant: normal;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
.stripe-wrapper form {
  padding: 30px;
  height: 120px;
}
.stripe-form-row label {
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}
.stripe-form-row {
  width: 70%;
}
.token {
  color: #32325d;
  font-family: 'Source Code Pro', monospace;
  font-weight: 500;
}
.__PrivateStripeElement {
    margin: 0px !important; padding: 0px !important; border: medium none !important; display: block !important; background: transparent none repeat scroll 0% 0% !important; position: relative !important; opacity: 1 !important;
}
#card-errors {
  height: 20px;
  padding: 4px 0;
  color: #fa755a;
}
#stripe-token-handler {
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  padding: 20px 30px;
  border-radius: 0 0 4px 4px;
  box-sizing: border-box;
  box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1),
    0 15px 35px rgba(50, 50, 93, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  transform: translateY(0);
  opacity: 1;
  background-color: white;
}
#stripe-token-handler.is-hidden {
  opacity: 0;
  transform: translateY(-80px);
}
@media only screen and (max-width: 767px){
    .stripe-wrapper{
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .stripe-form-row {
        width: 100%;
    }
}

/*
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
*/
.StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
