﻿/**
 * 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 #ccd0d2;
  border-radius: 4px;
  background-color: #ff6a00;

  /*box-shadow: 0 1px 3px 0 #e6ebf1;*/
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}
/*<!-- test stripe -->*/
.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

 .StripeElement {
            box-sizing: border-box;
            /*height: 40px;*/
            padding: 10px 12px;
            border: 1px solid #ccd0d2;
            border-radius: 4px;
            background-color: #ff6a00;
            /*box-shadow: 0 1px 3px 0 #e6ebf1;*/
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
            -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;
        }

        button.stripe-button-el {
        }

            button.stripe-button-el,
            button.stripe-button-el > span {
                background-color: #64a19d !important;
                background-image: none !important;
                width: 100px;
                height: 100px;
                line-height: 100px;
            }