.lpcd-checkout-box {
	clear: both;
	margin: 24px 0;
	padding: 20px;
	border: 1px solid #e2e4e7;
	border-radius: 4px;
	background: #fff;
}

.lpcd-checkout-box h4 {
	margin: 0 0 14px;
}

.lpcd-code-entry {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.lpcd-code-entry input {
	min-width: 0;
	flex: 1 1 auto;
	margin: 0;
	text-transform: uppercase;
}

.lpcd-code-entry button,
.lpcd-applied-discount button {
	flex: 0 0 auto;
	cursor: pointer;
}

.lpcd-applied-discount {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}

.lpcd-applied-discount strong,
.lpcd-applied-discount span {
	display: block;
}

.lpcd-applied-discount span {
	margin-top: 3px;
	color: #50575e;
	font-size: 0.92em;
}

.lpcd-discount-status {
	min-height: 1.4em;
	margin: 10px 0 0;
	color: #2271b1;
	font-size: 0.92em;
}

.lpcd-discount-status:empty {
	display: none;
}

.lpcd-discount-status.is-error {
	color: #b32d2e;
}

.lpcd-checkout-box.is-loading {
	opacity: 0.7;
}

.lpcd-discount-row th,
.lpcd-discount-row td {
	color: #236b2f;
}

@media (max-width: 520px) {
	.lpcd-code-entry {
		flex-direction: column;
	}

	.lpcd-code-entry button {
		width: 100%;
	}
}

