/**
* 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 {
    height: 40px;
    padding: 10px 12px;

    color: #32325d;
    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;
}

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

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

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

#stripe-elements-3d-secure .tc_payment_confirm {
    display: none;
}

#stripe-inner {
    position: relative;
    margin: 0 10%;
}

#stripe-elements-3d-secure #card-errors {
    font-size: 18px;
    color: red;
    text-align: center;
    margin-bottom: 20px;
}

#stripe-submit {
    width: 100%;
    margin-top: 20px;
}

#stripe-loading {
    display: none;
    width: 50px;
    margin: 20px auto 0px;
}