/**
 * STRIPE
 */

#skp-stripe-form {
  max-width: 350px;
  margin: auto;
}

#skp-stripe-form .StripeElement{
  height: 40px;
  padding: 10px 12px;

  color: #000000;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 4px;

  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;

  border: solid 1px rgba(10, 10, 10, 0.1);
 }

 #skp-stripe-form .StripeElement::placeholder{
   color: #cfd7df;
 }

 #skp-stripe-form .focus{
  box-shadow: 0 1px 8px 0 #cfd7df;
 }

.StripeButton{
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}


.StripeButton:hover:enabled{
  opacity: 0.8;
  box-shadow: 0 1px 4px 0 rgb(68, 68, 68);
}

/**
 * ----------- Error message --------------
 */

.stripe-error-hide{
  display: none;
}

.stripe-error-message {
  margin-top: 10px;
  background-color: #fce4e4;
  border: 1px solid #fcc2c3;
  float: left;
  padding: 10px 30px;
  width: 100%;
}

.stripe-error-text {
  color: #cc0033;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  text-shadow: 1px 1px rgba(250,250,250,.3);
}


.stripe-success-message {
  background-color: #f1fce4;
  border: 1px solid #14a501;
  text-align: left;
  width: 100%;
  max-width: 350px;
  padding: 10px 30px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
}

.stripe-success-text {
  color: #14a501;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  text-shadow: 1px 1px rgba(250,250,250,.3);
}

/**
 * ----------- Product card ---------------
 */
 .card {
  box-shadow: 0 1px 5px 0 #e6ebf1;
  max-width: 350px;
  margin: auto;
  text-align: center;
  font-family: arial;
}

.price {
  color: grey;
  font-size: 22px;
}

.card button {
  margin-top: 15px;
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card button:hover {
  opacity: 0.7;
}


/**
 * ----------- loader not used yet --------------
 */

 .stripe-loader,
 .stripe-loader:before,
 .stripe-loader:after {
   background: #ffffff;
   -webkit-animation: load1 1s infinite ease-in-out;
   animation: load1 1s infinite ease-in-out;
   width: 1em;
   height: 4em;
 }
 .stripe-loader {
   color: #ffffff;
   text-indent: -9999em;
   margin: 88px auto;
   position: relative;
   font-size: 11px;
   -webkit-transform: translateZ(0);
   -ms-transform: translateZ(0);
   transform: translateZ(0);
   -webkit-animation-delay: -0.16s;
   animation-delay: -0.16s;
 }
 .stripe-loader:before,
 .stripe-loader:after {
   position: absolute;
   top: 0;
   content: '';
 }
 .stripe-loader:before {
   left: -1.5em;
   -webkit-animation-delay: -0.32s;
   animation-delay: -0.32s;
 }
 .stripe-loader:after {
   left: 1.5em;
 }
 @-webkit-keyframes load1 {
   0%,
   80%,
   100% {
     box-shadow: 0 0;
     height: 4em;
   }
   40% {
     box-shadow: 0 -2em;
     height: 5em;
   }
 }
 @keyframes load1 {
   0%,
   80%,
   100% {
     box-shadow: 0 0;
     height: 4em;
   }
   40% {
     box-shadow: 0 -2em;
     height: 5em;
   }
 }
 