/* WC Pincode Auto-fill styles */

.wpaf-status {
	display: block;
	font-size: 13px;
	margin-top: 4px;
	line-height: 1.4;
}

.wpaf-status.wpaf-error {
	color: #d63638;
}

.wpaf-status.wpaf-spinner {
	color: #555d66;
	display: flex;
	align-items: center;
	gap: 6px;
}

.wpaf-spinner-icon {
	display: inline-block;
	width: 12px;
	height: 12px;
	border: 2px solid #cfcfcf;
	border-top-color: #555d66;
	border-radius: 50%;
	animation: wpaf-spin 0.7s linear infinite;
}

@keyframes wpaf-spin {
	to {
		transform: rotate(360deg);
	}
}

input.wpaf-field-error {
	border-color: #d63638 !important;
}

#place_order.wpaf-disabled,
#place_order[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}
