/* CSS Document */
.creditCardPaymentBtn {
  /*
	button {
	  float: left;
	  display: block;
	  background: #666EE8;
	  color: white;
	  box-shadow: 0 7px 14px 0 rgba(49,49,93,0.10),
				  0 3px 6px 0 rgba(0,0,0,0.08);
	  border-radius: 4px;
	  border: 0;
	  margin-top: 20px;
	  font-size: 15px;
	  font-weight: 400;
	  width: 100%;
	  height: 40px;
	  line-height: 38px;
	  outline: none;
	}

	button:focus {
	  background: #555ABF;
	}

	button:active {
	  background: #43458B;
	}
*/
}

.creditCardPaymentBtn .ccContainer {
  background-color: #E9E9E9;
}

.creditCardPaymentBtn .ccContainer .ccHeader {
  margin: 1em 0 -1em;
  text-align: center;
}

.creditCardPaymentBtn form {
  width: 480px;
  margin: 20px auto;
}

.creditCardPaymentBtn .group {
  background: white;
  -webkit-box-shadow: 0 7px 14px 0 rgba(49, 49, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 7px 14px 0 rgba(49, 49, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  margin-bottom: 20px;
}

.creditCardPaymentBtn label {
  position: relative;
  color: #8898AA;
  font-weight: 300;
  height: 40px;
  line-height: 40px;
  margin-left: 20px;
  display: block;
}

.creditCardPaymentBtn .group label:not(:last-child) {
  border-bottom: 1px solid #F0F5FA;
}

.creditCardPaymentBtn label > span {
  width: 20%;
  text-align: right;
  float: left;
}

.creditCardPaymentBtn .field {
  background: transparent;
  font-weight: 300;
  border: 0;
  color: #31325F;
  outline: none;
  padding-right: 10px;
  padding-left: 10px;
  cursor: text;
  width: 70%;
  height: 40px;
  float: right;
}

.creditCardPaymentBtn .field::-webkit-input-placeholder {
  color: #CFD7E0;
}

.creditCardPaymentBtn .field::-moz-placeholder {
  color: #CFD7E0;
}

.creditCardPaymentBtn .field:-ms-input-placeholder {
  color: #CFD7E0;
}

.creditCardPaymentBtn .outcome {
  float: left;
  width: 100%;
  padding-top: 8px;
  min-height: 24px;
  text-align: center;
}

.creditCardPaymentBtn .success, .creditCardPaymentBtn .error {
  display: none;
  font-size: 13px;
}

.creditCardPaymentBtn .success.visible, .creditCardPaymentBtn .error.visible {
  display: inline;
}

.creditCardPaymentBtn .error {
  color: #E4584C;
}

.creditCardPaymentBtn .success {
  color: #666EE8;
}

.creditCardPaymentBtn .success .token {
  font-weight: 500;
  font-size: 13px;
}
/*# sourceMappingURL=stripe.css.map */