.woocommerce-billing-fields .form-row-first {
	float: left;
	width: 48%;
}

.woocommerce-billing-fields .form-row-last {
	float: right;
	width: 48%;
}

.woocommerce-MyAccount-orders td, .woocommerce-MyAccount-subscriptions td {
	font-size:15px;
	padding:15px 0;
}

.woocommerce-MyAccount-subscriptions .subscription-next-payment br {
	display:none;
}

.woocommerce-MyAccount-subscriptions .subscription-actions a, .aspc-userOrder-item-actions a {
	color:#57ca85;
}

.woocommerce-MyAccount-subscriptions .subscription-actions a:after {
	content:'|';
	padding-left:4px;
}

.woocommerce-MyAccount-subscriptions .subscription-actions a:last-child:after {
	content:normal;
}

.woocommerce-MyAccount-navigation {
	margin-top:15px;
	margin-bottom:15px;
}

.woocommerce-MyAccount-content .woocommerce-customer-details {
	margin-top:40px;
}

.woocommerce-SavedPaymentMethods {
	list-style-type: none;
}

#order_review .legal label {
	position: relative;
	padding-left: 25px;
	display: inline-block !important;
}

#order_review .woocommerce-invalid:after {
	padding-left: 25px;
}

input[type="checkbox"].woocommerce-form__input {
	display: none;
}

input[type="checkbox"].woocommerce-form__input + span::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.46);
	position: absolute;
	left: 0;
	top: 5px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="checkbox"].woocommerce-form__input + span::after {
	content: "\2713";
	display: block;
	width: 17px;
	height: 17px;
	color: #57ca85;
	text-align: center;
	left: 0;
	top: 8px;
	line-height: 1;
	font-size: 15px;
	font-weight: 700;
	opacity: 0;
	position: absolute;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="checkbox"]:checked.woocommerce-form__input + span::after {
	opacity: 1;
}

.woocommerce-checkout.processing:after {
	top: 50vh;
	left: 50vw;
	transform: translate(-50%, -100%);
	position: fixed;
	content: "";

	width: 48px;
	height: 48px;
	border: 5px solid #57ca85;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;

	z-index: 10000;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

ul.payment_methods {
	list-style: none;
	padding-inline-start: 0px;
}

ul.payment_methods li.wc_payment_method {
	margin: 20px 0;
}
ul.payment_methods * {
	list-style: none;
	padding-inline-start: 0px;
}

ul.payment_methods li.wc_payment_method .payment_box {
	margin-top: 8px;
}

ul.payment_methods li.wc_payment_method > .payment_box {
	margin-left: 25px
}

fieldset.wc-payment-form {
	margin-top: 10px;
	margin-left: 25px;
}

ul.payment_methods li.wc_payment_method li {
	margin: 5px 0;
}

#order_review #wc-stripe-cc-form .wc-stripe-elements-field{
	padding-left: 10px;
}

#order_review #payment .form-row input[type=submit].button.alt {
	text-transform: none !important;
	font-weight: 400 !important;
	font-family: 'Roboto' !important;
	border-radius: 2px !important;
	border: 0px;
	background: #57ca85!important;
	color: #fff!important;
	font-size: 16px!important;
	text-decoration: none!important;
	padding: 8px 15px;
	line-height: normal;
}

.woocommerce-address-fields .form-row {
	gap: 10px;
	align-items: center;
}

.woocommerce-address-fields .form-row label {
	flex-basis: 100px;
	margin-bottom: 0;
}

.woocommerce-address-fields .form-row .woocommerce-input-wrapper {
	flex: 1;
}

.woocommerce-address-fields .form-row .woocommerce-input-wrapper .select2-selection__clear {
	display: none;
}

.woocommerce-address-fields .form-row:not(:has(label))::before {
	content: '';
	display: block;
	width: 100px;
	flex-shrink: 0;
}

@media only screen and (min-width: 1001px) {
	.woocommerce-address-fields .form-row label {
		flex-basis: 150px;
	}

	.woocommerce-address-fields .form-row:not(:has(label))::before {
		width: 150px;
	}
}