/* Add here all your CSS customizations */

/* Page Header */
.page-header {
    background-color: #0088CC;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance:textfield;
}

/**
 * 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: 10px 12px;

    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;

    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;
}


.CreditCardForm {
    max-width: 700px;
    background-color: #fff;
    margin: 50px auto;
    overflow: hidden;
    padding: 25px;
    color: #4c4e56;
}
.CreditCardForm label {
    width: 100%;
    margin-bottom: 10px;
}

.CreditCardForm .payment {
    float: left;
    font-size: 18px;
    padding: 10px 25px;
    position: relative;
}
.CreditCardForm .payment .form-group {
    float: left;
    margin-bottom: 15px;
}
.CreditCardForm .payment .form-control {
    line-height: 40px;
    height: auto;
    padding: 0 16px;
}
.CreditCardForm .owner {
    width: 60%;
    margin-right: 10px;
}
.CreditCardForm .CVV {
    width: 35%;
}

.CreditCardForm #CardNumberField {
    width: 100%;
}
.CreditCardForm #ExpirationDate {
    width: 49%;
}
.CreditCardForm #CreditCards {
    width: 30%;
    margin-top: 40px;
    text-align: right;
}
.CreditCardForm #pay-now {
    width: 100%;
    margin-top: 25px;
}
.CreditCardForm #CardAlert {
    width: 100%;
    margin-top: 25px;
}
.CreditCardForm .payment .btn {
    width: 100%;
    margin-top: 3px;
    font-size: 24px;
    background-color: #0088CC;
    color: white;
}
.CreditCardForm .payment select {
    padding: 10px;
    margin-right: 15px;
}
.transparent {
    opacity: 0.2;
}
@media(max-width: 650px) {
    .CreditCardForm .owner,
    .CreditCardForm .CVV,
    .CreditCardForm .Postcode,
    .CreditCardForm #ExpirationDate,
    .CreditCardForm #CreditCards {
        width: 100%;
    }
    .CreditCardForm #CreditCards {
        text-align: left;
    }
}