#paymentFormSubmit input.disabled,
.button.disabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

/* PayPal */
#paypalPaymentForm input.has-error {
    background: #fff;
    -moz-box-shadow: 0 0 3px rgba(255,99,71,.2);
    -webkit-box-shadow: 0 0 3px rgba(255,99,71,.2);
    box-shadow: 0 0 3px rgba(255,99,71,.2);
    border: 1px solid tomato;
}

#paypalPaymentForm input.has-value {
    background: #fff;
    -moz-box-shadow: 0 0 3px rgba(50,205,50,.2);
    -webkit-box-shadow: 0 0 3px rgba(50,205,50,.2);
    box-shadow: 0 0 3px rgba(50,205,50,.2);
    border: 1px solid limegreen;
}

/* Braintree */
#paymentForm {
    /*padding: 10px;
    border: 1px solid #ccc;*/
}

#paymentForm label {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #3E3C42;
}

input.payment-input {
    display: block;
    width: 100%;
}

.payment-select {
    border: 1px solid #e5e5e5;
    padding: 6px 4px;
    outline: none;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    color: #888;
    margin: 0;
    min-width: 210px;
    width: 100%;
    max-width: 100%;
    min-height: 36px;
    display: block;
    margin-bottom: 20px;
    background: #fdfdfd;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.payment-input {
    background: #f7f7f7;
    border: 1px solid transparent;
    -webkit-transition: border-color 160ms;
    transition: border-color 160ms;
    outline: none;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;

    height: 35px;
    padding: 6px 4px;
    margin-bottom: 20px;
}

input.payment-input:focus,
.payment-input.braintree-hosted-fields-focused {
    background: #fff;
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
    box-shadow: 0 0 3px rgba(0,0,0,.2);
    border: 1px solid #aaa;
}

input.payment-input.has-error,
.payment-input.braintree-hosted-fields-invalid {
    background: #fff;
    -moz-box-shadow: 0 0 3px rgba(255,99,71,.2);
    -webkit-box-shadow: 0 0 3px rgba(255,99,71,.2);
    box-shadow: 0 0 3px rgba(255,99,71,.2);
    border-color: tomato;
}

input.payment-input.has-value,
.payment-input.braintree-hosted-fields-valid {
    background: #fff;
    -moz-box-shadow: 0 0 3px rgba(50,205,50,.2);
    -webkit-box-shadow: 0 0 3px rgba(50,205,50,.2);
    box-shadow: 0 0 3px rgba(50,205,50,.2);
    border-color: limegreen;
}

#paymentFormSubmit {
    text-align: center;
}

#paymentFormSubmit input {
    position: relative;
    border: 0 none;
    border-radius: 1px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    text-transform: none;
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    letter-spacing: 1.6px;
    padding: 14px 28px;
    background: #128abc;
    -webkit-transition: all 0.28s ease;
    -moz-transition: all 0.28s ease;
    -o-transition: all 0.28s ease;
    transition: all 0.28s ease;
}

#paymentFormSubmit input:hover {
    background: #32a6d6;
}