.qzr-stripe-payment-form .flex{
	display: flex;
}
.qzr-stripe-payment-form .flex.space {
    justify-content: space-between;
}
.qzr-stripe-payment-form .wrapper-payment-form {
	position: relative;
	max-width: 500px;
	margin: auto;
}

.qzr-stripe-payment-form .collapsible {
	padding: 10px;
	color: black;
	cursor: pointer;
	border: none;
	text-align: center;
	outline: none;
	background: #f8fbfd;
}

.qzr-stripe-payment-form #payment-form {
	padding: 20px 30px 30px;
	border-radius: 4px;
	border: 1px solid #e8e8fb;
	background-color: #f7fafc;
}

.qzr-stripe-payment-form .form-header {
	margin: 15px 0;
	color: #32325d;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-size: 13px;
	font-weight: 500;
}

.qzr-stripe-payment-form fieldset {
	flex: 1;
	margin-bottom: 20px;
	background: #fff;
	box-shadow: 0 1px 3px 0 rgba(50, 50, 93, 0.15),
		0 4px 6px 0 rgba(112, 157, 199, 0.15);
	border-radius: 4px;
	border: none;
}

.qzr-stripe-payment-form fieldset label {
	position: relative;
	display: flex;
	flex-direction: row;
	height: 42px;
	padding: 10px 0;
	align-items: center;
	justify-content: center;
	color: #525f7f;
	font-weight: 400;
}

.qzr-stripe-payment-form fieldset label:not(:last-child) {
	border-bottom: 1px solid #f0f5fa;
}

.qzr-stripe-payment-form fieldset label.state {
	display: inline-flex;
	width: 75%;
}

.qzr-stripe-payment-form fieldset:not(.with-state) label.zip {
	width: 100%;
}

.qzr-stripe-payment-form fieldset label span {
	min-width: 125px;
	padding: 0 15px;
	text-align: right;
}

.qzr-stripe-payment-form fieldset label input[type] {
	min-width: 125px;
	padding: 0 15px;
}

.qzr-stripe-payment-form fieldset .redirect label span {
	width: 100%;
	text-align: center;
}

.qzr-stripe-payment-form fieldset label {
	display: flex;
	width: inherit;
	padding: 0 15px;
}

.qzr-stripe-payment-form .field {
	flex: 1;
	padding: 0 15px;
	background: transparent;
	font-weight: 400;
	outline: none;
	cursor: text;
	border: none;
}

.qzr-stripe-payment-form .field::-webkit-input-placeholder {
	color: #aab7c4;
}

.qzr-stripe-payment-form .field::-moz-placeholder {
	color: #aab7c4;
}

.qzr-stripe-payment-form .field:-ms-input-placeholder {
	color: #aab7c4;
}

.qzr-stripe-payment-form .minimum-donation {
	text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
}
.qzr-stripe-payment-form .buyNowButton {
	display: block;
	background: #f8fbfd;
	color: black;
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	border: 0;
	font-weight: 700;
	width: 100%;
	height: 40px;
	outline: none;
	cursor: pointer;
	transition: all 0.15s ease;
}

.qzr-stripe-payment-form .buyNowButton:hover {
	transform: translateY(-1px);
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1),
		0 3px 6px 0 rgba(0, 0, 0, 0.08);
}

.qzr-stripe-payment-form .buyNowButton:active {
	background: #f8fbfd;
}

.qzr-stripe-payment-form #billing_country,
.qzr-stripe-payment-form #_customer_type {
	display: flex;
	align-items: center;
}

.qzr-stripe-payment-form #billing_country select,
.qzr-stripe-payment-form #_customer_type select {
	padding-left: 0px;
	flex: 1;
	border-style: none;
	outline: none;
	-webkit-appearance: menulist;
	-moz-appearance: menulist;
	appearance: menulist;
	outline: none;
	color: #313b3f;
	cursor: pointer;
	background: transparent;
}

/* Payment Methods */

.qzr-stripe-payment-form #payment-methods {
	margin: 0 0 20px;
	border-bottom: 2px solid #e8e8fb;
}

.qzr-stripe-payment-form #payment-methods li.visible {
	display: inline-block;
	margin: 0 20px 0 0;
	list-style: none;
}

.qzr-stripe-payment-form #payment-methods label {
	display: flex;
	flex: 1;
	cursor: pointer;
}

.qzr-stripe-payment-form #payment-methods input+label {
	position: relative;
	padding: 5px 0;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 13px;
}

.qzr-stripe-payment-form #payment-methods label::before {
	content: "";
	position: absolute;
	width: 100%;
	bottom: -2px;
	left: 0;
	border-bottom: 2px solid #6772e5;
	opacity: 0;
	transform: scaleX(0);
	transition: all 0.25s ease-in-out;
}

.qzr-stripe-payment-form #payment-methods label:hover {
	color: #6772e5;
	cursor: pointer;
}

.qzr-stripe-payment-form #payment-methods input {
	display: none;
}

.qzr-stripe-payment-form #payment-methods input:checked+label {
	color: #6772e5;
}

.qzr-stripe-payment-form #payment-methods label:hover::before,
.qzr-stripe-payment-form #payment-methods input:checked+label::before {
	opacity: 1;
	transform: scaleX(1);
}

.qzr-stripe-payment-form #payment-methods,
.qzr-stripe-payment-form .payment-info {
	display: none;
}

.qzr-stripe-payment-form .payment-info:not(.card) {
	margin-bottom: 15px;
}

.qzr-stripe-payment-form .payment-info.ideal {
	margin-bottom: 0;
}

.qzr-stripe-payment-form #payment-methods.visible,
.qzr-stripe-payment-form .payment-info.visible {
	display: block;
}

.qzr-stripe-payment-form .payment-info p.notice {
	font-size: 14px;
	color: #8898aa;
	text-align: left;
}

.qzr-stripe-payment-form #wechat-qrcode img {
	margin: 0 auto;
}

.qzr-stripe-payment-form .element-errors {
	visibility: hidden;
	margin-bottom: 5px;
	text-align: center;
	color: #e25950;
	opacity: 0;
	transform: translateY(10px);
	transition-property: opacity, transform;
	transition-duration: 0.35s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.qzr-stripe-payment-form .element-errors.visible {
	visibility: visible;
	opacity: 1;
	transform: none;
}

.qzr-stripe-payment-form #iban-errors {
	margin-top: -20px;
}

.qzr-stripe-payment-form .card-number {
	padding-left: 8px;
	white-space: nowrap;
	color: #0d2b3e;
	font-weight: 500;
}

.qzr-stripe-payment-form .card-number span {
	display: inline-block;
	width: 8px;
}

/* Order Confirmation */

.qzr-stripe-payment-form #confirmation {
	display: none;
	align-items: center;
	background: #f8fbfd;
	text-align: left;
	transition: visibility 0s, opacity 0.5s linear 0.5s;
}
.qzr-stripe-payment-form #confirmation .status{
	display: none;
	padding: 25px 50px;
    box-shadow: 0 1px 3px 0 rgba(50, 50, 93, 0.15);
    border-radius: 6px;
}
.qzr-stripe-payment-form #confirmation h1 {
	font-size: 30px;
	font-weight: 300;
	color: #6863d8;
	letter-spacing: 0.3px;
	margin-bottom: 10px;
}
.qzr-stripe-payment-form #confirmation .status p {
	margin-bottom: 10px;
}


.qzr-stripe-payment-form .left-button {
	float: left;
}

.qzr-stripe-payment-form .right-button {
	float: right;
}

.qzr-stripe-payment-form .generic-button {
	background: #666ee8;
	color: #fff;
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	border: 0;
	font-weight: 700;
	width: 49%;
	height: 40px;
	outline: none;
	cursor: pointer;
	transition: all 0.15s ease;
	display: inline-block;
}

.qzr-stripe-payment-form .payment-button {
	display: block;
	background: #666ee8;
	color: #fff;
	box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	border: 0;
	font-weight: 700;
	width: 100%;
	height: 40px;
	outline: none;
	cursor: pointer;
	transition: all 0.15s ease;
}
.qzr-stripe-payment-form .alt-link  {
	width: 49%;
	text-decoration: underline;
	cursor: pointer;
	white-space: nowrap;
}

.qzr-stripe-payment-form .sr-checkbox-label {
	position: relative;
	cursor: pointer;
}

.qzr-stripe-payment-form #mandate-acceptance {
	text-align: justify;
	font-size: 16px;
}

.qzr-stripe-payment-form .sr-payment-form .sr-form-row:nth-child(4) {
	animation-delay: 180ms;
}

.qzr-stripe-payment-form .sr-payment-form .sr-form-row {
	animation: 0.4s field-in;
	animation-fill-mode: both;
	animation-timing-function: ease;
	transform-origin: 50% 0%;
}

.qzr-stripe-payment-form .sr-form-row {
	margin: 16px 0;
}

.qzr-stripe-payment-form #save-card {
	margin-right: 10px;
}

.qzr-stripe-payment-form .hidden {
	display: none;
}

.qzr-stripe-payment-form .loader {
	background: transparent;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #6772e5;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: spin 2s linear infinite;
}

.qzr-donation-input {
	width: 100px;
	margin: 10px 0;
}

.donation_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.minimum_donation_error {
	color: red;
}
.minimum_donation_error_input {
	border: 1px solid red;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}




/* VIEWPORTS */


@media only screen and (max-width: 1023px) {
	.qzr-stripe-payment-form #main.checkout:not(.success):not(.error) {
		width: calc(100% - 320px);
	}
	.qzr-stripe-payment-form #summary {
		width: 320px;
		right: -320px;
	}
	.qzr-stripe-payment-form #main.checkout:not(.success):not(.error)+#summary {
		right: 0;
	}
	.qzr-stripe-payment-form #summary .line-item p {
		margin-top: 0;
	}
	.qzr-stripe-payment-form #summary .line-item .image {
		width: 40px;
		height: 40px;
	}
	.qzr-stripe-payment-form #summary .line-item .label {
		margin: 0;
	}
	.qzr-stripe-payment-form .flex{
		display: block;
	}
	.qzr-stripe-payment-form .generic-button{
		width: 100%;
	}
	.qzr-stripe-payment-form .alt-link{
		display: block;
		width: 100%;
		text-align: right;
	}
}

@media only screen and (max-width: 800px) {
	.qzr-stripe-payment-form #main.checkout:not(.success):not(.error) {
		width: 100%;
	}

	.qzr-stripe-payment-form #payment-request {
		padding-top: 0;
		min-height: 80px;
	}

	.qzr-stripe-payment-form #summary {
		display: none;
	}
}

@media only screen and (max-width: 500px) {
	.qzr-stripe-payment-form .header {
		height: 60px;
		background-size: 40px 40px;
	}

	.qzr-stripe-payment-form .header a.shop,
	.qzr-stripe-payment-form .header a.github {
		display: none;
	}

	.qzr-stripe-payment-form #payment-request {
		min-height: 0;
		padding-right: 15px;
		padding-left: 15px;
	}

	.qzr-stripe-payment-form #payment-form {
		margin: 0;
		padding: 0 15px;
		border-width: 2px 0 0 0;
		border-radius: 0;
	}

	.qzr-stripe-payment-form .payment-info span {
		display: none;
	}
}



