// on cart page
.woocommerce-cart-form__contents {
	.coupon {
		display: flex;
		@include media-breakpoint-down (sm) {
			flex-direction: column;
			margin-bottom: .8em;
		}

		@include media-breakpoint-up (md) {
			float: left;
		}

		label {
			display: none;
		}

		input {
			@include media-breakpoint-down (sm) {
				width: 100%;
				margin-bottom: .8em;
			}

			@include media-breakpoint-up (md) {
				width: 220px;
				margin-right: 20px;
			}
		}
	}
}


// on checkout page
.woocommerce-form-coupon-toggle {
	.woocommerce-info {
		padding-left: 25px;
		z-index: 2;

		&:before {
			display: none;
		}

		.showcoupon {
			margin-left: auto;
			margin-right: 10px;
			--textDecoration: underline;
		}
	}
}

.checkout_coupon {
	margin-bottom: 50px;

	p {
		&:first-child {
			display: none;
		}
	}

	.button {
		--buttonMinHeight: var(--formInputHeight);
	}

	@include media-breakpoint-down (sm) {
		.button {
			width: 100%;
		}
	}
	
	@include media-breakpoint-up (md) {
		.form-row {
			width: 49%;
		}
	}
}