#delivery_method_field .woocommerce-input-wrapper{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
#delivery_method_field input[type="radio"]{
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}
#delivery_method_field label{
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	width: 100%;
	min-height: 44px;
	padding: 12px 14px;
	border: 1px solid hsl(0, 0%, 87%);
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	user-select: none;
	text-align: left !important;
	line-height: 1.4;
}
#delivery_method_field input[type="radio"]:checked + label{
	border-color: hsl(0, 0%, 0%);
}
#delivery_method_field input[type="radio"]:focus + label,
#delivery_method_field label:focus,
#delivery_method_field label:focus-visible,
#delivery_method_field label:focus-within{
	outline: none !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
}
#delivery_method_field label::before{
	content: "";
	width: 18px; height: 18px;
	border: 2px solid hsl(0, 0%, 87%);
	border-radius: 50%;
	box-sizing: border-box;
	flex: 0 0 18px;
}
#delivery_method_field input[type="radio"]:checked + label::before{
	border-color: hsl(0, 0%, 0%);
	background: radial-gradient(hsl(0, 0%, 0%) 0 45%, transparent 50%);
}
#delivery_method_field label[for="delivery_method_pickup"]::after,
#delivery_method_field label[for="delivery_method_delivery"]::after{
	content: "";
	flex: 0 0 20px;
	width: 20px; height: 20px;
	margin-left: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
#delivery_method_field label[for="delivery_method_pickup"]::after{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3E%3Cpath d='M2 2h12l1 3H1l1-3zM1 5h14v2a2 2 0 0 1-2 2h-1v5H4V9H3a2 2 0 0 1-2-2V5zm9 4H6v4h4V9z'/%3E%3C/svg%3E");
}
#delivery_method_field label[for="delivery_method_delivery"]::after{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3E%3Cpath d='M0 3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v6h2.5L14 7h2v5h-1a2 2 0 1 1-4 0H6a2 2 0 1 1-4 0H1a1 1 0 0 1-1-1V3zm3 9a1 1 0 1 0 2 0 1 1 0 0 0-2 0zm8 0a1 1 0 1 0 2 0 1 1 0 0 0-2 0z'/%3E%3C/svg%3E");
}