/**
 * 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 {
  box-sizing: border-box;
  height: 40px;
  padding: 13px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: white;
  transition: box-shadow 150ms ease;
  width: 300px;
  margin: 10px 0px 15px 0px;
}

.StripeElement--focus {
  background-color: rgba(211,211,211,0.2) !important;
}

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

.StripeElement--webkit-autofill {
  -webkit-appearance:none !important;
  background-color: rgba(211,211,211,0.2) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid rgba(211,211,211,0.2) !important;
  -webkit-text-fill-color: white !important;
  /*-webkit-box-shadow: 0 0 0px 1000px rgba(211,211,211,0.2) inset;*/
  transition: background-color 5000s ease-in-out 0s !important;
  -webkit-appearance:none !important;
  background-color: rgba(211,211,211,0.2) !important;
}

#card-errors {
  display: none;
  padding-bottom: 15px;
}

#payment-form {
    max-width: 400px;
}
#payment-form .fields input {
  padding: 0px 1.8rem;
}
#payment-form .card-field {
  width: 100%;
  height: 3rem;
  box-sizing: border-box;
  font-size: 1rem;
  display: inline-block;
  opacity: 1;
  outline: none;
  border-image: initial;
  border-radius: 6px;
  font-weight: 400;
  margin-bottom: 15px;
  border-radius: 30px;
  color: white;
  background: rgba(211,211,211,0.2);
  border: 1px solid rgba(211,211,211,0.2);
  -webkit-text-fill-color: white;
  padding: 14px 1.8rem;
}
#payment-form #payment-country-button {
    width: 100%;
    height: 3rem;
    box-sizing: border-box;
    font-size: 1rem;
    display: inline-block;
    opacity: 1;
    padding: 0px 1.8rem;
    padding-top: 10px;
    outline: none;
    border-image: initial;
    border-radius: 6px;
    font-weight: 400;
    margin-bottom: 15px;
    border-radius: 30px;
    color: white;
    background: rgba(211,211,211,0.2);
    border: 1px solid rgba(211,211,211,0.2);
    -webkit-text-fill-color: white;
}
#payment-form #payment-country-button .ui-icon-triangle-1-s {
    margin-top: 5px;
}