/**
* 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.
*/
#myBillingForm input, .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;
}

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

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

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

.billing-textbox {
	width:100%;
}
.billing .plans {
  background-color: white;
}

.billing .plans .plan {
	background-color: #e9f9ff24;
	border-radius: 10px;
	border: 1px;
	border-color: #eeeeee;
	border-style: solid;
  color: #726a6a;
  text-align: center;
  -moz-box-shadow: 0 0 5px #999;
  -webkit-box-shadow: 0 0 5px #999;
  box-shadow: 0 0 5px #999;
}

.billing .plans .plan.selected {
  
  border-color: #4ea64d;
  border: 2px solid #4ea64d;
  -moz-box-shadow: 0 0 20px #4ea64d;
  -webkit-box-shadow: 0 0 20px #4ea64d;
  box-shadow: 0 0 20px #4ea64d;

}

.billing .plans .choose-plan {
    font-size: 2em;
    font-weight: 500;
    padding: 35px 30px 20px;
    margin: 0 auto;
    text-align: center;
    color: #726a6a;
}

.billing .plans .plan-title {
    font-size: 1.5em;
    font-weight: 500;
    padding: 35px 30px 20px;
    margin: 0 auto 20px;
    text-align:  center;
    border-bottom: 2px solid #f6f9fc;
}

.billing .plans .plan-description {
    padding-bottom: 20px;
    text-align: center;
    font-weight: 400;
    color: dark-grey;
}
.billing .plans .plan-price-simple {
  color: #3a3636;
}

.billing .plans .plan-description-simple{
    text-align: center;
    font-weight: 200;
    color: dark-grey;
}

.billing .plans .plan-description-sale {
    text-align: center;
    font-weight: 200;
    color: dark-grey;
}

.billing .plans .plan-price-dollar-sale {
    color: #f35656;
    display: inline-block;
    font-size: 2.5em;
    line-height: 60px;
    letter-spacing: -.05em;
    vertical-align: middle;
    background: linear-gradient(to left top, transparent 47.75%, currentColor 49.5%, currentColor 50.5%, transparent 52.25%);
}
.billing .plans .plan-price-dollar-simple {
    display: inline-block;
    font-size: 3.5em;
    line-height: 60px;
    letter-spacing: -.05em;
    vertical-align: middle;
}

.billing .plans .plan-feature-list-simple {
	line-height: 35px;
    margin: 30px auto 30px;
    max-width: 390px;
    list-style: none;
    text-align: left;
    padding-left: 17px;
}

.billing .plans .plan-fine-print-divider {
    /*border-top: 2px solid #f6f9fc;*/
    padding: 10px 0px 0px;
    /*margin: auto auto 20px;*/
}


.billing .plans .plan-fine-print-simple {
    font-size: 1em;;
    text-align: center;
    font-weight: 200;
    color: grey;
}

.billing .plans .feature-listitem.coming-soon {
    text-decoration: none;
    padding-top: 30px;
    font-size: 14px;
    font-weight: 500;
}

.billing .plans .billing-label-info {
    font-weight: normal;
    text-align: left;
    width: 100%;
    padding-top: 5px;
}

.billing .plans .plan-selection {
  padding-top: 10px;
  padding-bottom: 10px;
}

.billing .plans .plan-selection button {
  text-align: center;
  width: 150px;
  margin: 0 auto;
}
