
/* =============================================================================
   Stripe Donation Form stylesheet
   ========================================================================== */


body {
	background-color: transparent !important;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
    margin: 0;
	/* padding: 0; */
}

.wrapper {
	background: #fff;
	/* box-shadow: 0 0 15px #ccc; */
	/* margin: 100px auto; */
	/* padding: 30px; */
	text-align: left;
	width: 95%;
}

.wrapper h1 {
	font-size: 30px;
	font-weight: 300;
	margin: 20px 0 0 0;
	float: right;
}

.wrapper p {
	margin-bottom: 20px;
	text-align: left;
	
}

.donation-form {
	display: none;
}

.donation-form fieldset {
	border-radius: 10px;
	border: 1px solid black;
	display: inline-block;
	min-height: auto;
	padding: 10px 20px 20px;
	text-align: left;
	vertical-align: top;
    margin-left: 0;
    width: 230px;
}

.donation-form fieldset:first-child {
	/* margin-right: 20px; */
}

.donation-form fieldset legend {
	font-size: 18px;
	margin-left: -13px;
	padding: 0 15px;
	font-variant: small-caps;
}

.donation-form label {
	display: block;
	font-size: 15px;
	padding-left: 2px;
	vertical-align: top;
	font-variant: small-caps;
}

.donation-form .text {
	border: 2px solid #e8e8e8;
	box-sizing: border-box;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 17px;
	margin-bottom: 8px;
	outline: none;
	padding: 4px;
	resize: none;
	width: 170px;
	-webkit-transition: all .2s linear;
		 -moz-transition: all .2s linear;
			-ms-transition: all .2s linear;
			 -o-transition: all .2s linear;
					transition: all .2s linear;
}

.donation-form select.text {
	/* margin-top: 4px; */
	height: 32px;
}

.donation-form .text:focus {
	border: 2px solid #eee;
}

.donation-form .form-first-name,
.donation-form .form-last-name,
.donation-form .form-city,
.donation-form .form-state,
.donation-form .form-zip {
	display: inline-block;
}

.donation-form .form-first-name,
.donation-form .form-last-name {
	width: 150px;
}

.donation-form .form-last-name {
	margin-left: 0px;
}

.donation-form .form-city {
	width: 160px;
}

.donation-form .form-state {
	margin: 0px;
	width: 150px;
}

.donation-form .form-zip {
	width: 150px;
	margin-left: 0px;
}

.donation-form .form-amount {
	margin-bottom: 20px;
}

.donation-form .form-amount label {
	background-color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 2;
	/* width: 0px; */
	/*padding: 1px 4px; */
	-webkit-transition: all .2s linear;
		 -moz-transition: all .2s linear;
			-ms-transition: all .2s linear;
			 -o-transition: all .2s linear;
					transition: all .2s linear;
}

.donation-form .form-amount label.active {
	background-color: #fbf7ec;
	font-weight: 400;
}

.donation-form .form-amount .amount {
	margin: 0 1px 0 0;
    width: 60px;
    /* height: 33px; */
}
.donation-form .state {
	margin: 0 1px 0 0;
    width: 155px;
    font-size: 13px;
    /* height: 33px; */
}

.donation-form .form-currency,
.donation-form .form-amount {
	display: inline-block;
	width: auto;
}

.donation-form .form-cvc,
.donation-form .form-expiry {
	display: inline-block;
	vertical-align: top;
	width: 75px;
}

.donation-form .form-expiry {
	margin-left: 0px;
	width: 225px;
}

.donation-form .form-expiry select {
	width: 120px;
}

.donation-form .form-expiry select:last-child {
	margin-left: 10px;
	width: 90px;
}

.donation-form .form-submit {
	margin: 15px 0 0 0;
	text-align: center;
}
.donation-form .submit-button {
	background-color: #635bff;
	border-radius: 16.5px;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 15px;
	font-variant: small-caps;
	/* font-weight: 700; */
	padding: 8px 20px 10px 20px;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	-webkit-transition: all .2s linear;
		 -moz-transition: all .2s linear;
			-ms-transition: all .2s linear;
			 -o-transition: all .2s linear;
					transition: all .2s linear;
}

.donation-form .submit-button:hover {
	background-color: #0a2540;
}

.messages {
	margin: 2px;
	background-color: #efe1e1;
	border-radius: 4px;
	opacity: 0;
	border: 2px solid red;
}

.messages.active {
	opacity: 1;
	padding: 10px;
    text-align: center;
	color: red;
}

.messages p {
	color: red;
	/* padding: 10px 20px; */
	font-weight: 600;
}
.messageok {
	color: green;
    /* font-weight: 600; */
    padding: 8px 20px 10px 20px;
    border: 2px solid green;
    border-radius: 16.5px;
    font-size: 18px;
    font-variant: small-caps;
}